diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml
index 1fb4973a31..58c36117f5 100644
--- a/.github/workflows/github-pages.yml
+++ b/.github/workflows/github-pages.yml
@@ -23,7 +23,7 @@ jobs:
extended: true
- name: Setup Node
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
node-version: '16'
diff --git a/.github/workflows/markdown.links.config.json b/.github/workflows/markdown.links.config.json
index 87d2a93b12..9a04b0ae10 100644
--- a/.github/workflows/markdown.links.config.json
+++ b/.github/workflows/markdown.links.config.json
@@ -33,12 +33,15 @@
{
"pattern": "http://localstack_main:4566"
},
+ {
+ "pattern": "http://localstack-main:4566"
+ },
{
"pattern": "(.*)localhost.localstack.cloud(.*)"
},
{
"pattern": "https://localhost:4566/(.*)"
- }
+ },
{
"pattern": "https://localhost:45139/"
}
diff --git a/.github/workflows/preview-build.yml b/.github/workflows/preview-build.yml
index 4d1a61ad97..d7b5f5ee9e 100644
--- a/.github/workflows/preview-build.yml
+++ b/.github/workflows/preview-build.yml
@@ -22,7 +22,7 @@ jobs:
extended: true
- name: Setup Node
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
node-version: '16'
diff --git a/CODEOWNERS b/CODEOWNERS
index 907a0e8385..61ee233740 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -115,4 +115,4 @@
/content/en/user-guide/aws/transcribe/ @sannya-singal @ackdav
# xray
-/content/en/user-guide/aws/xray/ @joe4dev
\ No newline at end of file
+/content/en/user-guide/aws/xray/ @joe4dev
diff --git a/content/en/contributing/integration-tests.md b/content/en/contributing/integration-tests.md
index c6e58b3359..ea2a48bf94 100644
--- a/content/en/contributing/integration-tests.md
+++ b/content/en/contributing/integration-tests.md
@@ -147,16 +147,14 @@ region=eu-central-1
- Use the client `fixtures` and other fixtures for resource creation instead of methods from `aws_stack.py`
- While using the environment variable `TEST_TARGET=AWS_CLOUD`, the boto client will be automatically configured to target AWS instead of LocalStack.
- Configure your AWS profile/credentials:
- - When running the test, set the environment variable `AWS_PROFILE` to the profile name you chose in the previous step. Eexample: `AWS_PROFILE=ls-sandbox`
+ - When running the test, set the environment variable `AWS_PROFILE` to the profile name you chose in the previous step. Example: `AWS_PROFILE=ls-sandbox`
- Ensure that all resources are cleaned up even when the test fails and even when other fixture cleanup operations fail!
- Testing against AWS might require additional roles and policies.
Here is how a useful environment configuration for testing against AWS could look like:
```bash
-EDGE_BIND_HOST=0.0.0.0;
-DEBUG=1;
-DNS_ADDRESS=0;
+DEBUG=1; # enables debug logging
TEST_DISABLE_RETRIES_AND_TIMEOUTS=1;
TEST_TARGET=AWS_CLOUD;
AWS_DEFAULT_REGION=us-east-1;
diff --git a/content/en/getting-started/faq.md b/content/en/getting-started/faq.md
index da92784ce6..d13e11b0fb 100644
--- a/content/en/getting-started/faq.md
+++ b/content/en/getting-started/faq.md
@@ -83,10 +83,10 @@ ports:
…
```
-Furthermore, use either the default name `localstack_main` for the container, or alternatively configure the environment variable `MAIN_CONTAINER_NAME` to point to the correct name.
+Furthermore, use either the default name `localstack-main` for the container, or alternatively configure the environment variable `MAIN_CONTAINER_NAME` to point to the correct name.
```yaml
-container_name: localstack_main
+container_name: localstack-main
```
Ensure that `127.0.0.1` is configured as the target DNS server for the `bigdata` container:
@@ -117,23 +117,10 @@ sudo sysctl -w net.ipv4.ip_forward=1
### Why can't my other Docker containers reach LocalStack?
-Using LocalStack inside a Docker network with multiple other containers can lead to connectivity issues from/to those containers. For example, a container which attempts to deploy a stack and interact with the services directly, from within the same Docker network.
+Using LocalStack inside a Docker network with multiple other containers can lead to connectivity issues from/to those containers.
+For example, a container which attempts to deploy a stack and interact with the services directly, from within the same Docker network.
-To resolve this, set `HOSTNAME_EXTERNAL` for correct response values for endpoints. Use network aliases to ensure resolution of `localhost.localstack.cloud` to the correct container:
-
-```yaml
-...
- networks:
- default:
- aliases:
- - localhost.localstack.cloud
- sdkstack:
- image: ubuntu
- command: ["bash", "-c", "apt update && apt install -y curl && sleep 5 && curl -v http://localhost.localstack.cloud:4566/_localstack/health"]
-...
-```
-
-Note the missing `network: bridge` here! The default bridge network does not support DNS name resolution.
+Refer to our [network troubleshooting guide]({{< ref "references/network-troubleshooting" >}}) covering several scenarios.
### How to resolve the pull rate limit issue for LocalStack's Docker image?
diff --git a/content/en/getting-started/installation.md b/content/en/getting-started/installation.md
index aca95eb95d..c8e766b77c 100644
--- a/content/en/getting-started/installation.md
+++ b/content/en/getting-started/installation.md
@@ -244,7 +244,7 @@ version: "3.8"
services:
localstack:
- container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
+ container_name: "${LOCALSTACK_DOCKER_NAME-localstack-main}"
image: localstack/localstack
ports:
- "127.0.0.1:4566:4566" # LocalStack Gateway
@@ -261,7 +261,7 @@ version: "3.8"
services:
localstack:
- container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
+ container_name: "${LOCALSTACK_DOCKER_NAME-localstack-main}"
image: localstack/localstack-pro # required for Pro
ports:
- "127.0.0.1:4566:4566" # LocalStack Gateway
diff --git a/content/en/overview/_index.html b/content/en/overview/_index.html
index 6ab2c8a862..66532ec498 100644
--- a/content/en/overview/_index.html
+++ b/content/en/overview/_index.html
@@ -15,6 +15,22 @@
+
+
LocalStack v3!
+
+ We are excited to announce that we are once more preparing a major release of LocalStack .
+ This release will introduce a lot of great new features, but will also clean up some legacy code and configurations.
+ This Discuss Post is meant to give you a heads-up on the upcoming changes such that you can already prepare your LocalStack setup accordingly.
+
+
+ Thursday November 9., 2023 : The release candidate for v3.0.0 will be released
+ into the latest Docker image tags. This will put into effect all breaking
+ changes that we are introducing for v3, and will affect your pipeline if you
+ are using latest.
+ Thursday November 16., 2023 : The v3.0.0 tagged release images will be published.
+
+
+
diff --git a/content/en/references/configuration.md b/content/en/references/configuration.md
index eda8e4116a..f7556dd79d 100644
--- a/content/en/references/configuration.md
+++ b/content/en/references/configuration.md
@@ -25,15 +25,17 @@ Options that affect the core LocalStack system.
| - | - | - |
| `DEBUG` | `0` (default) \|`1`| Flag to increase log level and print more verbose logs (useful for troubleshooting issues)|
| `IMAGE_NAME`| `localstack/localstack` (default), `localstack/localstack:0.11.0` | Specific name and tag of LocalStack Docker image to use.|
-| `GATEWAY_LISTEN`| `127.0.0.1:4566` (default in host mode), `0.0.0.0:4566` (default in Docker mode) | Configures the bind addresses of LocalStack. It has the form `
:(,:)*`. |
+| `GATEWAY_LISTEN`| `0.0.0.0:4566` (default in Docker mode) `127.0.0.1:4566` (default in host mode) | Configures the bind addresses of LocalStack. It has the form `:(,:)*`. LocalStack Pro adds port `443`. |
| `LOCALSTACK_HOST`| `localhost.localstack.cloud:4566` (default) | This is interpolated into URLs and addresses that are returned by LocalStack. It has the form `:`. |
+| `USE_SSL` | `0` (default) | Whether to return URLs using HTTP (`0`) or HTTPS (`1`). |
| `LEGACY_DIRECTORIES` | `0` (default) | Use legacy method of managing internal filesystem layout. See [Filesystem Layout]({{< ref "filesystem" >}}). |
| `PERSISTENCE` | `0` (default) | Enable persistence. See [Persistence Mechanism]({{< ref "persistence-mechanism" >}}) and [Filesystem Layout]({{< ref "filesystem" >}}). |
-| `MAIN_CONTAINER_NAME` | `localstack_main` (default) | Specify the main docker container name |
+| `MAIN_CONTAINER_NAME` | `localstack-main` (default) | Specify the main docker container name |
| `LS_LOG` | `trace`, `trace-internal`, `debug`, `info`, `warn`, `error`, `warning`| Specify the log level. Currently overrides the `DEBUG` configuration. `trace` for detailed request/response, `trace-internal` for internal calls, too. |
| `EXTERNAL_SERVICE_PORTS_START` | `4510` (default) | Start of the [External Service Port Range]({{< ref "external-ports" >}}) (inclusive). |
| `EXTERNAL_SERVICE_PORTS_END` | `4560` (default) | End of the [External Service Port Range]({{< ref "external-ports" >}}) (exclusive). |
-| `EAGER_SERVICE_LOADING` | `0` (default) | Boolean that toggles lazy loading of services. If eager loading is enabled, services are started at LocalStack startup rather than their first use. Eager loading significantly increases LocalStack startup time. |
+| `EAGER_SERVICE_LOADING` | `0` (default) \|`1` | Boolean that toggles lazy loading of services. If eager loading is enabled, services are started at LocalStack startup rather than their first use. Be aware that eager loading increases the LocalStack startup time. |
+| `SERVICES`| `s3,sqs` | A comma-delimited string of services. Check the [internal health endpoint]({{< ref "internal-endpoints/#localstack-endpoints" >}}) `/_localstack/health` for valid service names. If `SERVICES` is set LocalStack will only load the listed services. All other services will be disabled and cannot be used. |
| `ALLOW_NONSTANDARD_REGIONS` | `0` (default) | Allows the use of non-standard AWS regions. By default, LocalStack only accepts [standard AWS regions](https://docs.aws.amazon.com/general/latest/gr/rande.html). |
| `PARITY_AWS_ACCESS_KEY_ID` | `0` (default) | Enables the use production-like access key IDs. By default, LocalStack issues keys with `LSIA...` and `LKIA...` prefix, and will reject keys that start with `ASIA...` or `AKIA...`. |
@@ -120,6 +122,12 @@ This section covers configuration options that are specific to certain AWS servi
| `EKS_LOADBALANCER_PORT` | `8081` (default) | Local port on which the Kubernetes load balancer is exposed on the host. |
| `EKS_K3S_IMAGE_TAG` | `v1.22.6-k3s1` (default) | Custom tag of the `k8s/rancher` image used to spin up Kubernetes clusters locally. |
+### ElastiCache
+
+| Variable | Example Values | Description |
+| - | - | - |
+| `PROVIDER_OVERRIDE_ELASTICACHE` | `legacy` | Use the legacy ElastiCache provider. |
+
### Elasticsearch
{{< alert title="Note">}}
@@ -146,7 +154,7 @@ See [here](#opensearch).
### Lambda
{{< alert title="Note" >}}
-New [Lambda]({{< ref "user-guide/aws/lambda" >}}) implementation active since LocalStack 2.0 (Docker `latest` since 2023-03-23).
+The legacy [Lambda]({{< ref "user-guide/aws/lambda" >}}) implementation has been removed since LocalStack 3.0 (Docker `latest` since 2023-11-09).
Please consult the [migration guide]({{< ref "user-guide/aws/lambda#migrating-to-lambda-v2" >}}) for more information.
{{}}
@@ -168,38 +176,6 @@ Please consult the [migration guide]({{< ref "user-guide/aws/lambda#migrating-to
| `LAMBDA_RUNTIME_IMAGE_MAPPING` | [base images for Lambda](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-images.html) (default) | Customize the Docker image of Lambda runtimes, either by: a) pattern with `` placeholder, e.g. `custom-repo/lambda-:2022` b) json dict mapping the `` to an image, e.g. `{"python3.9": "custom-repo/lambda-py:thon3.9"}` |
| `LAMBDA_SYNCHRONOUS_CREATE` | `0` (default) | Set to `1` to create lambda functions synchronously (not recommended). |
| `LAMBDA_TRUNCATE_STDOUT` | `2000` (default) | Allows increasing the default char limit for truncation of lambda log lines when printed in the console. This does not affect the logs processing in CloudWatch. |
-| `PROVIDER_OVERRIDE_LAMBDA` | `v2` (default) | Currently supported implementation of our [local Lambda service]({{< ref "user-guide/aws/lambda" >}}) active since LocalStack 2.0 (Docker `latest` since 2023-03-23). |
-| | `legacy` (**deprecated**) | Use the old lambda provider (not recommended). **See [Lambda providers]({{< ref "user-guide/aws/lambda" >}}).** |
-
-### Lambda (Legacy)
-
-The old lambda provider is temporarily available in Localstack v2 using `PROVIDER_OVERRIDE_LAMBDA=legacy` but we highly recommend [migrating]({{< ref "user-guide/aws/lambda" >}}) to the new Lambda provider.
-
-| Variable| Example Values | Description |
-| - | - | - |
-| `LAMBDA_EXECUTOR` | | Method to use for executing Lambda functions. For `docker` and `docker-reuse`, if LocalStack itself is started inside Docker, then the `docker` command needs to be available inside the container (usually requires to run the container in privileged mode). More information in Lambda Executor Modes. **Removed in new provider. Mount the Docker socket or see [migration guide]({{< ref "user-guide/aws/lambda" >}}).** |
-| | `docker` (default) | Run each function invocation in a separate Docker container. |
-| | `local` (fallback) | Run Lambda functions in a temporary directory on the local machine. |
-| | `docker-reuse` | Create one Docker container per function and reuse it across invocations. |
-| `LAMBDA_STAY_OPEN_MODE` | `1` (default) | Usage of the stay-open mode of Lambda containers. Only applicable if `LAMBDA_EXECUTOR=docker-reuse`. Set to `0` if you want to use [Hot Reloading]({{< ref "hot-reloading" >}}). **Removed in new provider because stay-open mode is the default behavior. `LAMBDA_KEEPALIVE_MS` can be used to configure how long containers should be kept running in-between invocations.** |
-| `LAMBDA_REMOTE_DOCKER` | | determines whether Lambda code is copied or mounted into containers. **Removed in new provider because zip file copying is used by default and hot reloading automatically configures mounting.** |
-| | `true` (default) | your Lambda function definitions will be passed to the container by copying the zip file (potentially slower). It allows for remote execution, where the host and the client are not on the same machine.|
-| | `false` | your Lambda function definitions will be passed to the container by mounting a volume (potentially faster). This requires to have the Docker client and the Docker host on the same machine. |
-| `LAMBDA_TRUNCATE_STDOUT` | `2000` (default) | Allows increasing the default char value for truncation of lambda logs. This does not affect the logs processing in CloudWatch. **Still supported in new provider.** |
-| `BUCKET_MARKER_LOCAL` | `__local__` (default) | Optional bucket name for running lambdas locally. **Still supported in new provider but default changed to `hot-reload`.** |
-| `LAMBDA_CODE_EXTRACT_TIME` | `25` (default) | Time in seconds to wait at max while extracting Lambda code. By default, it is 25 seconds for limiting the execution time to avoid client/network timeout issues. **Removed in new provider because function creation happens asynchronously.**|
-| `LAMBDA_DOCKER_NETWORK` | | Optional Docker network for the container running your lambda function. This configuration value also applies to ECS containers. Needs to be set to the network the LocalStack container is connected to. **Still supported in new provider.** |
-| `LAMBDA_DOCKER_DNS` | | Optional DNS server for the container running your lambda function. **Supported in new provider since LocalStack 2.2.** |
-| `LAMBDA_DOCKER_FLAGS` | `-e KEY=VALUE`, `-v host:container`, `-p host:container`, `--add-host domain:ip` | Additional flags passed to Docker `run`\|`create` commands. Supports environment variables, ports, volume mounts, extra hosts, networks, labels, user, platform and privileged mode. **Still supported in new provider.** |
-| `LAMBDA_CONTAINER_REGISTRY` | `lambci/lambda` (default) | An alternative docker registry from where to pull lambda execution containers. **Replaced by `LAMBDA_RUNTIME_IMAGE_MAPPING` in new provider.** |
-| `LAMBDA_REMOVE_CONTAINERS` | `1` (default) | Whether to remove any Lambda Docker containers. Only applicable when using docker-reuse executor. **Still supported in new provider.** |
-| `LAMBDA_FALLBACK_URL` | | Fallback URL to use when a non-existing Lambda is invoked. Either records invocations in DynamoDB (value `dynamodb://`) or forwards invocations as a POST request (value `http(s)://...`). **Removed in new provider.** |
-| `LAMBDA_FORWARD_URL` | | URL used to forward all Lambda invocations (useful to run Lambdas via an external service). **Removed in new provider.** |
-| `LAMBDA_JAVA_OPTS` | `-Xmx512M` | Allow passing custom JVM options to Java Lambdas executed in Docker. Use `_debug_port_` placeholder to configure the debug port, e.g., `-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=_debug_port_`. **Currently not supported in new provider but possible via custom entrypoint.** |
-| `HOSTNAME_FROM_LAMBDA` | `localstack` | Endpoint host under which APIs are accessible from Lambda containers (optional). This can be useful in docker-compose stacks to use the local container hostname if neither IP address nor container name of the main container are available (e.g., in CI). Often used in combination with `LAMBDA_DOCKER_NETWORK`. **Removed in new provider.** |
-| `LAMBDA_XRAY_INIT` | `1` / `0` (default) | Whether to fully initialize XRay daemon for Lambda containers (may increase Lambda startup times). **Removed in new provider because the X-Ray daemon is always initialized.** |
-| `SYNCHRONOUS_KINESIS_EVENTS` | `1` (default) / `0` | Whether or not to handle Kinesis Lambda event sources as synchronous invocations. **Removed in new provider.** |
-| `PROVIDER_OVERRIDE_LAMBDA` | `asf` (optional) | Opt-in to use the new lambda provider beta. See [Lambda providers]({{< ref "user-guide/aws/lambda" >}}). **Active by default in the new provider.** |
### MWAA
@@ -219,9 +195,9 @@ The old lambda provider is temporarily available in Localstack v2 using `PR
| Variable | Example Values | Description |
| - | - | - |
-| `RDS_CLUSTER_ENDPOINT_HOST_ONLY` | `0` (default) / `1` | Whether the cluster endpoint returns the host only (which is AWS parity). If set to `0` it will return `:`. |
+| `RDS_CLUSTER_ENDPOINT_HOST_ONLY` | `1` (default) / `0` | Whether the cluster endpoint returns the host only (which is AWS parity). If set to `0` it will return `:`. |
| `RDS_PG_CUSTOM_VERSIONS` | `0` / `1` (default) | Whether to install and use custom Postgres versions for RDS (or alternatively, use default version 11). |
-| `RDS_MYSQL_DOCKER` | `0` (default) / `1` | Whether to enable MySQL engines (instead of MariaDB). Will run the MySQL cluster/instances in a new docker container. |
+| `RDS_MYSQL_DOCKER` | `1` (default) / `0` | Whether to disable MySQL engines (and use MariaDB instead). MySQL engine for cluster/instances will start in a new docker container. If you have troubles running MySQL in docker, you can disable the feature. |
| `MYSQL_IMAGE` | `mysql:8.0` | Defines a specific MySQL image that should be used when spinning up the MySQL engine. Only available if `RDS_MYSQL_DOCKER` is enabled. |
| `MSSQL_IMAGE` | `mcr.microsoft.com/mssql/server:2022-latest` | Defines a specific image that should be used when spinning up a SQL server engine. |
@@ -229,17 +205,15 @@ The old lambda provider is temporarily available in Localstack v2 using `PR
| Variable | Example Values | Description |
| - | - | - |
-| `S3_DIR` | | Configure a global parent directory that contains all buckets as sub-directories (`S3_DIR=/path/to/root`) or an individual directory that will get mounted as special bucket names (`S3_DIR=/path/to/root/bucket1:bucket1`). Only available for Localstack Pro. |
| `S3_SKIP_SIGNATURE_VALIDATION`| `0` / `1` (default) | Used to toggle validation of S3 pre-signed URL request signature. Set to `0` to validate. |
| `S3_SKIP_KMS_KEY_VALIDATION` | `0` / `1` (default) | Used to toggle validation of provided KMS key in S3 operations. |
-| `PROVIDER_OVERRIDE_S3` | `v3` | Activate the new LocalStack-native S3 provider. |
+| `PROVIDER_OVERRIDE_S3` | `legacy_v2` / `v3` (default) | The new LocalStack-native S3 provider (v3) is active by default since LocalStack 3.0. |
### StepFunctions
| Variable | Example Values | Description |
| - | - | - |
-| `STEPFUNCTIONS_LAMBDA_ENDPOINT` | `default` | URL to use as the Lambda service endpoint in Step Functions. By default this is the LocalStack Lambda endpoint. Use default to select the original AWS Lambda endpoint. |
-| `PROVIDER_OVERRIDE_STEPFUNCTIONS` | `v2` | Activate the new LocalStack-native StepFunctions provider. |
+| `PROVIDER_OVERRIDE_STEPFUNCTIONS` | `legacy` / `v2` (default) | The new LocalStack-native StepFunctions provider (v2) is active by default since LocalStack 3.0. |
### SQS
@@ -247,7 +221,7 @@ The old lambda provider is temporarily available in Localstack v2 using `PR
| - | - | - |
| `SQS_DELAY_PURGE_RETRY` | `0` (default) | Used to toggle PurgeQueueInProgress errors when making more than one PurgeQueue call within 60 seconds. |
| `SQS_DELAY_RECENTLY_DELETED` | `0` (default) | Used to toggle QueueDeletedRecently errors when re-creating a queue within 60 seconds of deleting it. |
-| `SQS_ENDPOINT_STRATEGY`| `domain`\|`path`\|`off` | Configures the format of Queue URLs (see [SQS Queue URLs]({{< ref "sqs#queue-urls" >}})) |
+| `SQS_ENDPOINT_STRATEGY`| `standard` (default) \| `domain` \| `path` \| `off` | Configures the format of Queue URLs (see [SQS Queue URLs]({{< ref "sqs#queue-urls" >}})) |
| `SQS_DISABLE_CLOUDWATCH_METRICS` | `0` (default) | Disables the CloudWatch Metrics for SQS when set to `1` |
| `SQS_CLOUDWATCH_METRICS_REPORT_INTERVAL` | `60` (default) | Configures the report interval (in seconds) for `Approximate*` metrics that are sent to CloudWatch periodically. Sending will be disabled if `SQS_DISABLE_CLOUDWATCH_METRICS=1` |
@@ -340,28 +314,28 @@ These configurations are deprecated and will be removed in the upcoming major ve
| Variable | Example Values | Description |
| - | - | - |
-| `USE_SSL` | `false` (default) | **Deprecated.** Whether to use https://... URLs with SSL encryption. Deprecated as of version 0.11.3. Each service endpoint now supports multiplexing HTTP/HTTPS traffic over the same port. |
-| `DEFAULT_REGION` | | **Deprecated.** AWS region to use when talking to the API (needs to be activated via `USE_SINGLE_REGION=1`). LocalStack now has full multi-region support. |
-| `USE_SINGLE_REGION` | | **Deprecated.** Whether to use the legacy single-region mode, defined via `DEFAULT_REGION`. |
-| `DATA_DIR`| blank (disabled/default), `/tmp/localstack/data` | **Deprecated.** Local directory for saving persistent data. This option is deprecated since LocalStack v1 and will be ignored. Please use `PERSISTENCE`. Using this option will set `PERSISTENCE=1` as a deprecation path. The state will be stored in your LocalStack volume in the `state/` directory |
-| `HOST_TMP_FOLDER` | `/some/path` | **Deprecated.** Temporary folder on the host that gets mounted as `$TMPDIR/localstack` into the LocalStack container. Required only for Lambda volume mounts when using `LAMBDA_REMOTE_DOCKER=false.` |
-| `TMPDIR`| `/tmp` (default)| **Deprecated.** Temporary folder on the host running the CLI and inside the LocalStack container .|
-| `_BACKEND` | | **Deprecated.** Custom endpoint URL to use for a specific service, where `` is the uppercase service name.
-| `_PORT_EXTERNAL` | `4567` | **Deprecated.** Port number to expose a specific service externally . `SQS_PORT_EXTERNAL`, e.g. , is used when returning queue URLs from the SQS service to the client. |
-| `LOCALSTACK_HOSTNAME` | `http://${LOCALSTACK_HOSTNAME}:4566` | **Deprecated.** Name of the host where LocalStack services are available. Use this hostname as endpoint in order to access the services from within your Lambda functions (e.g., to store an item to DynamoDB or S3 from a Lambda). This option is read-only. Use `LOCALSTACK_HOST` instead. |
-| `HOSTNAME_EXTERNAL` | `localhost` (default) | **Deprecated.** Name of the host to expose the services externally. This host is used, e.g., when returning queue URLs from the SQS service to the client. Use `LOCALSTACK_HOST` instead. |
-| `EDGE_BIND_HOST` | `127.0.0.1` (default), `0.0.0.0` (docker)| **Deprecated.** Address the edge service binds to. Use `GATEWAY_LISTEN` instead. |
-| `EDGE_PORT` | `4566` (default)| **Deprecated.** Port number for the edge service, the main entry point for all API invocations. |
-| `EDGE_FORWARD_URL` | | **Deprecated.** Optional target URL to forward all edge requests to (e.g., for distributed deployments)
-| `INIT_SCRIPTS_PATH` | `/some/path` | **Deprecated.** Before 1.0, this was used to configure the path to the initializing files with extensions `.sh` that were found in `/docker-entrypoint-initaws.d`. This has been replaced by the [init-hook system](https://docs.localstack.cloud/references/init-hooks/). |
-| `KMS_PROVIDER` | `moto` (default), `local-kms` | **Deprecated.** `local-kms` provider is deprecated and marked for removal. |
-| `ES_CUSTOM_BACKEND` | `http://elasticsearch:9200` | **Deprecated.** Use [`OPENSEARCH_CUSTOM_BACKEND`](#opensearch) instead. URL to a custom elasticsearch backend cluster. If this is set to a valid URL, then localstack will not create elasticsearch cluster instances, but instead forward all domains to the given backend (see [Custom Elasticsearch Backends]({{< ref "elasticsearch#custom-elasticsearch-backends" >}})). |
-| `ES_MULTI_CLUSTER` | `0`\|`1` | **Deprecated.** Use [`OPENSEARCH_MULTI_CLUSTER`](#opensearch) instead. When activated, LocalStack will spawn one Elasticsearch cluster per domain. Otherwise all domains will share a single cluster instance. This is ignored if `ES_CUSTOM_BACKEND` is set. |
-| `ES_ENDPOINT_STRATEGY` | `path`\|`domain`\|`port` (formerly `off`) | **Deprecated.** Use [`OPENSEARCH_ENDPOINT_STRATEGY`](#opensearch) instead. Governs how domain endpoints are created to access a cluster (see [Elasticsearch Endpoints]({{< ref "elasticsearch#endpoints" >}})) |
-| `SKIP_INFRA_DOWNLOADS` | | **Deprecated.** Whether to skip downloading additional infrastructure components (e.g., specific Elasticsearch versions)
-| `MOCK_UNIMPLEMENTED` | | **Deprecated.** Whether to return mocked success responses (instead of 501 errors) for currently unimplemented API methods
-| `ACTIVATE_NEW_POD_CLIENT` | `0`\|`1` (default) | **Deprecated.** Whether to use the new Cloud Pods client leveraging LocalStack container's APIs. |
| `BIGDATA_MONO_CONTAINER` | `0`\|`1` (default) | **Deprecated.** Whether to spin Big Data services inside the LocalStack main container. Glue jobs breaks when using `BIGDATA_MONO_CONTAINER=0`. |
+| `SKIP_INFRA_DOWNLOADS` | | **Deprecated.** Whether to skip downloading additional infrastructure components (e.g., specific Elasticsearch versions) |
+| `STEPFUNCTIONS_LAMBDA_ENDPOINT` | `default` | **Deprecated.** This is only supported for the `legacy` provider. URL to use as the Lambda service endpoint in Step Functions. By default this is the LocalStack Lambda endpoint. Use default to select the original AWS Lambda endpoint. |
+| `S3_DIR` | | **Deprecated.** This is only supported for the `legacy_v2` provider. Configure a global parent directory that contains all buckets as sub-directories (`S3_DIR=/path/to/root`) or an individual directory that will get mounted as special bucket names (`S3_DIR=/path/to/root/bucket1:bucket1`). Only available for Localstack Pro.
+
+## Legacy
+
+These configurations have already been removed and **won't have any effect** on newer versions of LocalStack.
+**Please remove them from your configuration.**
+
+| Variable | Removed in | Description |
+| - | - | - |
+| `DATA_DIR`| 2.0.0 | **Legacy.** Local directory for saving persistent data. Use `PERSISTENCE` instead. |
+| `HOST_TMP_FOLDER` | 2.0.0 | **Legacy.** Temporary folder on the host that gets mounted as `$TMPDIR/localstack` into the LocalStack container. Required only for Lambda volume mounts when using `LAMBDA_REMOTE_DOCKER=false.` |
+| `INIT_SCRIPTS_PATH` | 2.0.0 | **Legacy.** Before 1.0, this was used to configure the path to the initializing files with extensions `.sh` that were found in `/docker-entrypoint-initaws.d`. This has been replaced by the [init-hook system](https://docs.localstack.cloud/references/init-hooks/). |
+| `TMPDIR`| 2.0.0 | **Legacy.** Temporary folder on the host running the CLI and inside the LocalStack container .|
+| `_BACKEND` | 3.0.0 | **Legacy.** Custom endpoint URL to use for a specific service, where `` is the uppercase service name.
+| `ACTIVATE_NEW_POD_CLIENT` | 3.0.0 | **Legacy.** Whether to use the new Cloud Pods client leveraging LocalStack container's APIs. |
+| `ES_CUSTOM_BACKEND` | 3.0.0 | **Legacy.** Use [`OPENSEARCH_CUSTOM_BACKEND`](#opensearch) instead. URL to a custom elasticsearch backend cluster. If this is set to a valid URL, then localstack will not create elasticsearch cluster instances, but instead forward all domains to the given backend (see [Custom Elasticsearch Backends]({{< ref "elasticsearch#custom-elasticsearch-backends" >}})). |
+| `ES_ENDPOINT_STRATEGY` | 3.0.0 | **Legacy.** Use [`OPENSEARCH_ENDPOINT_STRATEGY`](#opensearch) instead. Governs how domain endpoints are created to access a cluster (see [Elasticsearch Endpoints]({{< ref "elasticsearch#endpoints" >}})) |
+| `ES_MULTI_CLUSTER` | 3.0.0 | **Legacy.** Use [`OPENSEARCH_MULTI_CLUSTER`](#opensearch) instead. When activated, LocalStack will spawn one Elasticsearch cluster per domain. Otherwise all domains will share a single cluster instance. This is ignored if `ES_CUSTOM_BACKEND` is set. |
+| `MOCK_UNIMPLEMENTED` | 3.0.0 | **Legacy.** Whether to return mocked success responses (instead of 501 errors) for currently unimplemented API methods
## Profiles
diff --git a/content/en/references/coverage/coverage_appconfigdata/index.md b/content/en/references/coverage/coverage_appconfigdata/index.md
new file mode 100644
index 0000000000..5884b2ca36
--- /dev/null
+++ b/content/en/references/coverage/coverage_appconfigdata/index.md
@@ -0,0 +1,13 @@
+---
+title: "appconfigdata"
+linkTitle: "appconfigdata"
+description: >
+ Implementation details for API appconfigdata
+hide_readingtime: true
+---
+
+## Coverage Overview
+{{< localstack_coverage_table service="appconfigdata" >}}
+
+## Testing Details
+{{< localstack_coverage_details service="appconfigdata" >}}
diff --git a/content/en/references/credentials.md b/content/en/references/credentials.md
index 28201ff101..b83818b1de 100644
--- a/content/en/references/credentials.md
+++ b/content/en/references/credentials.md
@@ -5,7 +5,7 @@ categories: ["LocalStack"]
tags: ["access-key-id", "secret-access-key", "account-id"]
weight: 50
description: >
- Credentials for accessing LocalStack services
+ Credentials for accessing LocalStack AWS API
---
Like AWS, LocalStack requires access key IDs to be set in all operations.
@@ -14,12 +14,12 @@ Values of secret access keys are currently ignored by LocalStack.
Access key IDs can be one of following patterns:
-### Accounts IDs
+## Accounts IDs
You can specify a 12-digit number which will be taken by LocalStack as the account ID.
For example, `112233445566`.
-### Structured access key ID
+## Structured access key ID
You can specify a structured key like `LSIAQAAAAAAVNCBMPNSG` (which translates to account ID `000000000042`).
This must be at least 20 characters in length and must be decodable to an account ID.
@@ -34,7 +34,9 @@ Disabling the access key safeguard and using production access key IDs may cause
We strongly recommend leaving it on.
{{< /alert >}}
-### Alphanumeric string
+Please refer to the [IAM docs]({{< ref "user-guide/aws/iam" >}}) to learn how to create access keys in LocalStack.
+
+## Alphanumeric string
You can also specify an arbitrary alphanumeric access key ID like `test` or `foobar123`.
-In all such cases, the account ID will be evalutated to `000000000000`.
+In all such cases, the account ID will be evaluated to `000000000000`.
diff --git a/content/en/references/cross-account-access.md b/content/en/references/cross-account-access.md
index d077a8e6ed..81eee368ea 100644
--- a/content/en/references/cross-account-access.md
+++ b/content/en/references/cross-account-access.md
@@ -17,9 +17,48 @@ Cross-account support in LocalStack is being actively developed.
Please report any issues on our [GitHub issue tracker](https://github.com/localstack/localstack/issues/new/choose).
{{< /alert >}}
+Cross-account/cross-region access happens when a client attempts to access a resource in another account or region than what it is configured with:
+
+{{< command >}}
+#
+# Create a queue in one account and region
+#
+
+$ AWS_ACCESS_KEY_ID=111111111111 awslocal sqs create-queue \
+ --queue-name my-queue \
+ --region ap-south-1
+{
+ "QueueUrl": "http://sqs.ap-south-1.localhost.localstack.cloud:443/111111111111/my-queue"
+}
+
+#
+# Set some attributes
+#
+
+$ AWS_ACCESS_KEY_ID=111111111111 awslocal sqs set-queue-attributes \
+ --attributes VisibilityTimeout=60 \
+ --queue-url http://sqs.ap-south-1.localhost.localstack.cloud:443/111111111111/my-queue \
+ --region ap-south-1
+
+#
+# Retrieve the queue attribute from another account and region.
+# The required information for LocalStack to locate the queue is available in the queue URL.
+#
+
+$ AWS_ACCESS_KEY_ID=222222222222 awslocal sqs get-queue-attributes \
+ --attribute-names VisibilityTimeout \
+ --region eu-central-1 \
+ --queue-url http://sqs.ap-south-1.localhost.localstack.cloud:443/111111111111/my-queue
+{
+ "Attributes": {
+ "VisibilityTimeout": "60"
+ }
+}
+{{< /command >}}
+
## Cross-Account
-Resources that can be accessed across multiple accounts are always identified by their Amazon Resource Names (ARNs).
+Resources that can be accessed across accounts are identified by their Amazon Resource Names (ARNs) or other schemes such as SQS Queue URLs.
The full list of resources and operations that allow cross-account access are listed below.
{{< alert title="Note">}}
diff --git a/content/en/references/docker-images.md b/content/en/references/docker-images.md
index 709bcbf90e..3a4b9e459d 100644
--- a/content/en/references/docker-images.md
+++ b/content/en/references/docker-images.md
@@ -36,7 +36,7 @@ To use the LocalStack Pro image, you must configure an environment variable name
You can use the Pro image to start your LocalStack container using various [installation methods](https://docs.localstack.cloud/getting-started/installation/). While configuring to run LocalStack with Docker or Docker Compose, run the `localstack/localstack-pro` image with the appropriate tag you have pulled (if not `latest`).
{{< alert title="Notes" >}}
-Earlier, we maintained `localstack/localstack-light` and `localstack/localstack-full` images. They have been deprecated and are removed with the LocalStack 2.0 release. The [BigData image](https://hub.docker.com/r/localstack/bigdata/tags), which started as a `bigdata_container` container, has also been deprecated in favor of a BigData Mono container which installs dependencies directly into the LocalStack (`localstack_main`) container.
+Earlier, we maintained `localstack/localstack-light` and `localstack/localstack-full` images. They have been deprecated and are removed with the LocalStack 2.0 release. The [BigData image](https://hub.docker.com/r/localstack/bigdata/tags), which started as a `bigdata_container` container, has also been deprecated in favor of a BigData Mono container which installs dependencies directly into the LocalStack (`localstack-main`) container.
{{< /alert >}}
## Image tags
diff --git a/content/en/references/external-ports.md b/content/en/references/external-ports.md
index 74fa8aaaee..472c05ef78 100644
--- a/content/en/references/external-ports.md
+++ b/content/en/references/external-ports.md
@@ -37,13 +37,68 @@ By adjusting these environment variables, you can customize the port range accor
## Running multiple LocalStack containers with Custom Port Mapping
If you wish to run multiple instances of LocalStack simultaneously, it is essential to ensure that the edge port (default: `4566`) and external service ports are mapped to non-overlapping ranges.
-Here's how you can achieve this using the LocalStack CLI:
-{{< command >}}
-$ GATEWAY_LISTEN=0.0.0.0:4566 EXTERNAL_SERVICE_PORTS_START=4510 EXTERNAL_SERVICE_PORTS_END=4559 MAIN_CONTAINER_NAME=localstack_main_1 localstack start
-$ GATEWAY_LISTEN=0.0.0.0:4666 EXTERNAL_SERVICE_PORTS_START=4610 EXTERNAL_SERVICE_PORTS_END=4659 MAIN_CONTAINER_NAME=localstack_main_2 localstack start
-$ GATEWAY_LISTEN=0.0.0.0:4766 EXTERNAL_SERVICE_PORTS_START=4710 EXTERNAL_SERVICE_PORTS_END=4759 MAIN_CONTAINER_NAME=localstack_main_3 localstack start
-{{< /command >}}
+Here's how you can achieve this using when either using the CLI or docker-compose to start your LocalStack instances:
+
+{{< tabpane >}}
+{{< tab header="LocalStack CLI" lang="shell" >}}
+$ GATEWAY_LISTEN=0.0.0.0:4566 EXTERNAL_SERVICE_PORTS_START=4510 EXTERNAL_SERVICE_PORTS_END=4559 MAIN_CONTAINER_NAME=localstack-main-1 localstack start
+$ GATEWAY_LISTEN=0.0.0.0:4666 EXTERNAL_SERVICE_PORTS_START=4610 EXTERNAL_SERVICE_PORTS_END=4659 MAIN_CONTAINER_NAME=localstack-main-2 localstack start
+$ GATEWAY_LISTEN=0.0.0.0:4766 EXTERNAL_SERVICE_PORTS_START=4710 EXTERNAL_SERVICE_PORTS_END=4759 MAIN_CONTAINER_NAME=localstack-main-3 localstack start
+{{< /tab >}}
+{{< tab header="docker-compose" lang="yml" >}}
+version: "3.8"
+
+services:
+ localstack-main-1:
+ container_name: localstack-main-1
+ image: localstack/localstack
+ ports:
+ - "4566:4566" # LocalStack Gateway
+ - "4510-4559:4510-4559" # external services port range
+ environment:
+ - GATEWAY_LISTEN=0.0.0.0:4566
+ - EXTERNAL_SERVICE_PORTS_START=4510
+ - EXTERNAL_SERVICE_PORTS_END=4559
+ - MAIN_CONTAINER_NAME=localstack-main-1
+ - DOCKER_HOST=unix:///var/run/docker.sock
+ volumes:
+ - "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
+ - "/var/run/docker.sock:/var/run/docker.sock"
+
+ localstack-main-2:
+ container_name: localstack-main-2
+ image: localstack/localstack
+ ports:
+ - "4666:4666" # LocalStack Gateway
+ - "4610-4659:4610-4659" # external services port range
+ environment:
+ - GATEWAY_LISTEN=0.0.0.0:4666
+ - EXTERNAL_SERVICE_PORTS_START=4610
+ - EXTERNAL_SERVICE_PORTS_END=4659
+ - MAIN_CONTAINER_NAME=localstack-main-2
+ - DOCKER_HOST=unix:///var/run/docker.sock
+ volumes:
+ - "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
+ - "/var/run/docker.sock:/var/run/docker.sock"
+
+ localstack-main-3:
+ container_name: localstack-main-3
+ image: localstack/localstack
+ ports:
+ - "4766:4766" # LocalStack Gateway
+ - "4710-4759:4710-4759" # external services port range
+ environment:
+ - GATEWAY_LISTEN=0.0.0.0:4766
+ - EXTERNAL_SERVICE_PORTS_START=4710
+ - EXTERNAL_SERVICE_PORTS_END=4759
+ - MAIN_CONTAINER_NAME=localstack-main-3
+ - DOCKER_HOST=unix:///var/run/docker.sock
+ volumes:
+ - "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
+ - "/var/run/docker.sock:/var/run/docker.sock"
+{{< /tab >}}
+{{< /tabpane >}}
By customizing the `GATEWAY_LISTEN` and `EXTERNAL_SERVICE_PORTS_START`/`EXTERNAL_SERVICE_PORTS_END` values for each instance, you can ensure that they operate on distinct port ranges, preventing any conflicts and enabling smooth execution of multiple LocalStack instances.
Please make sure to set `MAIN_CONTAINER_NAME` for following usages of the LocalStack CLI to specify which instance of LocalStack you want to address with the specific CLI command.
diff --git a/content/en/references/init-hooks.md b/content/en/references/init-hooks.md
index d51eb5ecd7..dd83570968 100644
--- a/content/en/references/init-hooks.md
+++ b/content/en/references/init-hooks.md
@@ -129,7 +129,7 @@ version: "3.8"
services:
localstack:
- container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
+ container_name: "${LOCALSTACK_DOCKER_NAME-localstack-main}"
image: localstack/localstack
ports:
- "127.0.0.1:4566:4566"
diff --git a/content/en/references/network-troubleshooting/created-resources/_index.md b/content/en/references/network-troubleshooting/created-resources/_index.md
index ce256bf38a..fd2c08b1ab 100644
--- a/content/en/references/network-troubleshooting/created-resources/_index.md
+++ b/content/en/references/network-troubleshooting/created-resources/_index.md
@@ -6,17 +6,19 @@ tags:
- networking
---
-If you have created a resource using LocalStack, such as an OpenSearch cluster or RDS database, you may need to access it from your application. Typically, these resources are accessible through a URL or a hostname provided by LocalStack. While the environment variable `HOSTNAME_EXTERNAL` can often control the returned hostname, this approach may only work for some cases. This guide will explore different scenarios and provide detailed instructions on accessing resources created by LocalStack under different scenarios.
-
-{{}}
-An additional environment variable is available: `LOCALSTACK_HOSTNAME`. It is primarily used for communication within LocalStack and should not be used. We are currently working on streamlining the configuration under different scenarios.
-{{ }}
+If you have created a resource using LocalStack, such as an OpenSearch cluster or RDS database, you may need to access it from your application.
+Typically, these resources are accessible through a URL or a hostname provided by LocalStack.
+By default, LocalStack returns the hostname `localhost.localstack.cloud`, which resolves to LocalStack using DNS.
+For special environments (e.g., proxies), the [configuration]({{< ref "configuration" >}}) `LOCALSTACK_HOST` customizes the URLs returned by LocalStack.
+This guide will explore different scenarios and provide detailed instructions on accessing resources created by LocalStack under different scenarios.
## From your host
{{< figure src="../images/3.svg" width="400" >}}
-For example, suppose you have created an OpenSearch cluster using LocalStack and want to access it from the same computer. In such a case, you can set the `HOSTNAME_EXTERNAL` environment variable to specify the desired hostname that will be returned. Check out the [service-specific documentation]({{[}}) for more details.
+For example, suppose you have created an OpenSearch cluster using LocalStack and want to access it from the same computer.
+In such a case, you can set the `LOCALSTACK_HOST` environment variable to specify the desired hostname and port that will be returned.
+Check out the [service-specific documentation]({{][}}) for more details.
## From a container LocalStack created
diff --git a/content/en/references/network-troubleshooting/endpoint-url/_index.md b/content/en/references/network-troubleshooting/endpoint-url/_index.md
index 079b70b3cb..c13e7a6306 100644
--- a/content/en/references/network-troubleshooting/endpoint-url/_index.md
+++ b/content/en/references/network-troubleshooting/endpoint-url/_index.md
@@ -18,7 +18,7 @@ Suppose you have LocalStack installed on your machine and want to access it usin
Additionally, if you bind a domain name to `localhost`, ensure that you are not subject to [DNS rebind protection]({{< ref "user-guide/tools/transparent-endpoint-injection/dns-server#dns-rebind-protection" >}}).
{{}}
-You can also use the `EDGE_PORT` [configuration variable]({{< ref "references/configuration" >}}) to change the exposed port if necessary.
+You can also use the `GATEWAY_LISTEN` [configuration variable]({{< ref "references/configuration" >}}) to change the exposed port if necessary.
## From a container LocalStack created
@@ -41,16 +41,16 @@ For example:
docker network create my-network
# launch localstack
MAIN_DOCKER_NETWORK=my-network DOCKER_FLAGS="--network my-network" localstack start
-# then your code can access localstack at its container name (by default: localstack_main)
-aws --endpoint-url http://localstack_main:4566 s3api list-buckets
+# then your code can access localstack at its container name (by default: localstack-main)
+aws --endpoint-url http://localstack-main:4566 s3api list-buckets
{{}}
{{]}}
# create the network
docker network create my-network
# launch localstack
docker run --rm -it --network my-network -e MAIN_DOCKER_NETWORK=my-network localstack/localstack[-pro]
-# then your code can access localstack at its container name (by default: localstack_main)
-aws --endpoint-url http://localstack_main:4566 s3api list-buckets
+# then your code can access localstack at its container name (by default: localstack-main)
+aws --endpoint-url http://localstack-main:4566 s3api list-buckets
{{ }}
{{}}
services:
@@ -94,7 +94,7 @@ localstack start -d --network ls
localstack wait
# get the ip address of the LocalStack container
-docker inspect localstack_main | \
+docker inspect localstack-main | \
jq -r '.[0].NetworkSettings.Networks | to_entries | .[].value.IPAddress'
# prints 172.27.0.2
@@ -104,10 +104,10 @@ docker run --rm -it --dns 172.27.0.2 --network ls
{{< tab header="Docker" lang="bash" >}}
# start localstack
docker network create ls
-docker run --rm -it --network ls --name localstack_main localstack/localstack[-pro]
+docker run --rm -it --network ls --name localstack-main localstack/localstack[-pro]
# get the ip address of the LocalStack container
-docker inspect localstack_main | \
+docker inspect localstack-main | \
jq -r '.[0].NetworkSettings.Networks | to_entries | .[].value.IPAddress'
# prints 172.27.0.2
@@ -119,7 +119,7 @@ version: "3.8"
services:
localstack:
- container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
+ container_name: "${LOCALSTACK_DOCKER_NAME-localstack-main}"
image: localstack/localstack
ports:
# Now only required if you need to access LocalStack from the host
@@ -171,7 +171,7 @@ docker network create my-network
DOCKER_FLAGS="--network my-network" localstack start
# launch your container
docker run --rm it --network my-network
-# then your code can access localstack at its container name (by default: localstack_main)
+# then your code can access localstack at its container name (by default: localstack-main)
{{ }}
{{}}
# create the network
@@ -180,7 +180,7 @@ docker network create my-network
docker run --rm -it --network my-network localstack/localstack[-pro]
# launch your container
docker run --rm it --network my-network
-# then your code can access localstack at its container name (by default: localstack_main)
+# then your code can access localstack at its container name (by default: localstack-main)
{{ }}
{{}}
services:
@@ -217,7 +217,7 @@ LocalStack must listen to the address of the host, or `0.0.0.0`.
{{}}
{{}}
-EDGE_BIND_HOST="0.0.0.0" localstack start
+GATEWAY_LISTEN="0.0.0.0" localstack start
{{ }}
{{}}
# this command exposes ports on all interfaces by default
diff --git a/content/en/references/persistence-mechanism.md b/content/en/references/persistence-mechanism.md
index d9317bebd4..73421875a6 100644
--- a/content/en/references/persistence-mechanism.md
+++ b/content/en/references/persistence-mechanism.md
@@ -58,11 +58,9 @@ You can select a particular save strategy by setting `SNAPSHOT_SAVE_STRATEGY=}}
-It's important to note that all other AMIs are mocked and originate from the community edition of LocalStack.
+{{< alert title="Note" >}}
+All other AMIs that do not have the above tag are mocked and originate from the community edition of LocalStack.
Attempting to launch Dockerized instances using these specific AMIs will result in an `InvalidAMIID.NotFound` error.
+{{< /alert >}}
### Configuration
@@ -228,35 +230,19 @@ Keep in mind that these modifications apply to all instances launched within the
## Networking
-{{< alert title="Note" >}}
-LocalStack daemon is deprecated and will be removed in an upcoming major release.
-{{< /alert >}}
-
-LocalStack allocates distinct private IP addresses to Dockerized instances.
-To make use of this feature, it's essential to run the LocalStack daemon process on the host.
-This daemon process is responsible for handling the creation and administration of networking on the host system.
-
-Before using this command, ensure you've logged in to your `localstack` CLI (using `localstack login`) via your LocalStack Web Application credentials.
-To confirm, execute `localstack --help` and check if `daemons` is among the available commands.
-
-{{< command >}}
-$ pip install localstack[runtime]
-$ export LOCALSTACK_AUTH_TOKEN=...
-$ localstack daemons start
-{{< /command >}}
-
-The SSH access address for the instance is displayed in the logs during the instance initialization process.:
+Network addresses for Dockerized instances are allocated by the Docker daemon.
+These addresses are printed in the logs while the instance is being initialized.
```bash
-2022-03-21T14:46:49.540 INFO Instance i-1d6327abf04e31be6 will be accessible via SSH at: 127.0.0.1:55705, 172.17.0.4:22
+2022-03-21T14:46:49.540 INFO Instance i-1d6327abf04e31be6 will be accessible via SSH at: 127.0.0.1:55705
```
-The LocalStack daemon is supported on Linux and macOS operating systems.
-If the LocalStack daemon is inactive, the instance can only be accessed at `127.0.0.1` along with an available port on the host.
+To be able to access the instance at additional ports from the host system, you can modify the default security group and incorporate the needed ingress ports.
-To make additional ports available to the host system, you can modify the default security group and incorporate the needed ingress ports.
-It's important to note that security group ingress rules are applied only during the creation of the Dockerized instance.
+{{< alert title="Note" >}}
+Security group ingress rules are applied only during the creation of the Dockerized instance.
Modifying a security group will not open any ports for a running instance.
+{{< /alert >}}
The system supports up to 32 ingress ports.
This constraint is in place to prevent the host from exhausting available ports.
diff --git a/content/en/user-guide/aws/elastic-container-registry/index.md b/content/en/user-guide/aws/elastic-container-registry/index.md
index b8715be455..b616e88f40 100644
--- a/content/en/user-guide/aws/elastic-container-registry/index.md
+++ b/content/en/user-guide/aws/elastic-container-registry/index.md
@@ -110,7 +110,7 @@ To push the Docker image to the repository, you first need to tag the image with
Run the following command to tag the image:
{{< command >}}
-$ docker tag localstack-ecr-image localhost:4510/localstack-ecr-repository
+$ docker tag localstack-ecr-image localhost.localstack.cloud:4510/localstack-ecr-repository
{{< / command >}}
You can now push the image to the repository using the `docker` CLI:
diff --git a/content/en/user-guide/aws/elastic-kubernetes-service/index.md b/content/en/user-guide/aws/elastic-kubernetes-service/index.md
index 7501e5adeb..e33c82c771 100644
--- a/content/en/user-guide/aws/elastic-kubernetes-service/index.md
+++ b/content/en/user-guide/aws/elastic-kubernetes-service/index.md
@@ -100,12 +100,13 @@ You can now use ECR (Elastic Container Registry) images within your EKS environm
#### Initial configuration
-To modify the return value of resource URIs for most services, including ECR, you can utilize the `HOSTNAME_EXTERNAL` variable in the [configuration]({{< ref "configuration" >}}). By default, ECR returns a `repositoryUri` starting with `localhost`, such as: `localhost:/`. However, if you set the `HOSTNAME_EXTERNAL` to `localhost.localstack.cloud`, the ECR will provide a `repositoryUri` like `localhost.localstack.cloud:/`.
+To modify the return value of resource URIs for most services, including ECR, you can utilize the `LOCALSTACK_HOST` variable in the [configuration]({{< ref "configuration" >}}).
+By default, ECR returns a `repositoryUri` starting with `localhost.localstack.cloud`, such as: `localhost.localstack.cloud:/`.
{{< alert title="Notes" >}}
In this section, we assume that `localhost.localstack.cloud` resolves in your environment, and LocalStack is connected to a non-default bridge network. For more information, refer to the article about [DNS rebind protection]({{< ref "dns-server#dns-rebind-protection" >}}).
-If the domain `localhost.localstack.cloud` does not resolve on your host, you can still proceed without setting `HOSTNAME_EXTERNAL`. However it is suggested to use `localhost.localstack.cloud` as the registry in your pod configuration.
+If the domain `localhost.localstack.cloud` does not resolve on your host, you can still proceed by setting `LOCALSTACK_HOST=localhost` (not recommended).
LocalStack will take care of the DNS resolution of `localhost.localstack.cloud` within ECR itself, allowing you to use the `localhost:/` URI for tagging and pushing the image on your host.
{{< / alert >}}
diff --git a/content/en/user-guide/aws/elasticache/index.md b/content/en/user-guide/aws/elasticache/index.md
index 8ab19b3692..0b95a0cd9b 100644
--- a/content/en/user-guide/aws/elasticache/index.md
+++ b/content/en/user-guide/aws/elasticache/index.md
@@ -20,11 +20,13 @@ LocalStack supports ElastiCache via the Pro offering, allowing you to use the El
The supported APIs are available on our API Coverage Page,
which provides information on the extent of ElastiCache integration with LocalStack.
+
## Getting started
This guide is designed for users new to ElastiCache and assumes basic knowledge of the AWS CLI and our `awslocal` wrapper script.
-### Create a single-node Redis cluster
+
+### Single cache cluster
After starting LocalStack Pro, you can create a cluster with the following command.
@@ -36,26 +38,19 @@ $ awslocal elasticache create-cache-cluster \
--num-cache-nodes 1
{{< /command>}}
-You should see LocalStack responding with something like:
-```json
+Wait for it to be available, then you can use the cluster endpoint for Redis operations.
+
+{{< command >}}
+$ awslocal elasticache describe-cache-clusters --show-cache-node-info --query "CacheClusters[0].CacheNodes[0].Endpoint"
{
- "CacheCluster": {
- "CacheClusterId": "my-redis-cluster",
- "ConfigurationEndpoint": {
- "Address": "localhost",
- "Port": 4510
- },
- ...
+ "Address": "localhost.localstack.cloud",
+ "Port": 4510
}
-```
+{{< /command >}}
-### Interact with the cache cluster
+The cache cluster uses a random port of the [external service port range]({{< ref "external-ports" >}}).
+Use this port number to connect to the Redis instance like so:
-By default, the cache cluster (in this case the Redis server) is exposed on a random port of the [external service port range]({{< ref "external-ports" >}}).
-You can see the port in the ``ConfigurationEndpoint`` directive returned by the `create-cache-cluster` command.
-You can also get the port by calling `awslocal elasticache describe-cache-clusters`.
-
-Use the returned port number (in this case `4510` - but it will be a random port within the range) to connect to the Redis instance:
{{< command >}}
$ redis-cli -p 4510 ping
PONG
@@ -65,33 +60,53 @@ $ redis-cli -p 4510 get foo
"bar"
{{< / command >}}
-### Replication group
-We also support the `create-replication-group` API which supports the replication groups in ElastiCache clusters.
-With the API, you can now have a Redis cluster, a Redis replication group with cluster mode disabled, and a Redis replication group with cluster mode enabled.
+### Replication groups in non-cluster mode
+
+{{< command >}}
+$ awslocal elasticache create-replication-group \
+ --replication-group-id my-redis-replication-group \
+ --replication-group-description 'my replication group' \
+ --engine redis \
+ --cache-node-type cache.t2.micro \
+ --num-cache-clusters 3
+{{< /command >}}
+
+Wait for it to be available. When running the following command, you should see one node group when running:
+
+{{< command >}}
+$ awslocal elasticache describe-replication-groups --replication-group-id my-redis-replication-group
+{{< /command >}}
+
+To retrieve the primary endpoint:
+
+{{< command >}}
+$ awslocal elasticache describe-replication-groups --replication-group-id my-redis-replication-group \
+ --query "ReplicationGroups[0].NodeGroups[0].PrimaryEndpoint"
+{{< /command >}}
+
-You can create a replication group as follows:
+### Replication groups in cluster mode
+
+The cluster mode is enabled by using `--num-node-groups` and `--replicas-per-node-group`:
{{< command >}}
$ awslocal elasticache create-replication-group \
--engine redis \
- --replication-group-id my-redis-replication-group \
- --primary-cluster-id my-primary-redis-cluster \
- --automatic-failover-enabled \
- --cache-node-type cache.m5.large \
- --num-cache-clusters 2 \
- --replication-group-description 'my replication group'
-{{< / command >}}
+ --replication-group-id my-clustered-redis-replication-group \
+ --replication-group-description 'my clustered replication group' \
+ --cache-node-type cache.t2.micro \
+ --num-node-groups 2 \
+ --replicas-per-node-group 2
+{{< /command >}}
+
+Note that the group nodes do not have a primary endpoint. Instead they have a `ConfigurationEndpoint`, which you can connect to using `redis-cli -c` where `-c` is for cluster mode.
-In the LocalStack log output, you should be able to see that Redis starts in the cluster mode (`Running mode=cluster`):
-```
-2023-09-11T15:19:20.527 INFO --- [functhread27] l.s.elasticache.redis : 813:M 11 Sep 2023 15:19:20.527 * Running mode=cluster, port=4511.
-```
+{{< command >}}
+$ awslocal elasticache describe-replication-groups --replication-group-id my-clustered-redis-replication-group \
+ --query "ReplicationGroups[0].ConfigurationEndpoint"
+{{< /command >}}
-{{< alert title="Note">}}
-Redis requires at least three or more nodes to form a Redis replication group with cluster mode enabled.
-Hence, if the user requests only two node groups, we transparently upgrade to three nodes automatically to avoid raising an error.
-{{< /alert >}}
## Resource browser
@@ -108,11 +123,13 @@ In the ElastiCache resource browser you can:
{{< img src="elasticache-resource-browser-create.png" alt="Create a ElastiCache cluster in the resource browser" >}}
-
## Limitations
LocalStack currently supports Redis single-node and cluster mode, but not memcached.
Moreover, LocalStack emulation support for ElastiCache is mostly centered around starting/stopping Redis servers.
-Resource necessary to operate a cluster, like parameter groups, security groups, subnets groups, etc. are mocked, but have no effect on the functioning of the Redis servers.
-LocalStack currently doesn't support ElastiCache snapshots, users, user groups, service updates, global replication groups, migrations or tests.
-You can find a detailed list of covered API methods on the [ElastiCache coverage page]({{< ref "coverage_elasticache" >}}).
\ No newline at end of file
+
+Resources necessary to operate a cluster, like parameter groups, security groups, subnets groups, etc. are mocked, but have no effect on the functioning of the Redis servers.
+
+LocalStack currently doesn't support ElastiCache snapshots, failovers, users/passwords, service updates, replication scaling, SSL, migrations, service integration (like CloudWatch/Kinesis log delivery, SNS notifications) or tests.
+
+You can find a detailed list of covered API methods on the [ElastiCache coverage page]({{< ref "coverage_elasticache" >}}).
diff --git a/content/en/user-guide/aws/glue/index.md b/content/en/user-guide/aws/glue/index.md
index 75d95d69ae..5c8e936224 100644
--- a/content/en/user-guide/aws/glue/index.md
+++ b/content/en/user-guide/aws/glue/index.md
@@ -291,6 +291,75 @@ You should see the following output:
You can find a more advanced sample in our [localstack-pro-samples repository on GitHub](https://github.com/localstack/localstack-pro-samples/tree/master/glue-msk-schema-registry), which showcases the integration with AWS MSK and automatic schema registrations (including schema rejections based on the compatibilities).
+### Delta Lake Tables
+
+LocalStack Glue supports [Delta Lake](https://delta.io), an open-source storage framework that extends Parquet data files with a file-based transaction log for ACID transactions and scalable metadata handling.
+
+{{< alert title="Note">}}
+Please note that Delta Lake tables are only [supported for Glue versions `3.0` and `4.0`](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-format-delta-lake.html).
+{{< /alert >}}
+
+To illustrate this feature, we take a closer look at a Glue sample job that creates a Delta Lake table, puts some data into it, and then queries data from the table.
+
+First, we define the PySpark job in a file named `job.py` (see below).
+The job first creates a database `db1` and table `table1`, then inserts data into the table via both a dataframe and an `INSERT INTO` query, and finally fetches the inserted rows via a `SELECT` query:
+
+```python
+from awsglue.context import GlueContext
+from pyspark import SparkContext, SparkConf
+
+conf = SparkConf()
+conf.set("spark.sql.extensions", "io.delta.sql.DeltaSparkSessionExtension")
+conf.set("spark.sql.catalog.spark_catalog", "org.apache.spark.sql.delta.catalog.DeltaCatalog")
+glue_context = GlueContext(SparkContext.getOrCreate(conf=conf))
+spark = glue_context.spark_session
+
+# create database and table
+spark.sql("CREATE DATABASE db1")
+spark.sql("CREATE TABLE db1.table1 (name string, key long) USING delta PARTITIONED BY (key) LOCATION 's3a://test/data/'")
+
+# create dataframe and write to table in S3
+df = spark.createDataFrame([("test1", 123)], ["name", "key"])
+df.write.format("delta").options(path="s3a://test/data/") \
+ .mode("append").partitionBy("key").saveAsTable("db1.table1")
+
+# insert data via 'INSERT' query
+spark.sql("INSERT INTO db1.table1 (name, key) VALUES ('test2', 456)")
+
+# get and print results, to run assertions further below
+result = spark.sql("SELECT * FROM db1.table1")
+print("SQL result:", result.toJSON().collect())
+```
+
+We can now run the following commands to create and start the Glue job:
+{{< command >}}
+$ awslocal s3 mb s3://test
+$ awslocal s3 cp job.py s3://test/job.py
+$ awslocal glue create-job --name job1 --role arn:aws:iam::000000000000:role/test \
+ --glue-version 4.0 --command '{"Name": "pythonshell", "ScriptLocation": "s3://test/job.py"}'
+$ awslocal glue start-job-run --job-name job1
+
+{
+ "JobRunId": "c9471f40"
+}
+
+{{< / command >}}
+
+The execution of the Glue job can take a few moments - once the job has finished executing, you should see a log line with the query results in the LocalStack container logs, similar to the output below:
+```text
+2023-10-17 12:59:20,088 INFO scheduler.DAGScheduler: Job 15 finished: collect at /private/tmp/script-90e5371e.py:28, took 0,158257 s
+SQL result: ['{"name":"test1","key":123}', '{"name":"test2","key":456}']
+```
+
+In order to see the logs above, make sure to enable `DEBUG=1` in the LocalStack container environment.
+Alternatively, you can also retrieve the job logs programmatically via the CloudWatch Logs API - for example, using the job run ID `c9471f40` from above:
+{{< command >}}
+$ awslocal logs get-log-events --log-group-name /aws-glue/jobs/logs-v2 --log-stream-name c9471f40
+
+{ "events": [ ... ] }
+
+{{< / command >}}
+
## Resource Browser
The LocalStack Web Application provides a Resource Browser for Glue.
diff --git a/content/en/user-guide/aws/iot/index.md b/content/en/user-guide/aws/iot/index.md
index bfc49d502e..1972d400e6 100644
--- a/content/en/user-guide/aws/iot/index.md
+++ b/content/en/user-guide/aws/iot/index.md
@@ -28,7 +28,7 @@ To retrieve the MQTT endpoint, use the [`DescribeEndpoint`](https://docs.aws.ama
{{< command >}}
$ awslocal iot describe-endpoint
{
- "endpointAddress": "localhost.localstack.cloud:4510"
+ "endpointAddress": "000000000000.iot.eu-central-1.localhost.localstack.cloud:4510"
}
{{< / command >}}
@@ -45,7 +45,7 @@ Run the following command to subscribe to an MQTT topic.
{{< command >}}
$ mqtt subscribe \
- --host localhost.localstack.cloud \
+ --host 000000000000.iot.eu-central-1.localhost.localstack.cloud \
--port 4510 \
--topic climate
{{< /command >}}
@@ -54,8 +54,8 @@ In another terminal, publish a message to this topic.
{{< command >}}
$ mqtt publish \
- --host localhost.localstack.cloud \
- --port 4511 \
+ --host 000000000000.iot.eu-central-1.localhost.localstack.cloud \
+ --port 4510 \
--topic climate \
-m "temperature=30°C;humidity=60%"
{{< /command >}}
@@ -65,7 +65,7 @@ This message will be pushed to all subscribers of this topic, including the one
## Authentication
LocalStack IoT maintains its own root certificate authority which is regenerated at every run.
-The root CA certificate can be retrieved from .
+The root CA certificate can be retrieved from .
{{< alert title="Note">}}
AWS provides its root CA certificate at .
diff --git a/content/en/user-guide/aws/kms/index.md b/content/en/user-guide/aws/kms/index.md
index c3f8e29cd6..88c40a0229 100644
--- a/content/en/user-guide/aws/kms/index.md
+++ b/content/en/user-guide/aws/kms/index.md
@@ -130,3 +130,7 @@ LocalStack's KMS implementation is equipped to facilitate [multi-region keys](ht
### Key aliases
While AWS KMS conveniently establishes [aliases](https://docs.aws.amazon.com/kms/latest/developerguide/kms-alias.html), LocalStack follows suit by supporting these pre-configured aliases. However, it's important to note that in LocalStack, these aliases come into picture after the initial access attempt. Until that point, they are not visible.
+
+### Key specs
+
+In AWS KMS, [SM2](https://docs.aws.amazon.com/kms/latest/developerguide/asymmetric-key-specs.html#key-spec-sm:~:text=the%20message%20digest.-,SM2%20key%20spec%20(China%20Regions%20only),-The%20SM2%20key) is a supported key spec for asymmetric keys. However, LocalStack's KMS implementation doesn't support this key spec.
diff --git a/content/en/user-guide/aws/lambda/index.md b/content/en/user-guide/aws/lambda/index.md
index 0d202871c5..5f3af869af 100644
--- a/content/en/user-guide/aws/lambda/index.md
+++ b/content/en/user-guide/aws/lambda/index.md
@@ -1,19 +1,9 @@
---
title: "Lambda"
linkTitle: "Lambda"
-categories: ["LocalStack Community", "LocalStack Pro"]
description: >
- Get started with AWS Lambdas on LocalStack
-tags:
-- lambda
-- aws-lambda
-- lambda-hot-reloading
-- lambda-debugging
-- localstack-lambda
-- serverless
-- lambda-layers
+ Get started with Lambda on LocalStack
aliases:
- - /aws/lambda/
- /references/lambda-executors/
- /references/lambda-provider-v2/
- /references/lambda-asf-provider/
@@ -119,6 +109,7 @@ LocalStack provides various tools to help you develop, debug, and test your AWS
* **Hot reloading**: With Lambda hot reloading, you can continuously apply code changes to your Lambda functions without needing to redeploy them manually. To learn more about how to use hot reloading with LocalStack, check out our [hot reloading documentation]({{< ref "hot-reloading" >}}).
* **Remote debugging**: LocalStack's remote debugging functionality allows you to attach a debugger to your Lambda function using your preferred IDE. To get started with remote debugging in LocalStack, see our [debugging documentation]({{< ref "debugging" >}}).
+* **Lambda VS Code Extension**: LocalStack's Lambda VS Code Extension supports deploying and invoking Python Lambda functions through AWS SAM or AWS CloudFormation. To get started with the Lambda VS Code Extension, see our [Lambda VS Code Extension documentation]({{< ref "user-guide/tools/lambda-tools/lambda-vscode-extension" >}}).
## Lambda Layers (Pro)
@@ -205,7 +196,12 @@ The Resource Browser allows you to perform the following actions:
## Migrating to Lambda v2
-As part of the [LocalStack 2.0 release](https://discuss.localstack.cloud/t/new-lambda-implementation-in-localstack-2-0/258), the Lambda provider has been migrated to `v2` (formerly known as `asf`). With the new implementation, the following changes have been introduced:
+{{< alert title="Note" >}}
+The legacy Lambda implementation has been removed since LocalStack 3.0 (Docker `latest` since 2023-11-09).
+{{}}
+
+As part of the [LocalStack 2.0 release](https://discuss.localstack.cloud/t/new-lambda-implementation-in-localstack-2-0/258), the Lambda provider has been migrated to `v2` (formerly known as `asf`).
+With the new implementation, the following changes have been introduced:
- To run Lambda functions in LocalStack, mount the Docker socket into the LocalStack container. Add the following Docker volume mount to your LocalStack startup configuration: `/var/run/docker.sock:/var/run/docker.sock`. You can find an example of this configuration in our official [`docker-compose.yml` file](https://docs.localstack.cloud/getting-started/installation/#starting-localstack-with-docker-compose).
- The `v2` provider discontinues Lambda Executor Modes such as `LAMBDA_EXECUTOR=local`. Previously, this mode was used as a fallback when the Docker socket was unavailable in the LocalStack container, but many users unintentionally used it instead of the configured `LAMBDA_EXECUTOR=docker`. The new provider now behaves similarly to the old `docker-reuse` executor and does not require such configuration.
diff --git a/content/en/user-guide/aws/neptune/index.md b/content/en/user-guide/aws/neptune/index.md
index b1cc759da7..883a9f8461 100644
--- a/content/en/user-guide/aws/neptune/index.md
+++ b/content/en/user-guide/aws/neptune/index.md
@@ -26,7 +26,7 @@ Start your LocalStack container using your preferred method. We will demonstrate
### Create a Neptune cluster
-To create a Neptune cluster you can use the [`CreateDBCluster`](https://docs.aws.amazon.com/neptune/latest/APIReference/API_CreateDBCluster.html) API.
+To create a Neptune cluster you can use the [`CreateDBCluster`](https://docs.aws.amazon.com/neptune/latest/userguide/api-clusters.html#CreateDBCluster) API.
Run the following command to create a Neptune cluster:
{{< command >}}
@@ -41,7 +41,7 @@ You should see the following output:
{
"DBCluster": {
...
- "Endpoint": "localhost:4510",
+ "Endpoint": "localhost",
"Port": 4510, # may vary
"DBClusterArn": "arn:aws:rds:us-east-1:000000000000:cluster:my-neptune-db",
...
@@ -51,7 +51,7 @@ You should see the following output:
### Add an instance to the cluster
-To add an instance you can use the [`CreateDBInstance`](https://docs.aws.amazon.com/neptune/latest/APIReference/API_CreateDBInstance.html) API.
+To add an instance you can use the [`CreateDBInstance`](https://docs.aws.amazon.com/neptune/latest/userguide/api-instances.html#CreateDBInstance) API.
Run the following command to create a Neptune instance:
{{< command >}}
diff --git a/content/en/user-guide/aws/opensearch/index.md b/content/en/user-guide/aws/opensearch/index.md
index a2737c3cc0..8c9cbe3230 100644
--- a/content/en/user-guide/aws/opensearch/index.md
+++ b/content/en/user-guide/aws/opensearch/index.md
@@ -233,7 +233,7 @@ services:
- data01:/usr/share/opensearch/data
localstack:
- container_name: "${LOCALSTACK_DOCKER_NAME-localstack_main}"
+ container_name: "${LOCALSTACK_DOCKER_NAME-localstack-main}"
image: localstack/localstack
ports:
- "4566:4566"
diff --git a/content/en/user-guide/aws/qldb/index.md b/content/en/user-guide/aws/qldb/index.md
index 53e6be6a46..ec03c4a172 100644
--- a/content/en/user-guide/aws/qldb/index.md
+++ b/content/en/user-guide/aws/qldb/index.md
@@ -3,27 +3,339 @@ title: "Quantum Ledger Database (QLDB)"
linkTitle: "Quantum Ledger Database (QLDB)"
categories: ["LocalStack Pro"]
description: >
- Get started with Quantum Ledger Database (QLDB) on LocalStack
+ Get started with Quantum Ledger Database (QLDB) on LocalStack
aliases:
- - /aws/qldb/
+
+- /aws/qldb/
+
---
-The Quantum Ledger Database (QLDB) API supports queries over cryptographically verifiable data, stored in a journal of immutable transaction events. LocalStack allows to create local ledgers and journals, to perform `CREATE TABLE` statements, to insert data via `INSERT` statements, and to query data via `SELECT` statements.
+## Introduction
+
+Quantum Ledger Database (QLDB) is supported by LocalStack only in the Pro version.
+
+Amazon Quantum Ledger Database is a fully managed ledger database service offered by Amazon Web
+Services. It is designed to provide transparent, immutable, and cryptographically verifiable
+transaction
+log functionality to applications. QLDB is particularly useful for applications that need a secure
+and scalable
+way to maintain a complete and verifiable history of data changes over time.
+
+To learn more about QLDB please refer to
+the [official documentation](https://docs.aws.amazon.com/qldb/).
+To find out what operations are supported by the QLDB service on LocalStack, please check
+the [QLDB service coverage page]({{< ref "/references/coverage/coverage_qldb/index.md" >}} "QLDB
+service coverage page").
+
+## Getting started
+
+These instructions will follow along with
+the [getting started guide](https://docs.aws.amazon.com/qldb/latest/developerguide/getting-started.html)
+from the official documentation, but instead of using the console to
+perform all the operations, the LocalStack AWS CLI (management API only) and the QLDB shell (data
+API only) will be used.
+
+### Installing the QLDB shell
-QLDB uses the [Amazon ION data format](https://amzn.github.io/ion-docs), a data serialization format that represents a superset of JSON, with a number of additional features.
+QLDB supports PartiQL, a SQL-compatible query language, which allows you to query and manipulate
+data stored in QLDB.
+You can write PartiQL statements to perform complex queries, aggregations, and transformations on
+your data.
+Amazon QLDB provides a command line shell for interaction with the transactional data API. With the
+QLDB shell,
+you can run PartiQL statements on ledger data.
-A simple QLDB example running on LocalStack is provided in [this Github repository](https://github.com/localstack/localstack-pro-samples/tree/master/qldb-ledger-queries). The sample consists of two simple scenarios: (1) to create and list tables via the `pyqldb` Python library, and (2) to insert data into two tables and perform a `JOIN` query that combines data from the two tables. The sample output is posted below:
+For instructions on how to use and install the latest version of the QLDB shell, see
+the [README.md](https://github.com/awslabs/amazon-qldb-shell/blob/main/README.md#installation) file
+on GitHub.
+QLDB provides pre-built binary files for Linux, macOS, and Windows in
+the [Releases](https://github.com/awslabs/amazon-qldb-shell/releases) section of the repository.
-```plaintext
-Scenario 1: create and list tables in ledger
------------
-Creating new test ledger in QLDB API: ledger-test-1
-Creating two test tables in ledger
-Retrieved list of tables in ledger ledger-test-1: ['foobar1', 'foobar2']
------------
-Scenario 2: create ledger tables and run join query
------------
-Creating two test tables in ledger - "Vehicle" and "VehicleRegistration"
-Running a query that joins data from the two tables
-Query result: [{'Vehicle': {'id': 'v1'}}, {'Vehicle': {'id': 'v2'}}, {'Vehicle': {'id': 'v3'}}]
+### Creating a new ledger
+
+QLDB provides ledger databases, which are centralized, immutable, and cryptographically verifiable
+journals of transactions.
+
+{{< command >}}
+$ awslocal qldb create-ledger --name vehicle-registration --permissions-mode ALLOW_ALL
+{{< / command >}}
+
+```bash
+{
+ "Name": "vehicle-registration",
+ "Arn": "arn:aws:qldb:us-east-1:000000000000:ledger/vehicle-registration",
+ "State": "ACTIVE",
+ "CreationDateTime": 1696782718.0,
+ "PermissionsMode": "ALLOW_ALL",
+ "DeletionProtection": true
+}
```
+
+{{< alert title="Note" >}}
+
+- Permissions mode – the following options are available in AWS:
+
+**Allow all** – A legacy permissions mode that enables access control with API-level granularity for
+ledgers.
+This mode disregards any table-level or command-level IAM permissions policies that you create for
+the ledger.
+
+**Standard** (Recommended) - A permissions mode that enables access control with finer granularity
+for ledgers,
+tables, and PartiQL commands. It is recommended using this permissions mode to maximize the security
+of your
+ledger data.
+By default, this mode denies all requests to run any PartiQL commands on any tables in this ledger.
+To allow PartiQL
+commands, you must create IAM permissions policies for specific table resources and PartiQL actions,
+in addition to
+the `SendCommand` API permission for the ledger.
+{{< /alert >}}
+
+The following command can be used directly to write PartiQL statements against a QLDB ledger:
+
+{{< command >}}
+$ qldb --qldb-session-endpoint http://localhost:4566 --ledger vehicle-registration
+{{< / command >}}
+
+The user can continue from here to create tables, populate and interrogate them.
+
+### Creating tables and sample data
+
+PartiQL is a query language designed for processing structured data, allowing you to perform
+various data manipulation tasks using familiar SQL-like syntax.
+
+{{< command >}}
+qldb> CREATE TABLE VehicleRegistration
+{{< / command >}}
+
+```bash
+{
+ information_schema: {
+ user_tables: [
+ {
+ name: "VehicleRegistration",
+ status: "ACTIVE",
+ indexes: [
+ ]
+ }
+ ]
+ },
+ Vehicle: [
+ ],
+ VehicleRegistration: [
+ ]
+}
+1 document in bag (read-ios: 0, server-time: 0ms, total-time: 31ms)
+```
+
+The `VehicleRegistration` table was created. Now it's time to add some items:
+
+{{< command >}}
+qldb> INSERT INTO VehicleRegistration VALUE
+{
+ 'VIN' : 'KM8SRDHF6EU074761',
+ 'RegNum' : 1722,
+ 'State' : 'WA',
+ 'City' : 'Kent',
+ 'PendingPenaltyTicketAmount' : 130.75,
+ 'Owners' : {
+ 'PrimaryOwner' : { 'PersonId': '294jJ3YUoH1IEEm8GSabOs' },
+ 'SecondaryOwners' : [
+ { 'PersonId' : '1nmeDdLo3AhGswBtyM1eYh' },
+ { 'PersonId': 'IN7MvYtUjkp1GMZu0F6CG9' }
+ ]
+ },
+ 'ValidFromDate' : `2017-09-14T`,
+ 'ValidToDate' : `2020-06-25T`
+}
+{{< / command >}}
+
+```bash
+{
+documentId: "3TYR9BamzyqHWBjYOfHegE"
+}
+1 document in bag (read-ios: 0, server-time: 0ms, total-time: 894ms)
+```
+
+### Querying a table
+
+The table can be interrogated based on the inserted registration number:
+
+{{< command >}}
+qldb> SELECT * FROM VehicleRegistration WHERE RegNum=1722
+{{< / command >}}
+
+```bash
+{
+ 'VIN' : 'KM8SRDHF6EU074761',
+ 'RegNum' : 1722,
+ 'State' : 'WA',
+ 'City' : 'Kent',
+ 'PendingPenaltyTicketAmount' : 130.75,
+ 'Owners' : {
+ 'PrimaryOwner' : { 'PersonId': '294jJ3YUoH1IEEm8GSabOs' },
+ 'SecondaryOwners' : [
+ { 'PersonId' : '1nmeDdLo3AhGswBtyM1eYh' },
+ { 'PersonId': 'IN7MvYtUjkp1GMZu0F6CG9' }
+ ]
+ },
+ 'ValidFromDate' : `2017-09-14T`,
+ 'ValidToDate' : `2020-06-25T`
+}
+1 document in bag (read-ios: 0, server-time: 0ms, total-time: 477ms)
+```
+
+### Modifying documents in a ledger
+
+Additional changes can be made to documents in the `vehicle-registration` ledger with more complex
+queries.
+Supposed the vehicle is sold and changes owners, this information needs to be updated with a new
+person ID.
+
+{{< command >}}
+qldb> UPDATE VehicleRegistration AS r SET r.Owners.PrimaryOwner.PersonId = '112233445566NO' WHERE r.VIN = 'KM8SRDHF6EU074761'
+{{< / command >}}
+The command will return the updated document ID.
+```bash
+{
+ documentId: "3TYR9BamzyqHWBjYOfHegE"
+}
+1 document in bag (read-ios: 0, server-time: 0ms, total-time: 62ms)
+```
+The next step is to check on the updates made to the `PersonId` field of the `PrimaryOwner`:
+{{< command >}}
+qldb> SELECT r.Owners FROM VehicleRegistration AS r WHERE r.VIN = 'KM8SRDHF6EU074761'
+{{< / command >}}
+
+```bash
+{
+ Owners: {
+ PrimaryOwner: {
+ PersonId: "112233445566NO"
+ },
+ SecondaryOwners: [
+ {
+ PersonId: "1nmeDdLo3AhGswBtyM1eYh"
+ },
+ {
+ PersonId: "IN7MvYtUjkp1GMZu0F6CG9"
+ }
+ ]
+ }
+}
+1 document in bag (read-ios: 0, server-time: 0ms, total-time: 518ms)
+```
+
+### Viewing the revision history of a document
+
+After modifying the data in a document, the user can query the history of the entity.
+You can see all revisions of a document that you inserted, updated, and deleted by querying the
+built-in History function.
+First the unique `id` of the document must be found.
+
+{{< command >}}
+qldb> SELECT r_id FROM VehicleRegistration AS r BY r_id WHERE r.VIN = 'KM8SRDHF6EU074761'
+{{< / command >}}
+```bash
+{
+r_id: "3TYR9BamzyqHWBjYOfHegE"
+}
+
+1 document in bag (read-ios: 0, server-time: 0ms, total-time: 541ms)
+```
+
+Then, the `id` is used to query the history function.
+
+{{< command >}}
+qldb> SELECT h.data.VIN, h.data.City, h.data.Owners FROM history(VehicleRegistration) AS h WHERE h.metadata.id = '3TYR9BamzyqHWBjYOfHegE'
+{{< / command >}}
+
+```bash
+{
+ VIN: "KM8SRDHF6EU074761",
+ City: "Kent",
+ Owners: {
+ PrimaryOwner: {
+ PersonId: "294jJ3YUoH1IEEm8GSabOs"
+ },
+ SecondaryOwners: [
+ {
+ PersonId: "1nmeDdLo3AhGswBtyM1eYh"
+ },
+ {
+ PersonId: "IN7MvYtUjkp1GMZu0F6CG9"
+ }
+ ]
+ }
+},
+{
+ VIN: "KM8SRDHF6EU074761",
+ City: "Kent",
+ Owners: {
+ PrimaryOwner: {
+ PersonId: "112233445566NO"
+ },
+ SecondaryOwners: [
+ {
+ PersonId: "1nmeDdLo3AhGswBtyM1eYh"
+ },
+ {
+ PersonId: "IN7MvYtUjkp1GMZu0F6CG9"
+ }
+ ]
+ }
+}
+2 documents in bag (read-ios: 0, server-time: 0ms, total-time: 544ms)
+```
+
+### Cleaning up resources
+
+Unused ledgers can be deleted. You'll notice that directly running the following command will lead
+to an error message.
+
+{{< command >}}
+$ awslocal qldb delete-ledger --name vehicle-registration
+{{< / command >}}
+
+```bash
+An error occurred (ResourcePreconditionNotMetException) when calling the DeleteLedger operation: Preventing deletion
+of ledger vehicle-registration with DeletionProtection enabled
+```
+
+This can be adjusted using the `update-ledger` command in the AWS CLI to remove the deletion protection of the ledger:
+
+{{< command >}}
+$ awslocal qldb update-ledger --name vehicle-registration --no-deletion-protection
+{{< / command >}}
+
+```bash
+{
+ "Name": "vehicle-registration",
+ "Arn": "arn:aws:qldb:us-east-1:000000000000:ledger/vehicle-registration",
+ "State": "ACTIVE",
+ "CreationDateTime": 1697038061.0,
+ "DeletionProtection": false
+}
+```
+
+Now the `delete-ledger` command can be repeated without errors.
+
+### Examples
+
+Interacting with Amazon QLDB (Quantum Ledger Database) is typically done using language-specific
+software
+development kits (SDKs) provided by AWS. These SDKs make it easier for developers to interact with
+QLDB and
+perform operations such as managing ledgers, executing PartiQL queries, and processing the results.
+When interacting with QLDB, it's common to use a combination of SDKs and PartiQL queries to achieve
+specific data
+processing tasks, ensuring flexibility and ease of development.
+
+A simple QLDB example running on LocalStack is provided
+in [this Github repository](https://github.com/localstack/localstack-pro-samples/tree/master/qldb-ledger-queries)
+.
+The sample consists of two simple scenarios:
+
+1. Create and list tables via the `pyqldb` Python library.
+2. Insert data into two tables and perform a `JOIN` query that combines data from the two tables.
diff --git a/content/en/user-guide/aws/rds/index.md b/content/en/user-guide/aws/rds/index.md
index b876265d9b..cfd3cec608 100644
--- a/content/en/user-guide/aws/rds/index.md
+++ b/content/en/user-guide/aws/rds/index.md
@@ -25,11 +25,6 @@ LocalStack's RDS implementation also supports the [RDS Data API](https://docs.aw
### Create an RDS cluster
-{{< alert title="Note" >}}
-The `Endpoint` for cluster on Localstack currently follows the pattern `:` for legacy reasons, which is not in parity in AWS.
-To force the correct pattern (e.g. returning only the host for the `Endpoint`) you can use the configuration `RDS_CLUSTER_ENDPOINT_HOST_ONLY=1` to start LocalStack.
-{{< /alert >}}
-
To create an RDS cluster, you can use the [`CreateDBCluster`](https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html) API.
The following command creates a new cluster with the name `db1` and the engine `aurora-postgresql`.
Instances for the cluster must be added manually.
@@ -49,7 +44,7 @@ You should see the following output:
{
"DBCluster": {
...
- "Endpoint": "localhost:4510",
+ "Endpoint": "localhost",
"Port": 4510, # may vary
"DBClusterArn": "arn:aws:rds:us-east-1:000000000000:cluster:db1",
...
@@ -179,7 +174,7 @@ MariaDB will be set up as an operating system package within LocalStack. However
### MySQL Engine
-When choosing a MySQL engine type, the default installation will be MariaDB. If you prefer to utilize an actual MySQL version, you can achieve this by setting the environment variable `RDS_MYSQL_DOCKER=1`. When this feature is enabled, the MySQL community server will be launched in a new Docker container upon requesting the MySQL engine.
+A MySQL community server will be launched in a new Docker container upon requesting the MySQL engine.
The `engine-version` will serve as the tag for the Docker image, allowing you to freely select the desired MySQL version from those available on the [official MySQL Docker Hub](https://hub.docker.com/_/mysql). If you have a specific image in mind, you can also use the environment variable `MYSQL_IMAGE=`.
diff --git a/content/en/user-guide/aws/sqs/index.md b/content/en/user-guide/aws/sqs/index.md
index 4fa51822a4..58faffe91c 100644
--- a/content/en/user-guide/aws/sqs/index.md
+++ b/content/en/user-guide/aws/sqs/index.md
@@ -43,7 +43,7 @@ You will see the following output:
```sh
{
"QueueUrls": [
- "http://localhost:4566/000000000000/localstack-queue"
+ "http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue"
]
}
```
@@ -54,7 +54,7 @@ You need to pass the `queue-url` and `attribute-names` parameters.
Run the following command to retrieve the queue attributes:
{{< command >}}
-$ awslocal sqs get-queue-attributes --queue-url http://localhost:4566/000000000000/localstack-queue --attribute-names All
+$ awslocal sqs get-queue-attributes --queue-url http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue --attribute-names All
{{< / command >}}
### Sending and receiving messages from the queue
@@ -65,7 +65,7 @@ To send a message to a SQS queue, you can use the [`SendMessage`](https://docs.a
Run the following command to send a message to the queue:
{{< command >}}
-$ awslocal sqs send-message --queue-url http://localhost:4566/000000000000/localstack-queue --message-body "Hello World"
+$ awslocal sqs send-message --queue-url http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue --message-body "Hello World"
{{< / command >}}
It will return the MD5 hash of the Message Body and a Message ID.
@@ -82,7 +82,7 @@ You can receive messages from the queue using the [`ReceiveMessage`](https://doc
Run the following command to receive messages from the queue:
{{< command >}}
-$ awslocal sqs receive-message --queue-url http://localhost:4566/000000000000/localstack-queue
+$ awslocal sqs receive-message --queue-url http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue
{{< / command >}}
You will see the Message ID, MD5 hash of the Message Body, Receipt Handle, and the Message Body in the output.
@@ -95,7 +95,7 @@ You need to pass the `queue-url` and `receipt-handle` parameters.
Run the following command to delete a message from the queue:
{{< command >}}
-$ awslocal sqs delete-message --queue-url http://localhost:4566/000000000000/localstack-queue --receipt-handle
+$ awslocal sqs delete-message --queue-url http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue --receipt-handle
{{< / command >}}
Replace `` with the receipt handle you received in the previous step.
@@ -104,7 +104,7 @@ If you have sent multiple messages to the queue, you can purge the queue using t
Run the following command to purge the queue:
{{< command >}}
-$ awslocal sqs purge-queue --queue-url http://localhost:4566/000000000000/localstack-queue
+$ awslocal sqs purge-queue --queue-url http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue
{{< / command >}}
## SQS Query API
@@ -117,7 +117,7 @@ With LocalStack, you can conveniently test SQS Query API calls without the need
For instance, you can use a basic `cURL` command to send a `SendMessage` command along with a MessageBody attribute:
{{< command >}}
-$ curl "http://localhost:4566/000000000000/localstack-queue?Action=SendMessage&MessageBody=hello%2Fworld"
+$ curl "http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue?Action=SendMessage&MessageBody=hello%2Fworld"
{{< / command >}}
You will see the following output:
@@ -142,7 +142,7 @@ To receive JSON responses from the server, include the `Accept: application/json
Here's an example using the `cURL` command:
{{< command >}}
-$ curl -H "Accept: application/json" "http://localhost:4566/000000000000/localstack-queue?Action=SendMessage&MessageBody=hello%2Fworld"
+$ curl -H "Accept: application/json" "http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/localstack-queue?Action=SendMessage&MessageBody=hello%2Fworld"
{{< / command >}}
The response will be in JSON format:
@@ -169,6 +169,7 @@ You can control the format of the generated Queue URLs by setting the environmen
| Value | URL format | Description |
| -------- | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `standard` | `sqs..localhost.localstack.cloud:4566//` | Default. This strategy resembles AWS the closest (see [Identifiers for Amazon SQS](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-queue-message-identifiers.html#sqs-general-identifiers)) and comes with full multi-account and multi-region support. |
| `domain` | `.queue.localhost.localstack.cloud:4566//` | This strategy behaves like the [SQS legacy service endpoints](https://docs.aws.amazon.com/general/latest/gr/sqs-service.html#sqs_region), and uses `localhost.localstack.cloud` to resolve to localhost. While using the `us-east-1` region, the `.` prefix is omitted. |
| `path` | `localhost:4566/queue///` | An alternative that can be useful if you cannot resolve LocalStack's `localhost` domain. |
| `off` | `localhost:4566//` | It is the current default for maintaining backward compatibility. However, this format does not encode the region information. As a result, you will encounter limitations when querying queues with the same name that exist in different regions. |
@@ -249,12 +250,12 @@ You can call the `/_aws/sqs/messages` endpoint in two different ways:
1. Using the query argument `QueueUrl`, like this:
{{< command >}}
- $ http://localhost:4566/_aws/sqs/messages?QueueUrl=http://queue.localhost.localstack.cloud:4566/000000000000/my-queue
+ $ http://localhost.localstack.cloud:4566/_aws/sqs/messages?QueueUrl=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue
{{< / command >}}
2. Utilizing the path-based endpoint, as shown in this example:
{{< command >}}
- $ http://localhost:4566/_aws/sqs/messages/us-east-1/000000000000/my-queue
+ $ http://localhost.localstack.cloud:4566/_aws/sqs/messages/us-east-1/000000000000/my-queue
{{< / command >}}
#### XML response
@@ -263,14 +264,14 @@ You can directly call the endpoint to obtain the raw AWS XML response.
{{< tabpane >}}
{{< tab header="cURL" lang="bash" >}}
-curl "http://localhost:4566/_aws/sqs/messages?QueueUrl=http://queue.localhost.localstack.cloud:4566/000000000000/my-queue"
+curl "http://localhost.localstack.cloud:4566/_aws/sqs/messages?QueueUrl=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue"
{{< /tab >}}
{{< tab header="Python Requests" lang="python" >}}
import requests
response = requests.get(
- url="http://localhost:4566/_aws/sqs/messages",
- params={"QueueUrl": "http://queue.localhost.localstack.cloud:4566/000000000000/my-queue"},
+ url="http://localhost.localstack.cloud:4566/_aws/sqs/messages",
+ params={"QueueUrl": "http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue"},
)
print(response.text) # outputs the response XML
{{< /tab >}}
@@ -340,14 +341,14 @@ You can include the `Accept: application/json` header in your request if you pre
{{< tabpane >}}
{{< tab header="cURL" lang="bash" >}}
curl -H "Accept: application/json" \
- "http://localhost:4566/_aws/sqs/messages?QueueUrl=http://queue.localhost.localstack.cloud:4566/000000000000/my-queue"
+ "http://localhost.localstack.cloud:4566/_aws/sqs/messages?QueueUrl=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue"
{{< /tab >}}
{{< tab header="Python Requests" lang="python" >}}
import requests
response = requests.get(
- url="http://localhost:4566/_aws/sqs/messages",
- params={"QueueUrl": "http://queue.localhost.localstack.cloud:4566/000000000000/my-queue"},
+ url="http://localhost.localstack.cloud:4566/_aws/sqs/messages",
+ params={"QueueUrl": "http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue""},
)
print(response.text) # outputs the response XML
{{< /tab >}}
@@ -423,13 +424,13 @@ Since the `/_aws/sqs/messages` endpoint is compatible with the SQS `ReceiveMessa
{{< tabpane >}}
{{< tab header="aws-cli" lang="bash" >}}
-aws --endpoint-url=http://localhost:4566/_aws/sqs/messages sqs receive-message \
- --queue-url=http://queue.localhost.localstack.cloud:4566/000000000000/my-queue
+aws --endpoint-url=http://localhost.localstack.cloud:4566/_aws/sqs/messages sqs receive-message \
+ --queue-url=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue
{{< /tab >}}
{{< tab header="Boto3" lang="python" >}}
import boto3
-sqs = boto3.client("sqs", endpoint_url="http://localhost:4566/_aws/sqs/messages")
-response = sqs.receive_message(QueueUrl="http://queue.localhost.localstack.cloud:4566/000000000000/my-queue")
+sqs = boto3.client("sqs", endpoint_url="http://localhost.localstack.cloud:4566/_aws/sqs/messages")
+response = sqs.receive_message(QueueUrl="http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue")
print(response)
{{< /tab >}}
{{< / tabpane >}}
@@ -467,6 +468,50 @@ An example response is shown below:
}
```
+#### Show invisible or delayed messages
+
+The developer endpoint also supports showing invisible and delayed messages via the query arguments `ShowInvisible` and `ShowDelayed`.
+
+{{< tabpane >}}
+{{< tab header="cURL" lang="bash" >}}
+curl -H "Accept: application/json" \
+ "http://localhost.localstack.cloud:4566/_aws/sqs/messages?ShowInvisible=true&ShowDelayed=true&QueueUrl=http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue
+{{< /tab >}}
+{{< tab header="Python Requests" lang="python" >}}
+import requests
+
+response = requests.get(
+ "http://localhost.localstack.cloud:4566/_aws/sqs/messages",
+ params={"QueueUrl": queue_url, "ShowInvisible": True, "ShowDelayed": True},
+ headers={"Accept": "application/json"},
+)
+print(response.text)
+{{< /tab >}}
+{{< / tabpane >}}
+
+This will also include messages that currently have an active visibility timeout or were delayed and are not actually in the queue yet.
+Here's an example:
+
+```json
+[
+ {
+ "MessageId": "1c4187cc-f2c9-4f1c-9702-4a3bfaaa4817",
+ "MD5OfBody": "a06498de7fb4bd539c8895748f03175d",
+ "Body": "message-3",
+ "Attribute": [
+ {"Name": "SenderId", "Value": "000000000000"},
+ {"Name": "SentTimestamp", "Value": "1697494407799"},
+ {"Name": "ApproximateReceiveCount", "Value": "0"},
+ {"Name": "ApproximateFirstReceiveTimestamp", "Value": "0"},
+ {"Name": "IsVisible", "Value": "true"}, <--
+ {"Name": "IsDelayed", "Value": "false"}, <--
+ ],
+ "ReceiptHandle": "SQS/BACKDOOR/ACCESS",
+ },
+ ...
+]
+```
+
## Resource Browser
The LocalStack Web Application provides a Resource Browser for managing SQS queues.
diff --git a/content/en/user-guide/aws/stepfunctions/index.md b/content/en/user-guide/aws/stepfunctions/index.md
index 091ee0816e..cb7e046002 100644
--- a/content/en/user-guide/aws/stepfunctions/index.md
+++ b/content/en/user-guide/aws/stepfunctions/index.md
@@ -5,6 +5,14 @@ description: >
Get started with Step Functions on LocalStack
---
+
+{{< alert title="Note" >}}
+A new [StepFunctions]({{< ref "user-guide/aws/lambda" >}}) implementation is now active by default since LocalStack 3.0 (Docker `latest` since 2023-09-11).
+
+If you experience any issues please open an issue on GitHub.
+You can revert to the old behavior in the meantime by setting `PROVIDER_OVERRIDE_STEPFUNCTIONS=legacy`
+{{}}
+
Step Functions is a serverless workflow engine that enables the orchestrating of multiple AWS services. It provides a JSON-based structured language called Amazon States Language (ASL) which allows to specify how to manage a sequence of tasks and actions that compose the application's workflow. Thus making it easier to build and maintain complex and distributed applications. Step Functions allows for the definition of both standard and express workflows for long-running and high-volume event processing.
LocalStack supports Step Functions via the Community offering, allowing you to use the Step Functions APIs in your local environment to create, execute, update, and delete state machines locally. The supported APIs are available on our [API coverage page](https://docs.localstack.cloud/references/coverage/coverage_stepfunctions/), which provides information on the extent of Step Function's integration with LocalStack.
diff --git a/content/en/user-guide/ci/circle-ci/index.md b/content/en/user-guide/ci/circle-ci/index.md
index 8a2c839e89..8c433198c9 100644
--- a/content/en/user-guide/ci/circle-ci/index.md
+++ b/content/en/user-guide/ci/circle-ci/index.md
@@ -1,45 +1,77 @@
---
title: "CircleCI"
-tags: ["continuous-integration", "ci", "continuous-delivery", "testing"]
+linkTitle: "CircleCI"
weight: 4
description: >
- Use LocalStack in [Circle CI](https://circleci.com/)
-aliases:
- - /ci/circle-ci/
+ Use LocalStack in CircleCI
---
-This guide describes how to start and use LocalStack in your CircleCI pipelines.
+[Circle CI](https://circleci.com) is a continuous integration and continuous delivery (CI/CD) platform which uses a configuration file (usually named `.circleci/config.yml`) to define the build, test, and deployment workflows. LocalStack supports CircleCI out of the box and can be easily integrated into your pipeline to run your tests against a local cloud emulator.
-## Setting up your CircleCI job
+## Getting started
-LocalStack is an official partner of [Circle CI](https://circleci.com/) and can easily be integrated into your pipeline by using the [official CircleCI Orb](https://circleci.com/developer/orbs/orb/localstack/platform).\
-The [Orb's documentation](https://circleci.com/developer/orbs/orb/localstack/platform) features examples, as well as a description of the available commands.
+This guide is designed for users new to CircleCI and assumes basic knowledge of YAML and LocalStack tooling. To create a CircleCI job that uses LocalStack, follow these steps:
-When using the official CircleCI Orb, using LocalStack in your pipeline is as easy as adding the Orb to your pipeline and executing the startup command.\
-The following example CircleCI config (`.circleci/config.yml`) starts LocalStack, creates a new S3 bucket, and prints a nice message in the end:
-```yaml
+- Under the "Projects" tab, find your project and click "Set Up Project"
+- You'll be prompted to add a configuration. You can add the configuration manually or choose a starter pipeline.
+- If you choose the starter CI pipeline, a sample `config.yml` file is created and committed to a `circleci-project-setup` branch in your repo.
+- You can add the following configuration to the `config.yml` file to start LocalStack and run your tests against it.
+
+```yml
version: 2.1
+
orbs:
- localstack: localstack/platform@1.0
+ python: circleci/python@2.0.3
+
jobs:
- run-integration-tests:
- executor: localstack/default
+ example-job:
+ machine:
+ image: ubuntu-2004:2022.04.1
+
steps:
- - localstack/startup
+ - checkout
+
- run:
- command: awslocal s3 mb s3://test-bucket
+ name: Start LocalStack
+ command: |
+ pip3 install localstack awscli-local[ver1]
+ docker pull localstack/localstack
+ localstack start -d
+
+ echo "Waiting for LocalStack startup..."
+ localstack wait -t 30
+ echo "Startup complete"
+
- run:
- command: echo "Execute your tests here :)"
+ name: Run AWS CLI commands against LocalStack
+ command: |
+ awslocal s3 mb s3://test-bucket
+ awslocal sqs create-queue --queue-name test-queue
+ awslocal sns create-topic --name test-topic
+
workflows:
- integration-test:
+ version: 2
+ build:
jobs:
- - run-integration-tests
+ - example-job
```
-## Configuring an CI key
+The above CircleCI job does the following:
+
+- Defines a job called `example-job` that installs the `localstack` CLI and `awslocal` wrapper script to execute AWS CLI commands against LocalStack.
+- Pulls the LocalStack Docker image depending on the product tier via the `localstack` CLI (For Community, the image is `localstack/localstack`, while for Pro+ it is `localstack/localstack-pro`).
+- Starts LocalStack in the background and waits for it to become ready. After 30 seconds, the job will execute basic AWS CLI commands against LocalStack.
+
+## Configuring a CI key
+
+To enable LocalStack Pro+, you need to add your LocalStack CI API key to the project's environment variables. The LocalStack container will automatically pick it up and activate the licensed features.
-You can easily enable LocalStack Pro by adding your CI key to the project's environment variables. The LocalStack Orb will automatically pick it up and activate the Pro features.
+Go to the [CI Key PAge](https://app.localstack.cloud/workspace/ci-keys) page and copy your CI key. To add the CI key to your CircleCI project, follow these steps:
-Just go to the project settings in CircleCI, click on `Environment Variables` in the sidebar and add your CI key:
+- Click on **Project Settings**.
+- Select **Environment Variables** from the left side menu.
+- Click **Add Environment Variable**.
+- Name your environment variable `LOCALSTACK_API_KEY`.
+- Paste your CI key into the input field.
-![Adding the LocalStack CI key in CircleCI](circleci-env-config.png)
+
diff --git a/content/en/user-guide/ci/gitlab-ci/index.md b/content/en/user-guide/ci/gitlab-ci/index.md
index d2e01946c8..b831b0b058 100644
--- a/content/en/user-guide/ci/gitlab-ci/index.md
+++ b/content/en/user-guide/ci/gitlab-ci/index.md
@@ -20,8 +20,8 @@ We recommend taking the following steps:
- Add GitLab CI variables using the keyword variables to include `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY`, and `AWS_DEFAULT_REGION`.
- Create a service using the keyword `services` and reference `docker:20.10.16-dind` to pull the latest Docker image and assign an alias for the container (`docker` in our case). Use the `command` option to disable TLS with `--tls=false`.
- Install LocalStack and/or AWS-related dependencies to define the commands that should be run before all builds.
-- In the `before_script` section, add commands to set up the `LOCALSTACK_HOSTNAME` and `HOSTNAME_EXTERNAL` environment variables and append `localhost.localstack.cloud` to `/etc/hosts` using the IP address of the `docker` service.
-- In the script section, pull the `localstack/localstack` Docker image, start LocalStack in detached mode, and run your LocalStack-related tests.
+- In the `script` section, append `localhost.localstack.cloud` to `/etc/hosts` using the IP address of the `docker` service.
+- In the `script` section, pull the `localstack/localstack` Docker image, start LocalStack in detached mode, and run your LocalStack-related tests.
The following example Gitlab CI job config (`.gitlab-ci.yml`) executes these steps, creates a new S3 bucket, copies some content to the bucket, and checks the content of the bucket:
@@ -39,8 +39,6 @@ test:
AWS_DEFAULT_REGION: us-east-1
DOCKER_HOST: tcp://docker:2375
DOCKER_TLS_CERTDIR: ""
- LOCALSTACK_HOSTNAME: localhost.localstack.cloud
- HOSTNAME_EXTERNAL: localhost.localstack.cloud
services:
- name: docker:20.10.16-dind
@@ -62,6 +60,13 @@ test:
- aws --endpoint http://localhost.localstack.cloud:4566 s3 ls s3://test/
```
+
+For LocalStack versions before 3.0.0
+Under test>variables, add:
+LOCALSTACK_HOSTNAME: localhost.localstack.cloud
+HOSTNAME_EXTERNAL: localhost.localstack.cloud.
+
+
{{< alert title="Note">}}
While working with a Docker-in-Docker (`dind`) setup, the Docker runner requires `privileged` mode. You must always use `privileged = true` in your GitLab CI's `config.toml` file while setting up LocalStack in GitLab CI runners. For more information, see [GitLab CI Docker-in-Docker](https://docs.gitlab.com/ee/ci/docker/using_docker_build.html#use-docker-in-docker-executor) documentation.
{{< /alert >}}
diff --git a/content/en/user-guide/ci/harness-ci/index.md b/content/en/user-guide/ci/harness-ci/index.md
index fe5f55e84e..a7b366b9f1 100644
--- a/content/en/user-guide/ci/harness-ci/index.md
+++ b/content/en/user-guide/ci/harness-ci/index.md
@@ -52,7 +52,7 @@ stages:
connectorRef: docker_hub
image: curlimages/curl:7.83.1
shell: Sh
- command: until curl --fail --silent --max-time 1 http://localstack:4566/health; do sleep 2; done
+ command: until curl --fail --silent --max-time 1 http://localstack:4566/_localstack/health; do sleep 2; done
```
To run the pipeline, click **Save** and then **Run Pipeline**. You will be able to see LocalStack Service Dependency logs that verify that the LocalStack Container is healthy and running.
diff --git a/content/en/user-guide/extensions/managing-extensions/index.md b/content/en/user-guide/extensions/managing-extensions/index.md
index c430b5b403..96e94a2343 100644
--- a/content/en/user-guide/extensions/managing-extensions/index.md
+++ b/content/en/user-guide/extensions/managing-extensions/index.md
@@ -92,7 +92,7 @@ version: "3.8"
services:
localstack:
- container_name: "localstack_main"
+ container_name: "localstack-main"
image: localstack/localstack-pro
ports:
- "127.0.0.1:4566:4566"
diff --git a/content/en/user-guide/integrations/aws-cdk/index.md b/content/en/user-guide/integrations/aws-cdk/index.md
index 0a741b44ed..75491b3f13 100644
--- a/content/en/user-guide/integrations/aws-cdk/index.md
+++ b/content/en/user-guide/integrations/aws-cdk/index.md
@@ -47,8 +47,7 @@ $ cdklocal --help
The following environment variables can be configured:
-* `EDGE_PORT`: Port under which LocalStack edge service is accessible (default: `4566`)
-* `LOCALSTACK_HOSTNAME`: Target host under which LocalStack edge service is accessible (default: `localhost`)
+* `AWS_ENDPOINT_URL`: The endpoint URL (i.e., protocol, host, and port) to connect to LocalStack (default: `http://localhost:4566`)
* `LAMBDA_MOUNT_CODE`: Whether to use local Lambda code mounting (via setting `hot-reload` S3 bucket name)
diff --git a/content/en/user-guide/integrations/aws-cli/index.md b/content/en/user-guide/integrations/aws-cli/index.md
index ef5fbac1d8..86f81a5f6b 100644
--- a/content/en/user-guide/integrations/aws-cli/index.md
+++ b/content/en/user-guide/integrations/aws-cli/index.md
@@ -2,33 +2,35 @@
title: "AWS Command Line Interface"
weight: 2
description: >
- How to use the AWS Command Line Interface (CLI) with LocalStack.
-aliases:
- - /integrations/aws-cli/
+ Use AWS Command Line Interface (CLI) to create local AWS resources with LocalStack
---
-## Overview
+## Introduction
-The [AWS Command Line Interface (CLI)](https://aws.amazon.com/cli/) is a unified tool to manage AWS services from the command line.
-All CLI commands that access [services that are implemented in LocalStack]({{< ref "feature-coverage" >}}) can be run against LocalStack.
+The [AWS Command Line Interface (CLI)](https://aws.amazon.com/cli/) is a unified tool for creating and managing AWS services via a command line interface. All CLI commands applicable to services implemented within [LocalStack]({{< ref "references/coverage/" >}}) can be executed when operating against LocalStack.
-There are two CLI alternatives:
+You can use the AWS CLI with LocalStack using either of the following approaches:
* [AWS CLI]({{[}})
* [LocalStack AWS CLI]({{][}})
## AWS CLI
-Use the below command to install `aws`, if not installed already.
+You can install `aws` by using the following command if it's not already installed.
{{< command >}}
$ pip install awscli
{{< / command >}}
-### Setting up local region and credentials to run LocalStack
+You can configure the AWS CLI to redirect AWS API requests to LocalStack using two approaches:
+
+- [Configuring an endpoint URL](#configuring-an-endpoint-url)
+- [Configuring a custom profile](#configuring-a-custom-profile)
+
+### Configuring an endpoint URL
+
+You can use AWS CLI with an endpoint URL by configuring test environment variables and include the `--endpoint-url=]` flag in your `aws` CLI commands. For example:
-Configure AWS test environment variables and add the `--endpoint-url=` flag to your `aws` CLI invocations.
-For example:
{{< command >}}
$ export AWS_ACCESS_KEY_ID="test"
$ export AWS_SECRET_ACCESS_KEY="test"
@@ -37,41 +39,59 @@ $ export AWS_DEFAULT_REGION="us-east-1"
$ aws --endpoint-url=http://localhost:4566 kinesis list-streams
{{< / command >}}
-Create a configuration profile. The configuration file will be created under `~/.aws` directory and in the example below, using the `default` profile:
-
-{{< command >}}
-$ aws configure --profile default
-{{< / command >}}
-
{{< alert title="Note">}}
-Please use `test` as value for `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` to make pre-signed URLs for S3 buckets work.
-Our pre-signed URL signature verification algorithm validates the pre-signed URL and its expiration.
+To enable the creation of pre-signed URLs for S3 buckets, please set both `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` to the value "test." Our pre-signed URL signature verification algorithm validates the pre-signed URL and its expiration.
{{< /alert >}}
-Verify the current configuration:
+### Configuring a custom profile
+
+You can configure a custom profile to use with LocalStack. Add the following profile to your AWS configuration file (by default, this file is at `~/.aws/config`):
+
+```bash
+[profile localstack]
+region=us-east-1
+output=json
+endpoint_url = http://localhost:4566
+```
+
+Add the following profile to your AWS credentials file (by default, this file is at `~/.aws/credentials`):
+
+```bash
+[localstack]
+aws_access_key_id=test
+aws_secret_access_key=test
+```
+
+You can now use the `localstack` profile with the `aws` CLI:
{{< command >}}
-aws configure list
+$ aws s3 mb s3://test --profile localstack
+$ aws s3 ls --profile localstack
{{< / command >}}
-## LocalStack AWS CLI (awslocal)
+{{< alert title="Note">}}
+Alternatively, you can also set the `AWS_PROFILE=localstack` environment variable, in which case the `--profile localstack` parameter can be omitted in the commands above.
+{{< /alert >}}
-`awslocal` is a thin wrapper and a drop-in replacement for the `aws` command that runs commands directly against LocalStack (no need to specify `--endpoint-url` anymore).
-The source code can be found on GitHub: https://github.com/localstack/awscli-local
+## LocalStack AWS CLI (`awslocal`)
+`awslocal` serves as a thin wrapper and a substitute for the standard `aws` command, enabling you to run AWS CLI commands within the LocalStack environment without specifying the `--endpoint-url` parameter or a profile.
### Installation
-You can install the `awslocal` command via `pip`:
+Install the `awslocal` command using the following command:
{{< command >}}
$ pip install awscli-local[ver1]
{{< / command >}}
-Note that the command above also installs the latest version of the underlying AWS CLI version 1 (`awscli`) package. Use this command if you prefer to manage your own version of `awscli` (e.g., `v1`/`v2`) and install the wrapper script only:
+{{< alert title="Note" >}}
+The above command installs the most recent version of the underlying AWS CLI version 1 (`awscli`) package. If you would rather manage your own `awscli` version (e.g., `v1` or `v2`) and only install the wrapper script, you can use the following command:
+
{{< command >}}
$ pip install awscli-local
{{< / command >}}
+{{< /alert >}}
{{< alert title="Note" >}}
Automatic installation of AWS CLI version 2 is currently not supported yet (at the time of writing there is no official pypi package for `v2` available), but the `awslocal` technically also works with AWS CLI v2 (see [this section]({{< ref "#limitations" >}}) for more details).
@@ -79,29 +99,19 @@ Automatic installation of AWS CLI version 2 is currently not supported yet (at t
### Usage
-The `awslocal` command has the same usage as the `aws` command.
-For detailed usage, please refer to the man pages of `aws help`.
+The `awslocal` command shares identical usage with the standard `aws` command. For comprehensive usage instructions, refer to the manual pages by running `awslocal help`.
{{< command >}}
awslocal kinesis list-streams
{{< / command >}}
-### Configurations
-
-You can use the following environment variables for configuration:
-
-| Variable | Description |
-| -------- | ----------- |
-| `LOCALSTACK_HOST` | Set the hostname for the localstack instance. Useful when you have localstack is bound to another interface (i.e. docker-machine). |
-| `USE_SSL` | Whether to use `https` endpoint URLs (required if LocalStack has been started with `USE_SSL=true` enabled). Defaults to `false`. |
-| `DEFAULT_REGION` | *Deprecated*. Set the default region. Overrides `AWS_DEFAULT_REGION` environment variable. |
-
-Verify the current configuration:
-
-{{< command >}}
-awslocal configure list
-{{< / command >}}
+### Configuration
+| Variable Name | Description |
+|---------------------|--------------------------------------------------|
+| AWS_ENDPOINT_URL | The endpoint URL to connect to (takes precedence over USE_SSL/LOCALSTACK_HOST) |
+| LOCALSTACK_HOST | (deprecated) A variable defining where to find LocalStack (default: localhost:4566) |
+| USE_SSL | (deprecated) Whether to use SSL when connecting to LocalStack (default: False) |
### Limitations
diff --git a/content/en/user-guide/integrations/aws-sam/index.md b/content/en/user-guide/integrations/aws-sam/index.md
index d29a687924..97aa26c36f 100644
--- a/content/en/user-guide/integrations/aws-sam/index.md
+++ b/content/en/user-guide/integrations/aws-sam/index.md
@@ -40,5 +40,4 @@ Please make sure to replace all `sam` calls with `samlocal` when following the A
### Configuration
-* `EDGE_PORT`: Port number under which the LocalStack edge service is available (default: `4566`)
-* `LOCALSTACK_HOSTNAME`: Host under which the LocalStack edge service is available (default: `localhost`)
+* `AWS_ENDPOINT_URL`: The endpoint URL (i.e., protocol, host, and port) to connect to LocalStack (default: `http://localhost:4566`)
diff --git a/content/en/user-guide/integrations/cloud-custodian/index.md b/content/en/user-guide/integrations/cloud-custodian/index.md
new file mode 100644
index 0000000000..ccb31052ab
--- /dev/null
+++ b/content/en/user-guide/integrations/cloud-custodian/index.md
@@ -0,0 +1,121 @@
+---
+title: "Cloud Custodian"
+weight: 16
+description: >
+ Use Cloud Custodian to manage local cloud resources by filtering, tagging, and then applying actions with LocalStack
+---
+
+## Introduction
+
+Cloud Custodian is an open-source rules engine and cloud management tool designed to help organizations maintain security and compliance across their cloud environments. Cloud Custodian's YAML DSL allows definition of rules to filter and tag resources, and then apply actions to those resources.
+
+Cloud Custodian can be used to manage local AWS resources in LocalStack, resembling the live AWS environment, allowing you to test and validate your security policies locally. You can use Cloud Custodian with LocalStack by just specifying the Cloud Custodian package to use the LocalStack profile configured with your AWS CLI.
+
+## Getting started
+
+This guide is designed for users who are new to Cloud Custodian and assumes basic knowledge of the AWS CLI and our [`awslocal`](https://github.com/localstack/awscli-local) wrapper script.
+
+Start your LocalStack container using your preferred method. We will demonstrate how you can spin up an EC2 instance and tag it with the key `Custodian`, and then use Cloud Custodian to stop the instance.
+
+### Install Cloud Custodian
+
+To install Cloud Custodian, run the following command:
+
+{{< command >}}
+$ pip install c7n
+{{< / command >}}
+
+After installing Cloud Custodian, you can configure a [custom LocalStack profile](http://docs.localstack.cloud/user-guide/integrations/aws-cli/#configuring-a-custom-profile) in your AWS CLI configuration file.
+
+### Create an EC2 instance
+
+You can create an EC2 instance using the `awslocal` wrapper script. You can use the [`RunInstances`](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API to create an EC2 instance. The following example creates an EC2 instance with the tag `Custodian` (any value):
+
+{{< command >}}
+$ awslocal ec2 run-instances \
+ --image-id ami-ff0fea8310f3 \
+ --count 1 \
+ --instance-type t3.nano \
+ --tag-specifications "ResourceType=instance,Tags=[{Key=Custodian,Value=AnyValue}]"
+{{< / command >}}
+
+You can navigate to the LocalStack logs to verify that the EC2 instance was created successfully:
+
+```bash
+2023-10-16T15:27:35.479 INFO --- [ asgi_gw_0] l.u.container_networking : Determined main container network: bridge
+2023-10-16T15:27:35.504 INFO --- [ asgi_gw_0] l.u.container_networking : Determined main container target IP: 172.17.0.2
+2023-10-16T15:27:36.154 INFO --- [ asgi_gw_0] l.s.ec2.vmmanager.docker : Instance i-d87f1ab75e95ab0d2 will be accessible via SSH at: 127.0.0.1:22, 172.17.0.3:22
+2023-10-16T15:27:36.155 INFO --- [ asgi_gw_0] l.s.ec2.vmmanager.docker : Instance i-d87f1ab75e95ab0d2 port mappings (container -> host): {'22/tcp': 22}
+2023-10-16T15:27:36.218 INFO --- [ asgi_gw_0] localstack.request.aws : AWS ec2.RunInstances => 200
+```
+
+### Create a Cloud Custodian policy
+
+You can now create a Cloud Custodian policy to stop the EC2 instances with the tag `Custodian`. Create a file named `custodian.yml` and add the following content:
+
+```yaml
+policies:
+ - name: my-first-policy
+ resource: aws.ec2
+ filters:
+ - "tag:Custodian": present
+ actions:
+ - stop
+```
+
+The above policy specifies the following:
+
+- `name`: The name of the policy.
+- `resource`: The AWS resource to apply the policy to.
+- `filters`: The filters to apply to the resource. In this case, the filter is `tag:Custodian` and the value is `present`.
+- `actions`: The actions to apply to the resource. In this case, the action is `stop`.
+
+### Run the Cloud Custodian policy
+
+You can now run the Cloud Custodian policy using the following command:
+
+{{< command >}}
+$ custodian run \
+ --output-dir=. custodian.yml \
+ --profile localstack
+{{< / command >}}
+
+{{< alert title="Note">}}
+Alternatively, you can also set the `AWS_PROFILE=localstack` environment variable, in which case the `--profile localstack` parameter can be omitted in the commands above.
+{{< /alert >}}
+
+You should see the following output:
+
+```sh
+2023-10-16 21:06:13,853: custodian.policy:INFO policy:my-first-policy resource:aws.ec2 region:us-east-1 count:1 time:0.20
+2023-10-16 21:06:13,961: custodian.policy:INFO policy:my-first-policy action:stop resources:1 execution_time:0.10
+```
+
+You can then navigate to the LocalStack logs to verify that the EC2 instance was stopped successfully:
+
+```bash
+2023-10-16T15:36:13.583 INFO --- [ asgi_gw_0] localstack.request.aws : AWS sts.GetCallerIdentity => 200
+2023-10-16T15:36:13.851 INFO --- [ asgi_gw_1] localstack.request.aws : AWS ec2.DescribeInstances => 200
+2023-10-16T15:36:13.960 INFO --- [ asgi_gw_0] localstack.request.aws : AWS ec2.StopInstances => 200
+```
+
+### Create CloudWatch metrics for Cloud Custodian
+
+Cloud Custodian creates CloudWatch metrics for each policy. These metrics show how many resources met the filters, the time taken to gather and filter those resources, and the time required to perform actions.
+
+Certain filters and actions might produce their own metrics. To activate metric output, you must set the `metrics` flag running Cloud Custodian.
+
+{{< command >}}
+$ custodian run -s . \
+ --metrics aws custodian.yml \
+ --profile localstack
+{{< / command >}}
+
+You can access the CloudWatch metrics in the [LocalStack Web Application](https://app.localstack.cloud/inst/default/resources/cloudwatch).
+
+## Further reading
+
+- [Example Policies](https://cloudcustodian.io/docs/aws/examples/index.html) for practical examples of specific policies for individual AWS modules.
+- [Cloud Custodian documentation](https://cloudcustodian.io/docs/quickstart/index.html) to learn more about Cloud Custodian.
+- [Integrations](https://cloudcustodian.io/docs/aws/topics/index.html) with Config, Security Hub, Systems Manager, and X-Ray.
+- [Monitoring the environment](https://cloudcustodian.io/docs/aws/usage.html) by generating CloudWatch metrics.
diff --git a/content/en/references/localstack-on-kubernetes.md b/content/en/user-guide/integrations/kubernetes/index.md
similarity index 80%
rename from content/en/references/localstack-on-kubernetes.md
rename to content/en/user-guide/integrations/kubernetes/index.md
index 8ec7ed48b7..46ac212c3b 100644
--- a/content/en/references/localstack-on-kubernetes.md
+++ b/content/en/user-guide/integrations/kubernetes/index.md
@@ -1,17 +1,25 @@
---
-title: LocalStack on Kubernetes
+title: Kubernetes
+linktitle: Kubernetes
weight: 50
-categories: ["LocalStack Community", "LocalStack Pro"]
-tags:
-- kubernetes
-- k8s
-description: >
- Running LocalStack on Kubernetes
+description: Running LocalStack on Kubernetes
+aliases:
+ - /references/localstack-on-kubernetes/
---
-LocalStack can be deployed on [Kubernetes](https://kubernetes.io/) using the [LocalStack Helm chart](http://helm.localstack.cloud/).
+## Introduction
-## Helm Chart
+[Kubernetes](https://kubernetes.io) is an open-source container orchestration platform that simplifies the deployment, scaling, and management of containerized applications. LocalStack can be deployed on Kubernetes using the [LocalStack Helm chart](http://helm.localstack.cloud).
+
+{{< alert title="Warning" color="warning" >}}
+Creating shared/hosted LocalStack instances may have some licensing implications. For example, a valid license might be necessary for each user who interacts with the instance. If you have any questions or uncertainties regarding the licensing implications, we encourage you to [contact us](https://localstack.cloud/contact) for further details.
+{{< /alert >}}
+
+{{< alert title="Note" >}}
+LocalStack on Kubernetes can be used in conjunction with the [LocalStack Community image](https://hub.docker.com/r/localstack/localstack). However, specific features such as execution of Lambda functions as Kubernetes pods is only available in the [LocalStack Pro image](https://hub.docker.com/r/localstack/localstack-pro).
+{{< /alert >}}
+
+## Getting started
To deploy LocalStack in your [Kubernetes](https://kubernetes.io/) cluster, you can use [Helm](https://helm.sh/).
@@ -38,7 +46,7 @@ The following command allows you to download and install all the charts from thi
$ helm repo add localstack https://localstack.github.io/helm-charts
{{< /command >}}
-### Use Helm
+### Using Helm
After you have installed the Helm client, you can deploy a Helm chart into a Kubernetes cluster.
@@ -50,9 +58,9 @@ Some useful Helm client commands are:
- Install a chart: `helm install localstack/`
- Upgrade your application: `helm upgrade`
-## Sample repository (`l8k`)
+## LocalStack on Kubernetes (`l8k`)
-The [`localstack-on-k8s](https://github.com/localstack/localstack-on-k8s) sample repository that illustrates running LocalStack on Kubernetes (k8s).
+The [`localstack-on-k8s`](https://github.com/localstack/localstack-on-k8s) sample repository illustrates running LocalStack on Kubernetes (k8s).
### Prerequisites
@@ -66,7 +74,7 @@ This sample requires the following tools installed on your machine:
* [`kubectl`](https://kubernetes.io/docs/tasks/tools/#kubectl)
* [Serverless](https://www.npmjs.com/package/serverless)
-### Installation
+### Clone the sample repository
Clone the repository:
@@ -90,10 +98,12 @@ After initialization, your `kubectl` command-line should be automatically config
{{< command >}}
$ kubectl config current-context
+
k3d-ls-cluster
+
{{< /command >}}
-### Deploy a sample application
+### Deploy the sample application
Once LocalStack is installed in the Kubernetes cluster, we can deploy the sample app on the LocalStack instance:
@@ -140,7 +150,3 @@ $ awslocal apigateway --endpoint-url=http://localhost:8081 get-rest-apis
{{< /command >}}
We can then use a browser to open the [Web UI](http://localhost:8081/archive-bucket/index.html), which should have been deployed to an S3 bucket inside LocalStack. The Web UI can be used to interact with the sample application, send new requests to the backend, inspect the state of existing requests, etc.
-
-{{< alert title="Note" >}}
-LocalStack on Kubernetes can be used in conjunction with the [LocalStack Community image](https://hub.docker.com/r/localstack/localstack). However, specific features such as execution of Lambda functions as Kubernetes pods is only available in the [LocalStack Pro image](https://hub.docker.com/r/localstack/localstack-pro).
-{{< /alert >}}
diff --git a/content/en/user-guide/integrations/openshift/index.md b/content/en/user-guide/integrations/openshift/index.md
new file mode 100644
index 0000000000..94bfc65b3c
--- /dev/null
+++ b/content/en/user-guide/integrations/openshift/index.md
@@ -0,0 +1,80 @@
+---
+title: "OpenShift"
+weight: 14
+description: >
+ Use the OpenShift managed Kubernetes cluster to deploy LocalStack
+---
+
+## Introduction
+
+OpenShift is a container orchestration platform as a service designed to simplify the deployment, scaling, and management of containerized applications. Built on Kubernetes, OpenShift provides a comprehensive set of tools and features that facilitate the orchestration, automation, and monitoring of containerized workloads.
+
+With OpenShift, you can deploy LocalStack on a managed Kubernetes cluster, as a cloud sandbox that emulates various AWS services & APIs. This guide demonstrates how you can deploy LocalStack on OpenShift using Devfile. You can use the deployed LocalStack container to create AWS resources that you can use for local development and testing purposes.
+
+{{< alert title="Warning" color="warning" >}}
+Creating shared/hosted LocalStack instances may have some licensing implications. For example, a valid license might be necessary for each user who interacts with the instance. If you have any questions or uncertainties regarding the licensing implications, we encourage you to [contact us](https://localstack.cloud/contact) for further details.
+{{< /alert >}}
+
+{{< alert title="Note" >}}
+LocalStack on OpenShift can be used in conjunction with the [LocalStack Community image](https://hub.docker.com/r/localstack/localstack). However, specific features such as execution of Lambda functions as OpenShift pods and other container workloads is only available in the [LocalStack Pro image](https://hub.docker.com/r/localstack/localstack-pro).
+{{< /alert >}}
+
+## Getting started
+
+This guide is designed for users new to LocalStack and assumes basic knowledge of the AWS CLI and our [`awslocal`](https://github.com/localstack/awscli-local) wrapper script. As a general prerequisite, you should have access to the [OpenShift Web Console](https://docs.openshift.com/container-platform/4.14/web_console/web-console-overview.html).
+
+We will demonstrate how you can create local AWS resources using LocalStack using the AWS CLI. Instead of running LocalStack locally, you will deploy it on OpenShift and use the exposed endpoint to interact with the LocalStack container.
+
+### Setting up LocalStack on OpenShift
+
+You can deploy LocalStack via the **Developer** perspective in the OpenShift Web Console. Navigate to the **+Add** view to deploy LocalStack using a Devfile.
+
+
+
+
+To deploy LocalStack on OpenShift, click on **Import from Git** in the **Git Repository** tile. In the Git section, enter the following Git repository URL to import the Devfile and Helm charts which contains the configuration for LocalStack: [**https://github.com/localstack/localstack-dev-spaces**](https://github.com/localstack/localstack-dev-spaces).
+
+OpenShift Web Console will automatically detect the Devfile and display the import strategy. A unique application name will be generated to the application grouping to label your resources. A unique name will also be provided to the component that will be used to name associated resources. You can edit these values if you want.
+
+Click on **Create** to deploy LocalStack on OpenShift.
+
+### Viewing the LocalStack deployment
+
+You can see the build status of the LocalStack deployment in the **Topology** view.
+
+
+
+
+After successful deployment, you can see the **localstack-dev-spaces** pod in the **Topology** view. Click on the pod to view the details. You will be able to see the following details:
+
+- Running pods along with the status and logs.
+- Builds for your existing pods and an option to create new builds.
+- Exposed services along with the service port and the pod port.
+- Exposed routes for your deployed pods on the cluster.
+
+
+
+
+### Creating AWS resources on OpenShift
+
+Click on the **localstack-dev-spaces** pod to view the details. You will be able to see the exposed route for the LocalStack container. Copy the route URL and use it to interact with the LocalStack container.
+
+To create an S3 bucket and an SQS queue, run the following commands:
+
+{{< command >}}
+$ export AWS_ENDPOINT_URL=''
+$ awslocal s3 mb s3://my-bucket
+$ awslocal sqs create-queue --queue-name my-queue
+{{< /command >}}
+
+In the above commands, replace `` with the route URL of the LocalStack container. The `AWS_ENDPOINT_URL` environment variable is used to specify the endpoint URL of the LocalStack container.
+
+{{< alert title="Note" >}}
+By default, the endpoint URL for `awslocal` is `http://localhost:4566`. Since we are running LocalStack on OpenShift, we need to specify the route URL of the LocalStack container. You can swap `awslocal` with the AWS CLI, by specifying the additional `--endpoint-url` parameter.
+{{< /alert >}}
+
+You can further use integrations, such as [CDK](https://docs.localstack.cloud/user-guide/integrations/aws-cdk/), [SAM CLI](https://docs.localstack.cloud/user-guide/integrations/aws-sam/), and [Terraform](https://docs.localstack.cloud/user-guide/integrations/terraform/), to interact with the Ephemeral Instance. In these integrations, you can change the `AWS_ENDPOINT_URL` environment variable to the endpoint URL of the Ephemeral Instance.
+
+### Deleting the LocalStack deployment
+
+To delete the LocalStack deployment, click on the **localstack-dev-spaces** pod in the **Topology** view. Click on the **Actions** menu and select **Delete Deployment**.
\ No newline at end of file
diff --git a/content/en/user-guide/integrations/openshift/localstack-dev-spaces.png b/content/en/user-guide/integrations/openshift/localstack-dev-spaces.png
new file mode 100644
index 0000000000..f76ba49c19
Binary files /dev/null and b/content/en/user-guide/integrations/openshift/localstack-dev-spaces.png differ
diff --git a/content/en/user-guide/integrations/openshift/openshift-developer-view.png b/content/en/user-guide/integrations/openshift/openshift-developer-view.png
new file mode 100644
index 0000000000..6cead4619e
Binary files /dev/null and b/content/en/user-guide/integrations/openshift/openshift-developer-view.png differ
diff --git a/content/en/user-guide/integrations/openshift/openshift-topology-view.png b/content/en/user-guide/integrations/openshift/openshift-topology-view.png
new file mode 100644
index 0000000000..007c2cbffc
Binary files /dev/null and b/content/en/user-guide/integrations/openshift/openshift-topology-view.png differ
diff --git a/content/en/user-guide/integrations/sdks/python/index.md b/content/en/user-guide/integrations/sdks/python/index.md
index 13f63fa466..f4230536ed 100644
--- a/content/en/user-guide/integrations/sdks/python/index.md
+++ b/content/en/user-guide/integrations/sdks/python/index.md
@@ -37,11 +37,10 @@ client = boto3.client("lambda")
...
```
-Alternatively, if you prefer to (or need to) set the endpoints directly, you can use the `$LOCALSTACK_HOSTNAME` environment variable which is available when executing user code (e.g., Lambda functions, ECS containers) in LocalStack:
+Alternatively, if you prefer to (or need to) set the endpoints directly, you can use the environment variable `AWS_ENDPOINT_URL`, which is available when executing user code (e.g., Lambda functions) in LocalStack:
```python3
import os
-endpoint_url = f"http://{os.getenv("LOCALSTACK_HOSTNAME")}:{os.getenv("EDGE_PORT")}"
-client = boto3.client("lambda", endpoint_url=endpoint_url)
+client = boto3.client("lambda", endpoint_url=os.getenv("AWS_ENDPOINT_URL"))
...
```
diff --git a/content/en/user-guide/integrations/serverless-framework/index.md b/content/en/user-guide/integrations/serverless-framework/index.md
index d745a6e347..7a7863f711 100644
--- a/content/en/user-guide/integrations/serverless-framework/index.md
+++ b/content/en/user-guide/integrations/serverless-framework/index.md
@@ -106,23 +106,22 @@ Usually, all of LocalStack's services are available via a specific port on local
Since the Lambda functions execute within the LocalStack Docker container, Lambda functions cannot access other services via the usual localhost endpoint.
-Instead, LocalStack provides a special environment variable `LOCALSTACK_HOSTNAME` which contains the internal endpoint of the LocalStack services from within its runtime environment.
+Instead, LocalStack provides a special environment variable `AWS_ENDPOINT_URL` which contains the internal endpoint of the LocalStack services from within its runtime environment.
-Hence, you need to configure the Lambda functions to use the `LOCALSTACK_HOSTNAME` endpoint when accessing other AWS services in LocalStack.
+Hence, you need to configure the Lambda functions to use the `AWS_ENDPOINT_URL` endpoint when accessing other AWS services in LocalStack.
-In Python, this may look something like. The code detects if it is running in LocalStack by checking if the `LOCALSTACK_HOSTNAME` variable exists and then configures the endpoint URL accordingly.
+In Python, this may look something like. The code detects if it is running in LocalStack by checking if the `AWS_ENDPOINT_URL` variable exists and then configures the endpoint URL accordingly.
```python
...
-if 'LOCALSTACK_HOSTNAME' in os.environ:
- dynamodb_endpoint = 'http://%s:4566' % os.environ['LOCALSTACK_HOSTNAME']
- dynamodb = boto3.resource('dynamodb', endpoint_url=dynamodb_endpoint)
+if 'AWS_ENDPOINT_URL' in os.environ:
+ dynamodb = boto3.resource('dynamodb', endpoint_url=os.environ['AWS_ENDPOINT_URL'])
else:
dynamodb = boto3.resource('dynamodb')
...
```
-> Ideally, we want to make LocalStack's Lambda execution environment "LocalStack-agnostic", so that you are not required to adjust endpoints in your function code anymore. You want to help us with that? [Drop us a line in Slack](https://localstack-community.slack.com)!.
+In LocalStack Pro, no code changes are required using our [Transparent Endpoint Injection]({{< ref "user-guide/tools/transparent-endpoint-injection" >}}).
## Deploying to LocalStack
You can now deploy your Serverless service to LocalStack.
diff --git a/content/en/user-guide/integrations/terraform/index.md b/content/en/user-guide/integrations/terraform/index.md
index 66abd2bdd9..8fc0a49e48 100644
--- a/content/en/user-guide/integrations/terraform/index.md
+++ b/content/en/user-guide/integrations/terraform/index.md
@@ -1,86 +1,98 @@
---
title: "Terraform"
-tags: ["terraform", "infrastructure-as-code"]
weight: 5
description: >
Use the Terraform Infrastructure as Code framework with LocalStack
-aliases:
- - /integrations/terraform/
---
-
+## Introduction
-## Overview
+[Terraform](https://terraform.io/) is an Infrastructure-as-Code (IaC) framework developed by HashiCorp. It enables users to define and provision infrastructure using a high-level configuration language. Terraform uses HashiCorp Configuration Language (HCL) as its configuration syntax. HCL is a domain-specific language designed for writing configurations that define infrastructure elements and their relationships.
-Terraform allows you to automate the management of AWS resources such as containers, lambda functions and so on by declaring them in the HashiCorp Configuration Language (HCL).
-On this page we discuss how Terraform and LocalStack can be used together.
-If you are adapting an existing configuration, you might be able to skip certain steps at your own discretion.
+LocalStack supports Terraform via the [AWS provider](https://registry.terraform.io/providers/hashicorp/aws/latest/docs) through [custom service endpoints](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/custom-service-endpoints#localstack). You can configure Terraform to use LocalStack in two ways:
-## Example
+- Using the [`tflocal` wrapper script](https://github.com/localstack/terraform-local) to automatically configure the service endpoints for you.
+- Manually configuring the service endpoints in your Terraform configuration with additional maintenance.
-If you have not done so yet, [install Terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli?in=terraform/aws-get-started).
+In this guide, we will demonstrate how you can create local AWS resources using Terraform and LocalStack, by using the `tflocal` wrapper script and a manual configuration example.
-Using Terraform with LocalStack requires little extra configuration.
-Apart from some information Terraform expects there are basically only two things to take care of in the configuration.
+## `tflocal` wrapper script
-Before we start changing the configuration, create and change into a new directory for this sample
+`tflocal` is a small wrapper script to run Terraform against LocalStack. `tflocal` script uses the [Terraform Override mechanism](https://www.terraform.io/language/files/override) and creates a temporary file `localstack_providers_override.tf` to configure the endpoints for the AWS `provider` section. The endpoints for all services are configured to point to the LocalStack API (`http://localhost:4566` by default). It allows you to easily deploy your unmodified Terraform scripts against LocalStack.
-{{< command >}}
-$ mkdir terraform_quickstart && cd terraform_quickstart
-{{< / command >}}
+### Create a Terraform configuration
-Inside this directory, create a file called `main.tf`. The following changes go into this file.
+Create a new file named `main.tf` and add a minimal S3 bucket configuration to it. The following contents should be added in the `main.tf` file:
-Now we are adding a minimal S3 bucket configuration to the `main.tf` file:
```hcl
resource "aws_s3_bucket" "test-bucket" {
bucket = "my-bucket"
}
-
```
-## Using the `tflocal` script
+### Install the `tflocal` wrapper script
-We provide `tflocal`, a thin wrapper script around the `terraform` command line client. `tflocal` takes care of automatically configuring the local service endpoints, which allows you to easily deploy your unmodified Terraform scripts against LocalStack.
+To install the `tflocal` command, you can use `pip` (assuming you have a local Python installation):
-You can install the `tflocal` command via `pip` (requires a local Python installation):
{{< command >}}
$ pip install terraform-local
{{< / command >}}
-Once installed, the `tflocal` command should be available, with the same interface as the `terraform` command line:
+After installation, you can use the `tflocal` command, which has the same interface as the `terraform` command line.
+
{{< command >}}
$ tflocal --help
+
Usage: terraform [global options] [args]
...
+
{{< / command >}}
-{{< alert title="Note">}}
-Alternatively, you can also manually configure the local endpoints in the `provider` section of your Terraform script - see further below.
-{{< /alert >}}
-
-### Deployment
+### Deploy the Terraform configuration
-After starting LocalStack you can now deploy the S3 bucket via `tflocal` and interact with the (still empty) S3 bucket via `awslocal`!
-
-All you need to do is to initialize Terraform:
+Start your LocalStack container using your preferred method. Initialize Terraform using the following command:
{{< command >}}
$ tflocal init
{{< / command >}}
-... and then provision s3 bucket specified in the configuration:
+You can now provision the S3 bucket specified in the configuration:
+
{{< command >}}
$ tflocal apply
{{< / command >}}
+### Configuration
+
+| Environment Variable | Description |
+|--------------------------|-------------|
+| `TF_CMD` | Terraform command to call (default: `terraform`) |
+| `LOCALSTACK_HOSTNAME` | Host name of the target LocalStack instance |
+| `EDGE_PORT` | Port number of the target LocalStack instance |
+| `S3_HOSTNAME` | Special hostname to be used to connect to LocalStack S3 (default: `s3.localhost.localstack.cloud`) |
+| `USE_EXEC` | Whether to use `os.exec` instead of `subprocess.Popen` (try using this in case of I/O issues) |
+| `_ENDPOINT` | Setting a custom service endpoint, e.g., `COGNITO_IDP_ENDPOINT=http://example.com` |
+| `AWS_DEFAULT_REGION` | The AWS region to use (default: `us-east-1`, or determined from local credentials if `boto3` is installed) |
+| `CUSTOMIZE_ACCESS_KEY` | Enables you to override the static AWS Access Key ID. |
+| `AWS_ACCESS_KEY_ID` | AWS Access Key ID to use for multi-account setups (default: `test` -> account ID: `000000000000`) |
+
+{{< alert title="Note" >}}
+While using `CUSTOMIZE_ACCESS_KEY`, following cases are taking precedence over each other from top to bottom:
+1. If the `AWS_ACCESS_KEY_ID` environment variable is set.
+2. If `access_key` is configured in the Terraform AWS provider.
+3. If the `AWS_PROFILE` environment variable is set and properly configured.
+4. If the `AWS_DEFAULT_PROFILE` environment variable is set and configured.
+5. If credentials for the `default` profile are configured.
+6. If none of the above settings are present, it falls back to using the default `AWS_ACCESS_KEY_ID` mock value.
+{{< /alert >}}
+
## Manual Configuration
-As an alternative to using the `tflocal` script, you may also manually configure the local service endpoints and credentials. We'll walk through the detailed steps in the following sections.
+Instead of using the `tflocal` script, you have the option to manually configure the local service endpoints and credentials. The following sections will provide detailed steps for this manual configuration.
### General Configuration
-First, we have to specify mock credentials for the AWS provider:
+To begin, you need to define mock credentials for the AWS provider. Specify the following in your `main.tf` file:
```hcl
provider "aws" {
@@ -93,8 +105,7 @@ provider "aws" {
### Request Management
-Second, we need to avoid issues with routing and authentication (as we do not need it).
-Therefore we need to supply some general parameters:
+Next, to prevent routing and authentication issues (which are unnecessary in this context), you should provide some general parameters:
```hcl
provider "aws" {
@@ -115,8 +126,7 @@ provider "aws" {
### Services
-Additionally, we have to point the individual services to LocalStack.
-In case of S3, this looks like the following snippet, in this case we opted to use the virtual hosted-style endpoint.
+Furthermore, it's necessary to configure the individual services to use LocalStack. For S3, this configuration resembles the following snippet, where we've chosen to use the virtual hosted-style endpoint:
```hcl
endpoints {
@@ -125,13 +135,13 @@ In case of S3, this looks like the following snippet, in this case we opted to u
```
{{< alert title="Note">}}
-In case of issues resolving this DNS record, we can fallback to `http://localhost:4566` in combination with the provider setting `s3_use_path_style = true`. The S3 service endpoint is slightly
-different from the other service endpoints, because AWS is deprecating path-style based access for hosting buckets.
+If there are any difficulties resolving this DNS record, you can utilize `http://localhost:4566` as a fallback option in combination with setting `s3_use_path_style = true` in the provider. It's worth noting that the S3 service endpoint differs slightly from the other service endpoints due to AWS deprecating path-style based access for hosting buckets.
{{< /alert >}}
### Final Configuration
-The final (minimal) configuration to deploy an S3 bucket thus looks like this
+The final minimal configuration for deploying an S3 bucket via a `main.tf` file should resemble the following:
+
```hcl
provider "aws" {
@@ -156,8 +166,7 @@ resource "aws_s3_bucket" "test-bucket" {
### Endpoint Configuration
-Below is a configuration example with additional service endpoints.
-Again, these provider configurations should no longer be required if you use the `tflocal` script (see above).
+Here's a configuration example with additional service endpoints. Please note that these provider configurations may not be necessary if you use the `tflocal` script (as described above). You can save the following configuration in a file named `provider.tf` and include it in your Terraform configuration.
```hcl
provider "aws" {
@@ -197,10 +206,9 @@ provider "aws" {
}
```
-## Further Reading
-
-For more examples, you can take a look at our [Terraform sample](https://github.com/localstack/localstack-pro-samples/tree/master/terraform-resources) or the [Terraform LocalStack section](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/custom-service-endpoints#localstack).
-
-### Community Resources
+## Examples
-* [LocalStack with Terraform and Docker for running AWS locally. 2021-07-04](https://dev.to/mrwormhole/localstack-with-terraform-and-docker-for-running-aws-locally-3a6d)
+- [Serverless Container-based APIs with Amazon ECS & API Gateway](https://github.com/localstack/serverless-api-ecs-apigateway-sample)
+- [Full-Stack application with AWS Lambda, DynamoDB & S3 for shipment validation](https://github.com/localstack/shipment-list-demo)
+- [Search application with Lambda, Kinesis, Firehose, ElasticSearch, S3](https://github.com/localstack/sample-fuzzy-movie-search-lambda-kinesis-elasticsearch)
+- [LocalStack Terraform Samples](https://github.com/localstack/localstack-terraform-samples)
diff --git a/content/en/user-guide/integrations/terraform/logo-terraform-main.svg b/content/en/user-guide/integrations/terraform/logo-terraform-main.svg
deleted file mode 100644
index e98f8b71f1..0000000000
--- a/content/en/user-guide/integrations/terraform/logo-terraform-main.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/content/en/user-guide/tools/cloud-pods/_index.md b/content/en/user-guide/tools/cloud-pods/_index.md
index 53663d108f..be07fffe8e 100644
--- a/content/en/user-guide/tools/cloud-pods/_index.md
+++ b/content/en/user-guide/tools/cloud-pods/_index.md
@@ -7,20 +7,22 @@ description: >
## Introduction
-Cloud Pods are a mechanism that allows you to take a snapshot of the state in your current LocalStack instance, persist it to a storage backend, and easily share it with your team members.
+Cloud pods are persistent state snapshots of your LocalStack instance that can easily be stored, versioned, shared, and restored. Cloud Pods can be used for various purposes, such as:
-![Persistence versus Cloud Pods](pods-persistence.png)
+- Sharing state snapshots amongst your team to foster collaborative debugging.
+- Pre-seeding CI environments to bootstrap your testing pipelines automatically.
+- Preparing reproducible application development & testing environments locally.
-## Cloud Pods & Persistence
+You can save and load the persistent state of Cloud Pods, you can use the [Cloud Pods command-line interface (CLI)]({{< ref "pods-cli" >}}). LocalStack provides a remote storage backend that can be used to store the state of your running application and share it with your team members. You can interact with the Cloud Pods over the storage backend via the LocalStack Web Application.
-The [Persistence]({{< ref "persistence-mechanism" >}}) feature ensures that the service state persists across container restarts. In contrast, Cloud Pods provide more detailed control over your state.
+These Cloud Pods are securely stored within an AWS storage backend, where each user or organization is allocated a dedicated and isolated S3 bucket. The LocalStack Cloud Pods CLI utilizes secure S3 presigned URLs to directly interface with the S3 bucket, bypassing the need to transmit the state files through LocalStack Platform APIs.
-Rather than just restoring a state during LocalStack restarts, Cloud Pods enable you to capture snapshots of your local instance using the `save` command and inject these snapshots into a running instance using the `load` command, all without needing to perform a full restart.
+
-In addition, LocalStack provides a remote storage backend that can be used to store the state of your running application and share it with your team members.
+## Cloud Pods & Persistence
-## Getting started
+[Persistence]({{< ref "persistence-mechanism" >}}) ensures that the service state persists across container restarts. You can enable persistence via a LocalStack config flag `PERSISTENCE=1` to restore your local resources, in case you’re stopping and re-starting the LocalStack instance on the same machine.
-You can interact with Cloud Pods via the LocalStack Web Application. To save and load the persistent state of Cloud Pods, you can use the [Cloud Pods command-line interface (CLI)]({{< ref "pods-cli" >}}).
+In contrast, Cloud Pods provide more detailed control over your state. Rather than just restoring a state during LocalStack restarts, Cloud Pods enable you to capture snapshots of your local instance using the `save` command and inject these snapshots into a running instance using the `load` command, all without needing to perform a full restart.
-![Cloud Pods Web UI](pods-ui.png)
+
diff --git a/content/en/user-guide/tools/cloud-pods/cloud-pods-persistence.png b/content/en/user-guide/tools/cloud-pods/cloud-pods-persistence.png
new file mode 100644
index 0000000000..a2dc802423
Binary files /dev/null and b/content/en/user-guide/tools/cloud-pods/cloud-pods-persistence.png differ
diff --git a/content/en/user-guide/tools/cloud-pods/getting-started/index.md b/content/en/user-guide/tools/cloud-pods/getting-started/index.md
index 8404491a64..e3343bbfaf 100644
--- a/content/en/user-guide/tools/cloud-pods/getting-started/index.md
+++ b/content/en/user-guide/tools/cloud-pods/getting-started/index.md
@@ -1,5 +1,5 @@
---
-title: "Getting started with the Cloud Pods"
+title: "Getting started"
weight: 3
description: Get started with Cloud Pods to manage the state of your LocalStack instance state
---
@@ -84,7 +84,7 @@ $ localstack pod list
### Inspect the contents of a Cloud Pod
-4. Optional: You can inspect the contents of a Cloud Pod using the `inspect` command:
+You can inspect the contents of a Cloud Pod using the `inspect` command:
{{< command >}}
$ localstack pod inspect s3-test --format json
@@ -110,7 +110,7 @@ $ localstack pod inspect s3-test --format json
### Pull your Pod state
- On a separate machine, start LocalStack while ensuring the auth token is properly configured. Then, retrieve the previously created Cloud Pod by employing the `load` command, specifying the Cloud Pod name as the first argument:
+On a separate machine, start LocalStack while ensuring the auth token is properly configured. Then, retrieve the previously created Cloud Pod by employing the `load` command, specifying the Cloud Pod name as the first argument:
{{< command >}}
$ localstack pod load s3-test
@@ -119,7 +119,7 @@ Cloud Pod s3-test successfully loaded
{{< / command >}}
-Let's examine the S3 buckets within our Cloud Pod:
+You can examine the S3 buckets within the Cloud Pod:
{{< command >}}
$ awslocal s3 ls s3://test/
@@ -128,4 +128,4 @@ $ awslocal s3 ls s3://test/
{{< / command >}}
-For comprehensive instructions, navigate to our [Command-Line Interface (CLI) Guide]({{< ref "pods-cli" >}}). To access your Cloud Pods through the LocalStack Web Application, simply go to the [Cloud Pods page](https://app.localstack.cloud/pods).
+For comprehensive instructions, navigate to our [Command-Line Interface (CLI) Guide]({{< ref "pods-cli" >}}). To access your Cloud Pods through the LocalStack Web Application, navigate to the [Cloud Pods browser](https://app.localstack.cloud/pods).
diff --git a/content/en/user-guide/tools/cloud-pods/launchpad/index.md b/content/en/user-guide/tools/cloud-pods/launchpad/index.md
index bc4e6af63f..395554da39 100644
--- a/content/en/user-guide/tools/cloud-pods/launchpad/index.md
+++ b/content/en/user-guide/tools/cloud-pods/launchpad/index.md
@@ -1,5 +1,5 @@
---
-title: "Cloud Pods Launchpad"
+title: "Launchpad"
weight: 10
description: Get started with Cloud Pods Launchpad to share and inject Cloud Pods into your LocalStack instance via a URL
---
diff --git a/content/en/user-guide/tools/cloud-pods/pods-cli/index.md b/content/en/user-guide/tools/cloud-pods/pods-cli/index.md
index 83b783cbae..1ba7a35cca 100644
--- a/content/en/user-guide/tools/cloud-pods/pods-cli/index.md
+++ b/content/en/user-guide/tools/cloud-pods/pods-cli/index.md
@@ -1,5 +1,5 @@
---
-title: "Cloud Pods CLI command reference"
+title: "CLI command reference"
weight: 4
description: >
Reference guide for LocalStack Cloud Pods CLI commands and how to get started on using them!
diff --git a/content/en/user-guide/tools/cloud-pods/pods-persistence.excalidraw b/content/en/user-guide/tools/cloud-pods/pods-persistence.excalidraw
deleted file mode 100644
index 963a59124b..0000000000
--- a/content/en/user-guide/tools/cloud-pods/pods-persistence.excalidraw
+++ /dev/null
@@ -1,5871 +0,0 @@
-{
- "type": "excalidraw",
- "version": 2,
- "source": "https://excalidraw.com",
- "elements": [
- {
- "type": "rectangle",
- "version": 118,
- "versionNonce": 1277007635,
- "isDeleted": false,
- "id": "dc0yzXcwMsTJw3Zsj_B-p",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 658,
- "y": 480,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 469,
- "height": 236,
- "seed": 45076875,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 3222,
- "versionNonce": 1064916893,
- "isDeleted": false,
- "id": "7mh3dqwRV7RSn_VdbA3zf",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1040.5989042002427,
- "y": 490.60786869652327,
- "strokeColor": "#000000",
- "backgroundColor": "#ced4da",
- "width": 55.802191599515,
- "height": 55.7487557401058,
- "seed": 125929829,
- "groupIds": [
- "T8DmYTU7N9N-xi3mqwr4g",
- "MlVNh0XvXPkWnN7lmLOYt",
- "HBg4nribF0_cti61CRYt6",
- "E3DWboDqo82FTIpurW6x8",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 2456,
- "versionNonce": 287259827,
- "isDeleted": false,
- "id": "M9a5yKcdrRN738r4dwmjl",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1053.707305939686,
- "y": 521.2127777460672,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 49.01550113610471,
- "height": 24.049548854902643,
- "seed": 1380051819,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 22.93968213832026,
- -0.4809152058582334
- ],
- [
- 28.453735477152033,
- -1.1701689809794242
- ],
- [
- 27.3101913393028,
- -5.603336301412708
- ],
- [
- 29.127323867887267,
- -9.817195602489104
- ],
- [
- 31.9313377508325,
- -5.88530664710405
- ],
- [
- 31.555389034128446,
- -2.7209957594676273
- ],
- [
- 36.074716757475365,
- -5.814814783739394
- ],
- [
- 39.607154712693344,
- -4.52246237780562
- ],
- [
- 37.5080484203242,
- -1.6792826675231685
- ],
- [
- 32.886896224328915,
- 0.5059766657126598
- ],
- [
- 20.824933336496994,
- 12.920410439298978
- ],
- [
- 0.14725803132155185,
- 14.232353252413537
- ],
- [
- -9.40834642341137,
- 0.9649552851696301
- ],
- [
- -3.101653556976493,
- -0.5169403313409792
- ],
- [
- -0.2486153294989576,
- -0.01691982954598125
- ]
- ]
- },
- {
- "type": "rectangle",
- "version": 1361,
- "versionNonce": 17193981,
- "isDeleted": false,
- "id": "RMXKWMoN75u-epHKc5zSQ",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1048.2665954344961,
- "y": 514.4499448741212,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1538593989,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1416,
- "versionNonce": 1041968723,
- "isDeleted": false,
- "id": "vusMRJLjJx9cqm8g1hFJ1",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1054.289885627707,
- "y": 514.2290944612973,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 895960587,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1436,
- "versionNonce": 657708125,
- "isDeleted": false,
- "id": "L5TjC40QTWdI0DbdDBwo5",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1060.5942575517943,
- "y": 514.3294721281355,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 740308005,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1457,
- "versionNonce": 1978133491,
- "isDeleted": false,
- "id": "4fBgbom1ZYxSwo2Do8rmc",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1066.878551246547,
- "y": 514.0283189078475,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1279806635,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1499,
- "versionNonce": 768819389,
- "isDeleted": false,
- "id": "KYIUhujFTaHN5PEo0iqtP",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1072.8416033817862,
- "y": 514.1086250852702,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 883976069,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1403,
- "versionNonce": 1015805331,
- "isDeleted": false,
- "id": "V3JJfPqoInppFnMiV6dKV",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1054.1192189933597,
- "y": 508.38651170208095,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 2056224587,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1427,
- "versionNonce": 444997917,
- "isDeleted": false,
- "id": "8aDaW5RnhrqPoLEw7jT13",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1060.4436725167473,
- "y": 508.4668212494645,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1470312165,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1451,
- "versionNonce": 1363004211,
- "isDeleted": false,
- "id": "zclTW1K8D5bz3-ps9_Fle",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1066.848435587521,
- "y": 508.4668145095461,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1251433963,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1470,
- "versionNonce": 1119745405,
- "isDeleted": false,
- "id": "JaIKhCgCJ10UVo9TKSmVb",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1066.6376124945002,
- "y": 502.3230616802345,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1401293381,
- "groupIds": [
- "pUBNcOIMchX1P92N3Yq4d",
- "xJs4JgqN0kg3KwgNp7DPl",
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 1982,
- "versionNonce": 1214508243,
- "isDeleted": false,
- "id": "3X3RMhBSod00n1umzwK-1",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1039.5,
- "y": 551.0181258786621,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 58,
- "height": 23,
- "seed": 392849547,
- "groupIds": [
- "NVW3NjDWxkY3Sm8_KPeO9"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "fontSize": 17.313432835820894,
- "fontFamily": 1,
- "text": "Docker",
- "baseline": 16,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "Docker"
- },
- {
- "type": "rectangle",
- "version": 1431,
- "versionNonce": 1371291101,
- "isDeleted": false,
- "id": "5m0FxuTV6wpqnrANwykLe",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 739.4047504218665,
- "y": 606.8185852076086,
- "strokeColor": "#000000",
- "backgroundColor": "#fd7e1488",
- "width": 46.016907724220715,
- "height": 45.972842196665006,
- "seed": 380619973,
- "groupIds": [
- "nBeK4oshaAOrUNYd12Mhg",
- "YYAi39fnxz1j7WU7dT-fP",
- "bcDyvsyeTDGstTCo1xuBu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 597,
- "versionNonce": 1704254067,
- "isDeleted": false,
- "id": "TnAhaDksv9GHGP8Cs0ywk",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 757.2452334038455,
- "y": 625.9056702297075,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 13.7827979125469,
- "height": 19.200971773679065,
- "seed": 1184108043,
- "groupIds": [
- "iysL_h3Ef5XJVjVyqPvu2",
- "YYAi39fnxz1j7WU7dT-fP",
- "bcDyvsyeTDGstTCo1xuBu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -9.08781687083964,
- 18.17942325123661
- ],
- [
- -0.36968356176789224,
- 19.200971773679065
- ],
- [
- 4.694981041707261,
- 9.40952555857024
- ],
- [
- 0.64196971770532,
- 0.4026228977341337
- ]
- ]
- },
- {
- "type": "line",
- "version": 597,
- "versionNonce": 244480573,
- "isDeleted": false,
- "id": "O5xt-gt-H41eL3RNShQHf",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 774.725577806202,
- "y": 637.2540677567988,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 24.88823393696729,
- "height": 31.41029698635085,
- "seed": 654568485,
- "groupIds": [
- "iysL_h3Ef5XJVjVyqPvu2",
- "YYAi39fnxz1j7WU7dT-fP",
- "bcDyvsyeTDGstTCo1xuBu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -10.679588995577898,
- -23.14367791585215
- ],
- [
- -20.826691433529774,
- -23.55772273976314
- ],
- [
- -21.54330879282874,
- -16.41973274961491
- ],
- [
- -16.345700250132932,
- -15.705148493175425
- ],
- [
- -5.615635335620206,
- 7.439957163448829
- ],
- [
- 2.633995261592309,
- 7.852574246587713
- ],
- [
- 3.3449251441385472,
- 0.7138703860534286
- ],
- [
- 2.6339952615923092,
- 0
- ]
- ]
- },
- {
- "type": "text",
- "version": 925,
- "versionNonce": 899093523,
- "isDeleted": false,
- "id": "k1jxlt2K_WWJJ1bAcKCID",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 735.9132042839768,
- "y": 656.3346551410557,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 53,
- "height": 19,
- "seed": 748426411,
- "groupIds": [
- "bcDyvsyeTDGstTCo1xuBu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "fontSize": 14.277407721068569,
- "fontFamily": 1,
- "text": "Lambda",
- "baseline": 13,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "Lambda"
- },
- {
- "type": "rectangle",
- "version": 861,
- "versionNonce": 1646406301,
- "isDeleted": false,
- "id": "A2KxJmGw5S9YhbbXOgtgU",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 854.4595794677734,
- "y": 592.8821162187312,
- "strokeColor": "#000000",
- "backgroundColor": "#e6498088",
- "width": 48.5060284858817,
- "height": 48.5060284858817,
- "seed": 1565417515,
- "groupIds": [
- "1_d86-RSJwPiUErGl0exa",
- "sfWVuZZEKf-HNW8asDoVF",
- "Gw0mVQIoOJh5ubURzH0OJ",
- "eEBfR6yvLq0VVmrT39T2p",
- "1B-W6wxeW7IA90j_9lSOZ",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 562,
- "versionNonce": 1751194035,
- "isDeleted": false,
- "id": "XA9OjuIgutjkRxQz9Isvn",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 860.5590155650048,
- "y": 614.5758921364893,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 6.050445483416941,
- "height": 6.050445483416941,
- "seed": 761744389,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 617,
- "versionNonce": 488427261,
- "isDeleted": false,
- "id": "0FrlZU3q039eSGxd2T8VH",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 891.1601753764338,
- "y": 614.5211595196813,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 6.050445483416941,
- "height": 6.050445483416941,
- "seed": 948380363,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 1235,
- "versionNonce": 1796827987,
- "isDeleted": false,
- "id": "2YqWSozj446DzmU6pVuuV",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 873.2154532026263,
- "y": 611.8328213012952,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 1359577957,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 1308,
- "versionNonce": 2114185053,
- "isDeleted": false,
- "id": "hpclB3MYSVweEVMH7Fx2I",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 1.5707963267948957,
- "x": 878.1058647744113,
- "y": 607.4151933143644,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 1087279467,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 1339,
- "versionNonce": 1108773107,
- "isDeleted": false,
- "id": "lv3lfBJBflRKRqtscz6II",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 3.141592653589793,
- "x": 882.5288925015741,
- "y": 612.2738165419765,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 1714278085,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 1425,
- "versionNonce": 1999172541,
- "isDeleted": false,
- "id": "-G-ApolfNyCmpwx8U6ajF",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 4.71238898038469,
- "x": 877.6452590847257,
- "y": 616.7069880849486,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 930032651,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 836,
- "versionNonce": 585036435,
- "isDeleted": false,
- "id": "UEdAgfFQm4SipvQOwxH51",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 868.1200415046757,
- "y": 617.6121191960078,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 4.354510483088991,
- "height": 3.8511404174778803,
- "seed": 460434981,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 4.335154100342901,
- -0.04000200957072868
- ],
- [
- 2.425814632778208,
- -1.8875109260700502
- ],
- [
- 4.354510483088991,
- -0.03608997341490482
- ],
- [
- 2.2621050019605207,
- 1.9636294914078298
- ]
- ]
- },
- {
- "type": "line",
- "version": 852,
- "versionNonce": 883782685,
- "isDeleted": false,
- "id": "PK-y6XlAgMbVzrHeDRFuA",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 884.9596804395595,
- "y": 617.7036969632088,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 4.354510483088991,
- "height": 3.8511404174778803,
- "seed": 1348694699,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 4.335154100342901,
- -0.04000200957072868
- ],
- [
- 2.425814632778208,
- -1.8875109260700502
- ],
- [
- 4.354510483088991,
- -0.03608997341490482
- ],
- [
- 2.2621050019605207,
- 1.9636294914078298
- ]
- ]
- },
- {
- "type": "line",
- "version": 828,
- "versionNonce": 1311320115,
- "isDeleted": false,
- "id": "DT6jSyZDVedSwqH4Hz7y2",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 863.5577300863112,
- "y": 614.6085515825253,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 30.818693094481098,
- "height": 12.751716689806923,
- "seed": 1875026309,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.90799641761536,
- -5.7098419655431645
- ],
- [
- 6.164591390366896,
- -9.763696369331933
- ],
- [
- 11.250501301791413,
- -12.069688250117979
- ],
- [
- 16.354019561786966,
- -12.629282312016958
- ],
- [
- 22.173908389368236,
- -11.204723317078209
- ],
- [
- 26.441327817944078,
- -8.247124183355323
- ],
- [
- 29.495302355869885,
- -3.948363808274044
- ],
- [
- 30.818693094481098,
- 0.1224343777899633
- ]
- ]
- },
- {
- "type": "line",
- "version": 932,
- "versionNonce": 1652746365,
- "isDeleted": false,
- "id": "jPHKw49QZWs5HuXIPkuYF",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 3.141592653589793,
- "x": 863.3686742665074,
- "y": 633.0086923499592,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 30.818693094481098,
- "height": 12.751716689806923,
- "seed": 1549133131,
- "groupIds": [
- "ooX8kzZzGA0F2NrNj2Ify",
- "ZfTafyCBU0tP1xJd2zAqK",
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.90799641761536,
- -5.7098419655431645
- ],
- [
- 6.164591390366896,
- -9.763696369331933
- ],
- [
- 11.250501301791413,
- -12.069688250117979
- ],
- [
- 16.354019561786966,
- -12.629282312016958
- ],
- [
- 22.173908389368236,
- -11.204723317078209
- ],
- [
- 26.441327817944078,
- -8.247124183355323
- ],
- [
- 29.495302355869885,
- -3.948363808274044
- ],
- [
- 30.818693094481098,
- 0.1224343777899633
- ]
- ]
- },
- {
- "type": "text",
- "version": 990,
- "versionNonce": 702261715,
- "isDeleted": false,
- "id": "7K2_5_PMQqL3B_PDFXI_k",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 864.1788608946622,
- "y": 644.4848929914589,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 30,
- "height": 20,
- "seed": 677259493,
- "groupIds": [
- "hSjku0gyKFWhXu2GfhdwV"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "fontSize": 14.906392631848014,
- "fontFamily": 1,
- "text": "SQS",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "SQS"
- },
- {
- "type": "rectangle",
- "version": 765,
- "versionNonce": 845861085,
- "isDeleted": false,
- "id": "MQVr8SPc1kljB1MrwMZhM",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 960.3281735067386,
- "y": 619.8431424469766,
- "strokeColor": "#000000",
- "backgroundColor": "#40c05788",
- "width": 45.08858333697794,
- "height": 45.08858333697794,
- "seed": 1362427819,
- "groupIds": [
- "QmXHrWRIfCpqga75o_msf",
- "uGGI79D_I-XkvMYqGDN9w",
- "gpm9azxe1Xr2_10bmlOjw",
- "mneakhectrsr7-njp61EI"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 553,
- "versionNonce": 453834611,
- "isDeleted": false,
- "id": "3BeH7atdMvd7-_FhGA5Wi",
- "fillStyle": "hachure",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 969.759280190259,
- "y": 627.5105246332428,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 27.092728005103194,
- "height": 7.4504633369495235,
- "seed": 1214014597,
- "groupIds": [
- "gpm9azxe1Xr2_10bmlOjw",
- "mneakhectrsr7-njp61EI"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 1171,
- "versionNonce": 569814333,
- "isDeleted": false,
- "id": "t81tf9nboO78CNF0U5UD8",
- "fillStyle": "hachure",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 970.0072478547597,
- "y": 631.583179383557,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 26.531651017670935,
- "height": 28.04949004151749,
- "seed": 1164825163,
- "groupIds": [
- "gpm9azxe1Xr2_10bmlOjw",
- "mneakhectrsr7-njp61EI"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 2.6640422841470297,
- 22.27162725947569
- ],
- [
- 4.689147035307122,
- 26.31899874097432
- ],
- [
- 14.097743470126685,
- 28.04949004151749
- ],
- [
- 22.54210761223624,
- 26.604123931721972
- ],
- [
- 24.502479683553197,
- 22.13120621780769
- ],
- [
- 26.531651017670935,
- 0.06766795776770854
- ]
- ]
- },
- {
- "type": "ellipse",
- "version": 563,
- "versionNonce": 537104659,
- "isDeleted": false,
- "id": "qV5uCv4U8WzvX_YjlozUF",
- "fillStyle": "solid",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 981.6258520335084,
- "y": 638.693129745008,
- "strokeColor": "#000000",
- "backgroundColor": "#000",
- "width": 3.25494153048636,
- "height": 3.25494153048636,
- "seed": 1858571237,
- "groupIds": [
- "gpm9azxe1Xr2_10bmlOjw",
- "mneakhectrsr7-njp61EI"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 1249,
- "versionNonce": 8912285,
- "isDeleted": false,
- "id": "S6g5GWklXn3aw4fGnza0k",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 983.351028130357,
- "y": 640.47572030417,
- "strokeColor": "#000000",
- "backgroundColor": "#000",
- "width": 16.105670578471255,
- "height": 7.988873943876541,
- "seed": 1815302379,
- "groupIds": [
- "gpm9azxe1Xr2_10bmlOjw",
- "mneakhectrsr7-njp61EI"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 4.8655487597456455,
- 5.151254186154349
- ],
- [
- 11.781171541060457,
- 7.988873943876541
- ],
- [
- 15.881733984029527,
- 7.027743307044924
- ],
- [
- 16.105670578471255,
- 4.081068736628703
- ],
- [
- 12.444667956345313,
- 1.2166588755399743
- ]
- ]
- },
- {
- "type": "text",
- "version": 1013,
- "versionNonce": 708179635,
- "isDeleted": false,
- "id": "Ih7qmdyI5qd9A8et-ipJI",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 946.3724651752277,
- "y": 667.7649007893482,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 73,
- "height": 19,
- "seed": 538363717,
- "groupIds": [
- "mneakhectrsr7-njp61EI"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163615,
- "link": null,
- "locked": false,
- "fontSize": 13.85617720961053,
- "fontFamily": 1,
- "text": "S3 Bucket",
- "baseline": 13,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "S3 Bucket"
- },
- {
- "type": "text",
- "version": 64,
- "versionNonce": 894452221,
- "isDeleted": false,
- "id": "AH7XrYz5W7aI4gYXu6CIP",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 759,
- "y": 503,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 205,
- "height": 26,
- "seed": 166257451,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "fontSize": 20,
- "fontFamily": 1,
- "text": "LocalStack Instance",
- "baseline": 18,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "LocalStack Instance"
- },
- {
- "type": "rectangle",
- "version": 202,
- "versionNonce": 944416851,
- "isDeleted": false,
- "id": "4kGKSTYQSumGWC4KNHy_5",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1259.5,
- "y": 487,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 394,
- "height": 236,
- "seed": 27206891,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "boundElements": [
- {
- "id": "o0zeiTOEGAIyVBNsWmrr7",
- "type": "arrow"
- },
- {
- "id": "179rUzH33qFUin8BGfyUo",
- "type": "arrow"
- },
- {
- "id": "J-fdKBZtUctXCOElEXlim",
- "type": "arrow"
- }
- ],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 3295,
- "versionNonce": 1162934877,
- "isDeleted": false,
- "id": "Y794cS4j8j4LQeU6RsjUZ",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1562.098904200243,
- "y": 496.6078686965234,
- "strokeColor": "#000000",
- "backgroundColor": "#ced4da",
- "width": 55.802191599515,
- "height": 55.7487557401058,
- "seed": 1191326533,
- "groupIds": [
- "CvS5gdBbtGkRGzQq5kNRV",
- "FNoFSjWLpxTmcAabMRI6U",
- "8Lr6pRsPuD0eoXy7IF8Td",
- "y1O6zKmfv0GeIhmuMEVW-",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 2529,
- "versionNonce": 806888947,
- "isDeleted": false,
- "id": "AmmT7UUAT0uPY1L7oK353",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1575.2073059396862,
- "y": 527.2127777460673,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 49.01550113610471,
- "height": 24.049548854902643,
- "seed": 1205948299,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 22.93968213832026,
- -0.4809152058582334
- ],
- [
- 28.453735477152033,
- -1.1701689809794242
- ],
- [
- 27.3101913393028,
- -5.603336301412708
- ],
- [
- 29.127323867887267,
- -9.817195602489104
- ],
- [
- 31.9313377508325,
- -5.88530664710405
- ],
- [
- 31.555389034128446,
- -2.7209957594676273
- ],
- [
- 36.074716757475365,
- -5.814814783739394
- ],
- [
- 39.607154712693344,
- -4.52246237780562
- ],
- [
- 37.5080484203242,
- -1.6792826675231685
- ],
- [
- 32.886896224328915,
- 0.5059766657126598
- ],
- [
- 20.824933336496994,
- 12.920410439298978
- ],
- [
- 0.14725803132155185,
- 14.232353252413537
- ],
- [
- -9.40834642341137,
- 0.9649552851696301
- ],
- [
- -3.101653556976493,
- -0.5169403313409792
- ],
- [
- -0.2486153294989576,
- -0.01691982954598125
- ]
- ]
- },
- {
- "type": "rectangle",
- "version": 1434,
- "versionNonce": 425436861,
- "isDeleted": false,
- "id": "VrUYmqxZMPMZidCjwIhlI",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1569.7665954344961,
- "y": 520.4499448741212,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 491094693,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1489,
- "versionNonce": 2024075155,
- "isDeleted": false,
- "id": "sQcedaAa1zXV0ZpN9g-Hj",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1575.789885627707,
- "y": 520.2290944612973,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1707419179,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1509,
- "versionNonce": 68273949,
- "isDeleted": false,
- "id": "XA6Nw-DQPyZE6Ix7KzPwG",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1582.0942575517943,
- "y": 520.3294721281354,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 556262917,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1530,
- "versionNonce": 1411876147,
- "isDeleted": false,
- "id": "oqRZ6fsvMfXDjQUj-GFqo",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1588.378551246547,
- "y": 520.0283189078475,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1379215563,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1572,
- "versionNonce": 132438909,
- "isDeleted": false,
- "id": "CbFaH8WdX6dxSHshoH8J9",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1594.3416033817862,
- "y": 520.1086250852702,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1973869925,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1476,
- "versionNonce": 2047239891,
- "isDeleted": false,
- "id": "vZtZIuU58uKLO_iNAk-wC",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1575.61921899336,
- "y": 514.386511702081,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1120655211,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1500,
- "versionNonce": 1561748445,
- "isDeleted": false,
- "id": "ZDnWF1WATeHM8b6JVl6wv",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1581.943672516747,
- "y": 514.4668212494644,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 34597061,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1524,
- "versionNonce": 1893209203,
- "isDeleted": false,
- "id": "q8CvYjusEqpmHfOeYl8md",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1588.3484355875207,
- "y": 514.4668145095461,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1439937035,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 1543,
- "versionNonce": 934797373,
- "isDeleted": false,
- "id": "FKoMvJMcmCCclxLZQ5LBX",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1588.1376124945,
- "y": 508.32306168023456,
- "strokeColor": "#0091e2",
- "backgroundColor": "#0091e2",
- "width": 4.818633502554377,
- "height": 4.818633502554377,
- "seed": 1744865317,
- "groupIds": [
- "NG_T_1__ZT8UyBXCe3r3H",
- "zgTGr2jnlQBZdPsyx8Inr",
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 2055,
- "versionNonce": 677580307,
- "isDeleted": false,
- "id": "tHgAg06bJzlQEdac-ig4Z",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1561,
- "y": 557.018125878662,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 58,
- "height": 23,
- "seed": 2085042347,
- "groupIds": [
- "a2nEw46fp42NUT6IEuvJ6"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "fontSize": 17.313432835820894,
- "fontFamily": 1,
- "text": "Docker",
- "baseline": 16,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "Docker"
- },
- {
- "type": "rectangle",
- "version": 1491,
- "versionNonce": 1303040157,
- "isDeleted": false,
- "id": "CpWK8doS2bCtwZACyyB6E",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1287.9047504218665,
- "y": 612.8185852076085,
- "strokeColor": "#000000",
- "backgroundColor": "#fd7e1488",
- "width": 46.016907724220715,
- "height": 45.972842196665006,
- "seed": 963001221,
- "groupIds": [
- "-s3WGcpKffwskZD0-SgwN",
- "sZ4IoywI1PRNHplcUf4Ib",
- "3xk2OmLlk1R6WdgraPc95"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 657,
- "versionNonce": 1402852275,
- "isDeleted": false,
- "id": "CMy9m4TpFCCEfXq1fQV0i",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1305.7452334038455,
- "y": 631.9056702297075,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 13.7827979125469,
- "height": 19.200971773679065,
- "seed": 600894283,
- "groupIds": [
- "7Mq-BY3LeN_SYBq8N5JeR",
- "sZ4IoywI1PRNHplcUf4Ib",
- "3xk2OmLlk1R6WdgraPc95"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -9.08781687083964,
- 18.17942325123661
- ],
- [
- -0.36968356176789224,
- 19.200971773679065
- ],
- [
- 4.694981041707261,
- 9.40952555857024
- ],
- [
- 0.64196971770532,
- 0.4026228977341337
- ]
- ]
- },
- {
- "type": "line",
- "version": 657,
- "versionNonce": 480294141,
- "isDeleted": false,
- "id": "aayiVwdhtvg9PD50xZvN0",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1323.225577806202,
- "y": 643.2540677567988,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 24.88823393696729,
- "height": 31.41029698635085,
- "seed": 1853784805,
- "groupIds": [
- "7Mq-BY3LeN_SYBq8N5JeR",
- "sZ4IoywI1PRNHplcUf4Ib",
- "3xk2OmLlk1R6WdgraPc95"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -10.679588995577898,
- -23.14367791585215
- ],
- [
- -20.826691433529774,
- -23.55772273976314
- ],
- [
- -21.54330879282874,
- -16.41973274961491
- ],
- [
- -16.345700250132932,
- -15.705148493175425
- ],
- [
- -5.615635335620206,
- 7.439957163448829
- ],
- [
- 2.633995261592309,
- 7.852574246587713
- ],
- [
- 3.3449251441385472,
- 0.7138703860534286
- ],
- [
- 2.6339952615923092,
- 0
- ]
- ]
- },
- {
- "type": "text",
- "version": 985,
- "versionNonce": 45016403,
- "isDeleted": false,
- "id": "IDjkEbksh3i6iQ7hC9g19",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1284.413204283977,
- "y": 662.3346551410557,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 53,
- "height": 19,
- "seed": 550193643,
- "groupIds": [
- "3xk2OmLlk1R6WdgraPc95"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "fontSize": 14.277407721068569,
- "fontFamily": 1,
- "text": "Lambda",
- "baseline": 13,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "Lambda"
- },
- {
- "type": "rectangle",
- "version": 929,
- "versionNonce": 1880821085,
- "isDeleted": false,
- "id": "4YUQ1p782Yo-HO9Bu7dFz",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1387.9595794677734,
- "y": 599.8821162187312,
- "strokeColor": "#000000",
- "backgroundColor": "#e6498088",
- "width": 48.5060284858817,
- "height": 48.5060284858817,
- "seed": 467066437,
- "groupIds": [
- "YJ0MCWQeLOoi8qqRKnVFD",
- "xeeAQqpyYELFv74CwPRV0",
- "uzO6BApuMEpNVXpscGDeX",
- "7Q0abPvD6BtoHJiEbLGYR",
- "rET81xnDVVgEroRjwTeE3",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 630,
- "versionNonce": 2095891187,
- "isDeleted": false,
- "id": "j6tLO77KfFj3tAfFKob9y",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1394.0590155650048,
- "y": 621.5758921364893,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 6.050445483416941,
- "height": 6.050445483416941,
- "seed": 1480643723,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 685,
- "versionNonce": 661346749,
- "isDeleted": false,
- "id": "VkRoa5tTA_zDF7BFamM4r",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1424.660175376434,
- "y": 621.5211595196813,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 6.050445483416941,
- "height": 6.050445483416941,
- "seed": 1749863845,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 1303,
- "versionNonce": 1524493459,
- "isDeleted": false,
- "id": "k7oMU2ZoUhoGXa2DictKw",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1406.7154532026263,
- "y": 618.8328213012951,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 703335211,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 1376,
- "versionNonce": 1001593373,
- "isDeleted": false,
- "id": "eeBflyVvqUgbVmgeexdlG",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 1.5707963267948957,
- "x": 1411.6058647744112,
- "y": 614.4151933143644,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 1124978949,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 1407,
- "versionNonce": 1614340659,
- "isDeleted": false,
- "id": "ChkchmPlRT0K0myMG_WgG",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 3.141592653589793,
- "x": 1416.028892501574,
- "y": 619.2738165419764,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 439840203,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 1493,
- "versionNonce": 98815613,
- "isDeleted": false,
- "id": "FiHsAnxBB97CgUYGtCFVv",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 4.71238898038469,
- "x": 1411.1452590847257,
- "y": 623.7069880849485,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 1.9815932788318598,
- "height": 11.106369501920385,
- "seed": 1503094885,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.1435070144772606,
- 2.6206106388072614
- ],
- [
- 1.5230381234139412,
- 5.6753674806948124
- ],
- [
- 0.9705026789912763,
- 8.642174123234195
- ],
- [
- -0.4585551554179184,
- 11.106369501920385
- ]
- ]
- },
- {
- "type": "line",
- "version": 904,
- "versionNonce": 367272915,
- "isDeleted": false,
- "id": "SeykDbqrcrPGCpva8swq8",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1401.6200415046756,
- "y": 624.6121191960078,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 4.354510483088991,
- "height": 3.8511404174778803,
- "seed": 1010662507,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 4.335154100342901,
- -0.04000200957072868
- ],
- [
- 2.425814632778208,
- -1.8875109260700502
- ],
- [
- 4.354510483088991,
- -0.03608997341490482
- ],
- [
- 2.2621050019605207,
- 1.9636294914078298
- ]
- ]
- },
- {
- "type": "line",
- "version": 920,
- "versionNonce": 1153365725,
- "isDeleted": false,
- "id": "qVPO4p0tUzx01Qnq_PR65",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1418.4596804395596,
- "y": 624.7036969632088,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 4.354510483088991,
- "height": 3.8511404174778803,
- "seed": 1303843781,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 4.335154100342901,
- -0.04000200957072868
- ],
- [
- 2.425814632778208,
- -1.8875109260700502
- ],
- [
- 4.354510483088991,
- -0.03608997341490482
- ],
- [
- 2.2621050019605207,
- 1.9636294914078298
- ]
- ]
- },
- {
- "type": "line",
- "version": 896,
- "versionNonce": 603337075,
- "isDeleted": false,
- "id": "0KSJEytenuVupQniOSc4j",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1397.057730086311,
- "y": 621.6085515825253,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 30.818693094481098,
- "height": 12.751716689806923,
- "seed": 1539880715,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.90799641761536,
- -5.7098419655431645
- ],
- [
- 6.164591390366896,
- -9.763696369331933
- ],
- [
- 11.250501301791413,
- -12.069688250117979
- ],
- [
- 16.354019561786966,
- -12.629282312016958
- ],
- [
- 22.173908389368236,
- -11.204723317078209
- ],
- [
- 26.441327817944078,
- -8.247124183355323
- ],
- [
- 29.495302355869885,
- -3.948363808274044
- ],
- [
- 30.818693094481098,
- 0.1224343777899633
- ]
- ]
- },
- {
- "type": "line",
- "version": 1000,
- "versionNonce": 1658196797,
- "isDeleted": false,
- "id": "awM7Uam0eU25m4tThMB0X",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 3.141592653589793,
- "x": 1396.8686742665072,
- "y": 640.0086923499593,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 30.818693094481098,
- "height": 12.751716689806923,
- "seed": 730485541,
- "groupIds": [
- "1udZVF9uwHmc1jSP8r3F7",
- "e3xZ-8zY-LQ0feCEuR-_T",
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1.90799641761536,
- -5.7098419655431645
- ],
- [
- 6.164591390366896,
- -9.763696369331933
- ],
- [
- 11.250501301791413,
- -12.069688250117979
- ],
- [
- 16.354019561786966,
- -12.629282312016958
- ],
- [
- 22.173908389368236,
- -11.204723317078209
- ],
- [
- 26.441327817944078,
- -8.247124183355323
- ],
- [
- 29.495302355869885,
- -3.948363808274044
- ],
- [
- 30.818693094481098,
- 0.1224343777899633
- ]
- ]
- },
- {
- "type": "text",
- "version": 1058,
- "versionNonce": 1807059731,
- "isDeleted": false,
- "id": "HlKqevFcPjarLZzeXwrKy",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1397.6788608946622,
- "y": 651.4848929914588,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 30,
- "height": 20,
- "seed": 1733533099,
- "groupIds": [
- "btxUQWXkmd_NIqpDiD4iu"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "fontSize": 14.906392631848014,
- "fontFamily": 1,
- "text": "SQS",
- "baseline": 14,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "SQS"
- },
- {
- "type": "rectangle",
- "version": 823,
- "versionNonce": 2089460637,
- "isDeleted": false,
- "id": "qU9rWnoDLrAMP3w39BIZ7",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1504.8281735067385,
- "y": 626.8431424469766,
- "strokeColor": "#000000",
- "backgroundColor": "#40c05788",
- "width": 45.08858333697794,
- "height": 45.08858333697794,
- "seed": 528393861,
- "groupIds": [
- "3tPFSEYOu3g_Ful90f_l2",
- "-E7AWwl2teHD5Jiy-Mrlw",
- "BiKvN0Wv1gHGGsaVxIGWH",
- "Gv-A0-kg2OCCkrjTTC54U"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 611,
- "versionNonce": 1637396659,
- "isDeleted": false,
- "id": "3euWVCia8HZ3PVcUwrpwd",
- "fillStyle": "hachure",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1514.259280190259,
- "y": 634.5105246332428,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 27.092728005103194,
- "height": 7.4504633369495235,
- "seed": 436777035,
- "groupIds": [
- "BiKvN0Wv1gHGGsaVxIGWH",
- "Gv-A0-kg2OCCkrjTTC54U"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 1229,
- "versionNonce": 638461949,
- "isDeleted": false,
- "id": "rCFVUQ0NEN_Q5U_JCkenJ",
- "fillStyle": "hachure",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1514.5072478547597,
- "y": 638.5831793835569,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 26.531651017670935,
- "height": 28.04949004151749,
- "seed": 1817284069,
- "groupIds": [
- "BiKvN0Wv1gHGGsaVxIGWH",
- "Gv-A0-kg2OCCkrjTTC54U"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 2.6640422841470297,
- 22.27162725947569
- ],
- [
- 4.689147035307122,
- 26.31899874097432
- ],
- [
- 14.097743470126685,
- 28.04949004151749
- ],
- [
- 22.54210761223624,
- 26.604123931721972
- ],
- [
- 24.502479683553197,
- 22.13120621780769
- ],
- [
- 26.531651017670935,
- 0.06766795776770854
- ]
- ]
- },
- {
- "type": "ellipse",
- "version": 621,
- "versionNonce": 658907731,
- "isDeleted": false,
- "id": "vQYsGs83w3O_R2HwmoPPP",
- "fillStyle": "solid",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1526.1258520335084,
- "y": 645.693129745008,
- "strokeColor": "#000000",
- "backgroundColor": "#000",
- "width": 3.25494153048636,
- "height": 3.25494153048636,
- "seed": 1707241195,
- "groupIds": [
- "BiKvN0Wv1gHGGsaVxIGWH",
- "Gv-A0-kg2OCCkrjTTC54U"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 1307,
- "versionNonce": 1902256221,
- "isDeleted": false,
- "id": "BO1iLlC9BaiBf83aZMVRF",
- "fillStyle": "solid",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 1527.851028130357,
- "y": 647.47572030417,
- "strokeColor": "#000000",
- "backgroundColor": "#000",
- "width": 16.105670578471255,
- "height": 7.988873943876541,
- "seed": 554731845,
- "groupIds": [
- "BiKvN0Wv1gHGGsaVxIGWH",
- "Gv-A0-kg2OCCkrjTTC54U"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 4.8655487597456455,
- 5.151254186154349
- ],
- [
- 11.781171541060457,
- 7.988873943876541
- ],
- [
- 15.881733984029527,
- 7.027743307044924
- ],
- [
- 16.105670578471255,
- 4.081068736628703
- ],
- [
- 12.444667956345313,
- 1.2166588755399743
- ]
- ]
- },
- {
- "type": "text",
- "version": 1071,
- "versionNonce": 1704222707,
- "isDeleted": false,
- "id": "JoirjU2ZL5yE2fuP_V_s5",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1490.8724651752277,
- "y": 674.7649007893483,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 73,
- "height": 19,
- "seed": 487283083,
- "groupIds": [
- "Gv-A0-kg2OCCkrjTTC54U"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "fontSize": 13.85617720961053,
- "fontFamily": 1,
- "text": "S3 Bucket",
- "baseline": 13,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "S3 Bucket"
- },
- {
- "type": "text",
- "version": 130,
- "versionNonce": 878185661,
- "isDeleted": false,
- "id": "ff8ubEnYKm7-GvBZsXlP-",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1300.5,
- "y": 510,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 205,
- "height": 26,
- "seed": 253302949,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163616,
- "link": null,
- "locked": false,
- "fontSize": 20,
- "fontFamily": 1,
- "text": "LocalStack Instance",
- "baseline": 18,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "LocalStack Instance"
- },
- {
- "type": "rectangle",
- "version": 72,
- "versionNonce": 1720314259,
- "isDeleted": false,
- "id": "WmXSFwdBeGSvNqw1pqRJO",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 713,
- "y": 572,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 325,
- "height": 130,
- "seed": 1027450405,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "boundElements": [
- {
- "id": "rDgdCwrbbZSzJwx8FJDMf",
- "type": "arrow"
- },
- {
- "id": "gmMnrjRNacS0BUhT9U353",
- "type": "arrow"
- }
- ],
- "updated": 1672821163616,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 70,
- "versionNonce": 244411677,
- "isDeleted": false,
- "id": "ODFCMkGdcq6eqMDbji-x-",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1277,
- "y": 585,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 307,
- "height": 122,
- "seed": 769369957,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "boundElements": [
- {
- "id": "DjRq7bdTrmllRxVwWDJlE",
- "type": "arrow"
- },
- {
- "id": "ezxjSdHzIDkuaAX-mFRop",
- "type": "arrow"
- }
- ],
- "updated": 1672821163617,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 153,
- "versionNonce": 1868382003,
- "isDeleted": false,
- "id": "MkpVhDXXllfA221ci6If7",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1788,
- "y": 469,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 332,
- "height": 265,
- "seed": 1588291909,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "boundElements": [
- {
- "id": "o0zeiTOEGAIyVBNsWmrr7",
- "type": "arrow"
- }
- ],
- "updated": 1672821163617,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 863,
- "versionNonce": 796901757,
- "isDeleted": false,
- "id": "ISLNoSk4ydIzi_U6azQlj",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 2064.3658200015234,
- "y": 484.77024667022,
- "strokeColor": "#000000",
- "backgroundColor": "#ced4da",
- "width": 37.26835999695436,
- "height": 69.56760532764793,
- "seed": 1374064011,
- "groupIds": [
- "qoqjBAF4R6G-mdcB-W20x"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 708,
- "versionNonce": 1517609171,
- "isDeleted": false,
- "id": "BudO4RxfRX7C_YAzB_-zQ",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 2068.850377334654,
- "y": 492.4661973361757,
- "strokeColor": "#000000",
- "backgroundColor": "#ced4da",
- "width": 28.572409330998198,
- "height": 2.2737367544323206e-13,
- "seed": 947037227,
- "groupIds": [
- "qoqjBAF4R6G-mdcB-W20x"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 28.572409330998198,
- 2.2737367544323206e-13
- ]
- ]
- },
- {
- "type": "line",
- "version": 740,
- "versionNonce": 1550092765,
- "isDeleted": false,
- "id": "DYqTQoRPw1lqwdskcSqRG",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 2068.713795334501,
- "y": 498.86999511378406,
- "strokeColor": "#000000",
- "backgroundColor": "#ced4da",
- "width": 28.572409330998198,
- "height": 2.2737367544323206e-13,
- "seed": 949569541,
- "groupIds": [
- "qoqjBAF4R6G-mdcB-W20x"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 28.572409330998198,
- 2.2737367544323206e-13
- ]
- ]
- },
- {
- "type": "line",
- "version": 722,
- "versionNonce": 1902595699,
- "isDeleted": false,
- "id": "xIJleNr-I4W5yV-XcZa_V",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 2068.6829100007617,
- "y": 505.2737928913933,
- "strokeColor": "#000000",
- "backgroundColor": "#ced4da",
- "width": 28.572409330998198,
- "height": 2.2737367544323206e-13,
- "seed": 780330699,
- "groupIds": [
- "qoqjBAF4R6G-mdcB-W20x"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 28.572409330998198,
- 2.2737367544323206e-13
- ]
- ]
- },
- {
- "type": "line",
- "version": 726,
- "versionNonce": 911296061,
- "isDeleted": false,
- "id": "ETjzDS36R2uN8MeCKmCL1",
- "fillStyle": "cross-hatch",
- "strokeWidth": 2,
- "strokeStyle": "solid",
- "roughness": 0,
- "opacity": 100,
- "angle": 0,
- "x": 2068.6829100007617,
- "y": 511.67759066900214,
- "strokeColor": "#000000",
- "backgroundColor": "#ced4da",
- "width": 28.572409330998198,
- "height": 2.2737367544323206e-13,
- "seed": 479985509,
- "groupIds": [
- "qoqjBAF4R6G-mdcB-W20x"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 28.572409330998198,
- 2.2737367544323206e-13
- ]
- ]
- },
- {
- "type": "text",
- "version": 139,
- "versionNonce": 117114899,
- "isDeleted": false,
- "id": "9YYYSQBwk-6QF97mTBR1X",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1830,
- "y": 488,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 197,
- "height": 52,
- "seed": 1058284907,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "fontSize": 20,
- "fontFamily": 1,
- "text": "Secure Remote\nCloud Pods Storage",
- "baseline": 44,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "Secure Remote\nCloud Pods Storage"
- },
- {
- "type": "line",
- "version": 1538,
- "versionNonce": 1076328093,
- "isDeleted": false,
- "id": "8b8CO4qd-rHBU9kweVikG",
- "fillStyle": "solid",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1865.1550142246545,
- "y": 613.5067307215463,
- "strokeColor": "#000000",
- "backgroundColor": "#326ce5",
- "width": 58.57376350704347,
- "height": 57.331796563733654,
- "seed": 2025692485,
- "groupIds": [
- "Yy9GQJ7KvDC8K0EsD5ST2",
- "BGHhbTA3xCpZDMJV1knUA",
- "Jh4vROo1aEm7JItqRE-mo",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -24.17725557524773,
- 11.564782997834682
- ],
- [
- -29.162256724783358,
- 36.29373387618332
- ],
- [
- -12.462502873839048,
- 57.331796563733654
- ],
- [
- 15.57812859229879,
- 57.2087669573737
- ],
- [
- 29.411506782260116,
- 34.69434899350401
- ],
- [
- 23.928005517770945,
- 10.334486934235251
- ],
- [
- 0,
- 0
- ]
- ]
- },
- {
- "type": "text",
- "version": 815,
- "versionNonce": 1361481139,
- "isDeleted": false,
- "id": "zz00RcQJKm6PBn6HF-AZk",
- "fillStyle": "hachure",
- "strokeWidth": 4,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1854.9919834998975,
- "y": 655.7494434826374,
- "strokeColor": "#fff",
- "backgroundColor": "transparent",
- "width": 10,
- "height": 16,
- "seed": 828999051,
- "groupIds": [
- "BGHhbTA3xCpZDMJV1knUA",
- "Jh4vROo1aEm7JItqRE-mo",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": null,
- "boundElements": [
- {
- "id": "_6Y5AiSRWo948ZYNKx2UG",
- "type": "arrow"
- }
- ],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "fontSize": 11.344659712583827,
- "fontFamily": 1,
- "text": "V1",
- "baseline": 11,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "V1"
- },
- {
- "type": "arrow",
- "version": 1695,
- "versionNonce": 613980925,
- "isDeleted": false,
- "id": "gDVhOcFVecgSdwp07xsb9",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1865.2830876663459,
- "y": 634.8588456017383,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 0.4842935113049407,
- "height": 10.275845783237628,
- "seed": 402893989,
- "groupIds": [
- "08a9ttctdI15CLEPFmeM5",
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "hjdd7VTY75MvqWNqABjXJ",
- "focus": 0.02429501626026551,
- "gap": 1.3398768659701448
- },
- "endBinding": {
- "focus": -0.17817963642461448,
- "gap": 10.614752097661315,
- "elementId": "zz00RcQJKm6PBn6HF-AZk"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -0.4842935113049407,
- 10.275845783237628
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1230,
- "versionNonce": 51404627,
- "isDeleted": false,
- "id": "-Ejw5B_W-Y-Jvs_E0u-wJ",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1865.8352169265793,
- "y": 648.594417127702,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 10.528650781649107,
- "height": 4.9699838179610865,
- "seed": 483826731,
- "groupIds": [
- "08a9ttctdI15CLEPFmeM5",
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "hjdd7VTY75MvqWNqABjXJ",
- "focus": 4.03235588544493,
- "gap": 13.602562456370613
- },
- "endBinding": {
- "focus": 1.165866277384591,
- "gap": 12.125010172896339,
- "elementId": "zz00RcQJKm6PBn6HF-AZk"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 10.528650781649107,
- -4.9699838179610865
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1744,
- "versionNonce": 1009136477,
- "isDeleted": false,
- "id": "_6Y5AiSRWo948ZYNKx2UG",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1876.257252453451,
- "y": 631.3717410537502,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 5.451155684298101,
- "height": 18.272030445853716,
- "seed": 915460101,
- "groupIds": [
- "08a9ttctdI15CLEPFmeM5",
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "hjdd7VTY75MvqWNqABjXJ",
- "focus": -1.0396343548787632,
- "gap": 2.271808131242695
- },
- "endBinding": {
- "elementId": "zz00RcQJKm6PBn6HF-AZk",
- "focus": 0.8943034120564926,
- "gap": 6.105671983033517
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -5.451155684298101,
- 18.272030445853716
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1091,
- "versionNonce": 655293683,
- "isDeleted": false,
- "id": "kvrZd-aiQGo8O6m8JT_JW",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1865.8352169265793,
- "y": 649.5462711639034,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 12.785315797749856,
- "height": 7.909857580366441,
- "seed": 1403510475,
- "groupIds": [
- "08a9ttctdI15CLEPFmeM5",
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "hjdd7VTY75MvqWNqABjXJ",
- "focus": -4.225340680293061,
- "gap": 14.468254949013868
- },
- "endBinding": {
- "focus": -0.9505420481460404,
- "gap": 14.113029899100354,
- "elementId": "zz00RcQJKm6PBn6HF-AZk"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -12.785315797749856,
- -7.909857580366441
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1210,
- "versionNonce": 1394720701,
- "isDeleted": false,
- "id": "w9nB686iMJgqgkgoRvF7j",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1856.012623458014,
- "y": 630.64559962063,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 0.03919894525620293,
- "height": 0.13702503230410915,
- "seed": 40011621,
- "groupIds": [
- "08a9ttctdI15CLEPFmeM5",
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "hjdd7VTY75MvqWNqABjXJ",
- "focus": -0.8589310764378086,
- "gap": 1.3621805528460253
- },
- "endBinding": {
- "focus": 0.8589310764378071,
- "gap": 1.2212621408102504,
- "elementId": "hjdd7VTY75MvqWNqABjXJ"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0.03919894525620293,
- -0.13702503230410915
- ]
- ]
- },
- {
- "type": "diamond",
- "version": 782,
- "versionNonce": 950593171,
- "isDeleted": false,
- "id": "hjdd7VTY75MvqWNqABjXJ",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1855.0454662226864,
- "y": 623.773455119109,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 21.57950140778498,
- "height": 9.864549556354927,
- "seed": 813157739,
- "groupIds": [
- "08a9ttctdI15CLEPFmeM5",
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": null,
- "boundElements": [
- {
- "id": "gDVhOcFVecgSdwp07xsb9",
- "type": "arrow"
- },
- {
- "id": "-Ejw5B_W-Y-Jvs_E0u-wJ",
- "type": "arrow"
- },
- {
- "id": "_6Y5AiSRWo948ZYNKx2UG",
- "type": "arrow"
- },
- {
- "id": "kvrZd-aiQGo8O6m8JT_JW",
- "type": "arrow"
- },
- {
- "id": "w9nB686iMJgqgkgoRvF7j",
- "type": "arrow"
- }
- ],
- "updated": 1672821163617,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 452,
- "versionNonce": 799850525,
- "isDeleted": false,
- "id": "K9xSqtpRdzrK7v03ccC8b",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1871.4392692766712,
- "y": 633.4332270075734,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 4.996606292516154,
- "height": 9.124237577638173,
- "seed": 231101125,
- "groupIds": [
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -4.996606292516154,
- 9.124237577638173
- ]
- ]
- },
- {
- "type": "line",
- "version": 455,
- "versionNonce": 2123668531,
- "isDeleted": false,
- "id": "i9iKx68vsoBI1bIUlvnEL",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1858.1874004139115,
- "y": 631.0435457372396,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 5.431093796213203,
- "height": 8.47250632209258,
- "seed": 1452337163,
- "groupIds": [
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 5.431093796213203,
- 8.47250632209258
- ]
- ]
- },
- {
- "type": "line",
- "version": 486,
- "versionNonce": 1471722621,
- "isDeleted": false,
- "id": "UTQnf4AepGKakp-MA3VFx",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1875.023791182172,
- "y": 635.6056645260587,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 4.996606292516154,
- "height": 9.124237577638173,
- "seed": 1163506213,
- "groupIds": [
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -4.996606292516154,
- 9.124237577638173
- ]
- ]
- },
- {
- "type": "line",
- "version": 494,
- "versionNonce": 616078803,
- "isDeleted": false,
- "id": "IHTEkXv7kVATashbM1C4S",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1856.9925597787444,
- "y": 636.3660176575286,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 5.431093796213203,
- "height": 8.47250632209258,
- "seed": 468561579,
- "groupIds": [
- "yqE9_valpO08cQYrxrOB1",
- "F0O7YK6mBZVELJan4y2gO"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 5.431093796213203,
- 8.47250632209258
- ]
- ]
- },
- {
- "type": "line",
- "version": 1561,
- "versionNonce": 386342109,
- "isDeleted": false,
- "id": "1MfbO6r4tcuMRlnEFSnvg",
- "fillStyle": "solid",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1957.8771677797904,
- "y": 640.9871081916895,
- "strokeColor": "#000000",
- "backgroundColor": "#326ce5",
- "width": 58.573763507043466,
- "height": 57.331796563733654,
- "seed": 54583275,
- "groupIds": [
- "fNdz8D5iqisd1zA-_lPey",
- "P-DaeurmogL1nrwyZbsnh",
- "U3o-n3M2IWdRxIUQ-WRY7",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -24.17725557524773,
- 11.564782997834682
- ],
- [
- -29.162256724783358,
- 36.29373387618332
- ],
- [
- -12.462502873839048,
- 57.331796563733654
- ],
- [
- 15.57812859229879,
- 57.2087669573737
- ],
- [
- 29.411506782260116,
- 34.69434899350401
- ],
- [
- 23.928005517770945,
- 10.334486934235251
- ],
- [
- 0,
- 0
- ]
- ]
- },
- {
- "type": "text",
- "version": 838,
- "versionNonce": 371944307,
- "isDeleted": false,
- "id": "KOsXEabrHrdI0SDnyWQZP",
- "fillStyle": "hachure",
- "strokeWidth": 4,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1947.7141370550335,
- "y": 683.2298209527803,
- "strokeColor": "#fff",
- "backgroundColor": "transparent",
- "width": 15,
- "height": 16,
- "seed": 1974315077,
- "groupIds": [
- "P-DaeurmogL1nrwyZbsnh",
- "U3o-n3M2IWdRxIUQ-WRY7",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": null,
- "boundElements": [
- {
- "id": "H9lmTmfFt2LYxM_oN3PBT",
- "type": "arrow"
- }
- ],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "fontSize": 11.344659712583827,
- "fontFamily": 1,
- "text": "V2",
- "baseline": 11,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "V2"
- },
- {
- "type": "arrow",
- "version": 1710,
- "versionNonce": 1160345917,
- "isDeleted": false,
- "id": "YOfv6BI3Cl2ovKPPdF9Yr",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1958.0052412214818,
- "y": 662.3392230718814,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 0.4842935113049407,
- "height": 10.275845783237628,
- "seed": 1133750923,
- "groupIds": [
- "BnVsBhZFGfO7zYDhjbS7O",
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "grR-4I4k9hTadSDnZ2-qL",
- "focus": 0.024295016260285573,
- "gap": 1.3398768659704468
- },
- "endBinding": {
- "focus": -0.17817963642461448,
- "gap": 10.614752097661315,
- "elementId": "KOsXEabrHrdI0SDnyWQZP"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -0.4842935113049407,
- 10.275845783237628
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1245,
- "versionNonce": 389252371,
- "isDeleted": false,
- "id": "GmvmsTGWzD7mlelrXKokj",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1958.5573704817152,
- "y": 676.0747945978451,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 10.528650781649107,
- "height": 4.9699838179610865,
- "seed": 817518501,
- "groupIds": [
- "BnVsBhZFGfO7zYDhjbS7O",
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "grR-4I4k9hTadSDnZ2-qL",
- "focus": 4.032355885444955,
- "gap": 13.602562456370723
- },
- "endBinding": {
- "focus": 1.165866277384591,
- "gap": 12.125010172896339,
- "elementId": "KOsXEabrHrdI0SDnyWQZP"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 10.528650781649107,
- -4.9699838179610865
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1736,
- "versionNonce": 1266764189,
- "isDeleted": false,
- "id": "H9lmTmfFt2LYxM_oN3PBT",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1969.0027086228558,
- "y": 658.8414662947755,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 2.978821268074398,
- "height": 16.634085096953527,
- "seed": 276046123,
- "groupIds": [
- "BnVsBhZFGfO7zYDhjbS7O",
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "grR-4I4k9hTadSDnZ2-qL",
- "focus": -1.0121511062580015,
- "gap": 2.2718081312430103
- },
- "endBinding": {
- "elementId": "KOsXEabrHrdI0SDnyWQZP",
- "focus": 0.894303412056493,
- "gap": 7.754269561051274
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -2.978821268074398,
- 16.634085096953527
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1104,
- "versionNonce": 524774067,
- "isDeleted": false,
- "id": "A4t4jCN9t8R-IU1s8D7yY",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1958.5573704817152,
- "y": 677.0266486340465,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 12.785315797749856,
- "height": 7.909857580366441,
- "seed": 2033851141,
- "groupIds": [
- "BnVsBhZFGfO7zYDhjbS7O",
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "grR-4I4k9hTadSDnZ2-qL",
- "focus": -4.225340680293136,
- "gap": 14.468254949013978
- },
- "endBinding": {
- "focus": -0.9505420481460404,
- "gap": 14.113029899100354,
- "elementId": "KOsXEabrHrdI0SDnyWQZP"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -12.785315797749856,
- -7.909857580366441
- ]
- ]
- },
- {
- "type": "arrow",
- "version": 1225,
- "versionNonce": 1799359997,
- "isDeleted": false,
- "id": "KAhiEq1rgGw7hyq89uXWJ",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1948.73477701315,
- "y": 658.1259770907732,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 0.03919894525620293,
- "height": 0.13702503230410915,
- "seed": 1665975243,
- "groupIds": [
- "BnVsBhZFGfO7zYDhjbS7O",
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "grR-4I4k9hTadSDnZ2-qL",
- "focus": -0.858931076437823,
- "gap": 1.3621805528463273
- },
- "endBinding": {
- "focus": 0.8589310764378071,
- "gap": 1.2212621408102504,
- "elementId": "grR-4I4k9hTadSDnZ2-qL"
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0.03919894525620293,
- -0.13702503230410915
- ]
- ]
- },
- {
- "type": "diamond",
- "version": 814,
- "versionNonce": 1930271827,
- "isDeleted": false,
- "id": "grR-4I4k9hTadSDnZ2-qL",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1947.7676197778228,
- "y": 651.2538325892519,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 21.57950140778498,
- "height": 9.864549556354927,
- "seed": 1470788197,
- "groupIds": [
- "BnVsBhZFGfO7zYDhjbS7O",
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": null,
- "boundElements": [
- {
- "id": "YOfv6BI3Cl2ovKPPdF9Yr",
- "type": "arrow"
- },
- {
- "id": "GmvmsTGWzD7mlelrXKokj",
- "type": "arrow"
- },
- {
- "id": "H9lmTmfFt2LYxM_oN3PBT",
- "type": "arrow"
- },
- {
- "id": "A4t4jCN9t8R-IU1s8D7yY",
- "type": "arrow"
- },
- {
- "id": "KAhiEq1rgGw7hyq89uXWJ",
- "type": "arrow"
- }
- ],
- "updated": 1672821163617,
- "link": null,
- "locked": false
- },
- {
- "type": "line",
- "version": 479,
- "versionNonce": 1130841693,
- "isDeleted": false,
- "id": "Zd3hMCMtyw3N8DVnHLMtB",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1964.1614228318076,
- "y": 660.9136044777165,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 4.996606292516154,
- "height": 9.124237577638173,
- "seed": 607654507,
- "groupIds": [
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -4.996606292516154,
- 9.124237577638173
- ]
- ]
- },
- {
- "type": "line",
- "version": 482,
- "versionNonce": 2119997939,
- "isDeleted": false,
- "id": "7pKRjREiVPGya_EmPnQlv",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1950.909553969048,
- "y": 658.5239232073827,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 5.431093796213203,
- "height": 8.47250632209258,
- "seed": 1759043013,
- "groupIds": [
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 5.431093796213203,
- 8.47250632209258
- ]
- ]
- },
- {
- "type": "line",
- "version": 513,
- "versionNonce": 382235325,
- "isDeleted": false,
- "id": "i3LyeIb-j_fvkO8A794bA",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1967.7459447373085,
- "y": 663.0860419962019,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 4.996606292516154,
- "height": 9.124237577638173,
- "seed": 1409322251,
- "groupIds": [
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- -4.996606292516154,
- 9.124237577638173
- ]
- ]
- },
- {
- "type": "line",
- "version": 521,
- "versionNonce": 1849353107,
- "isDeleted": false,
- "id": "6YLqJ_W9wMKvQbNOq_McJ",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1949.7147133338804,
- "y": 663.8463951276717,
- "strokeColor": "#fff",
- "backgroundColor": "#fff",
- "width": 5.431093796213203,
- "height": 8.47250632209258,
- "seed": 1407376677,
- "groupIds": [
- "ZqygOcxlJBQ6pJfZfQO0T",
- "2B86DxpMdyEELqiQi8S0N"
- ],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": null,
- "endBinding": null,
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": null,
- "points": [
- [
- 0,
- 0
- ],
- [
- 5.431093796213203,
- 8.47250632209258
- ]
- ]
- },
- {
- "type": "rectangle",
- "version": 231,
- "versionNonce": 1376064285,
- "isDeleted": false,
- "id": "6NvjGF5yRn-0iBanoBM4f",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1806,
- "y": 594,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 253,
- "height": 123,
- "seed": 448224613,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "boundElements": [
- {
- "id": "179rUzH33qFUin8BGfyUo",
- "type": "arrow"
- }
- ],
- "updated": 1672821163617,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 93,
- "versionNonce": 182384947,
- "isDeleted": false,
- "id": "qr9Nggzr3SKjG9znduUL1",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1903.5,
- "y": 605,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 127,
- "height": 26,
- "seed": 235451621,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "fontSize": 20,
- "fontFamily": 1,
- "text": "Cloud Pod P1",
- "baseline": 18,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "Cloud Pod P1"
- },
- {
- "type": "arrow",
- "version": 51,
- "versionNonce": 1368303485,
- "isDeleted": false,
- "id": "o0zeiTOEGAIyVBNsWmrr7",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1662,
- "y": 549,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 120,
- "height": 0,
- "seed": 272228005,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "4kGKSTYQSumGWC4KNHy_5",
- "focus": -0.4745762711864407,
- "gap": 8.5
- },
- "endBinding": {
- "elementId": "MkpVhDXXllfA221ci6If7",
- "focus": 0.39622641509433965,
- "gap": 6
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- 120,
- 0
- ]
- ]
- },
- {
- "type": "text",
- "version": 33,
- "versionNonce": 1370446547,
- "isDeleted": false,
- "id": "nG9_kf8eo7MFJ5qP90kfa",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1660,
- "y": 509,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 118,
- "height": 26,
- "seed": 1168709541,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "fontSize": 20,
- "fontFamily": 1,
- "text": "pod save P1",
- "baseline": 18,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "pod save P1"
- },
- {
- "type": "arrow",
- "version": 40,
- "versionNonce": 1738977245,
- "isDeleted": false,
- "id": "179rUzH33qFUin8BGfyUo",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1784,
- "y": 663,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 126,
- "height": 0,
- "seed": 1864076747,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "startBinding": {
- "elementId": "6NvjGF5yRn-0iBanoBM4f",
- "focus": -0.12195121951219512,
- "gap": 22
- },
- "endBinding": {
- "elementId": "4kGKSTYQSumGWC4KNHy_5",
- "focus": 0.4915254237288136,
- "gap": 4.5
- },
- "lastCommittedPoint": null,
- "startArrowhead": null,
- "endArrowhead": "arrow",
- "points": [
- [
- 0,
- 0
- ],
- [
- -126,
- 0
- ]
- ]
- },
- {
- "type": "text",
- "version": 50,
- "versionNonce": 1329760371,
- "isDeleted": false,
- "id": "WrsfXC9Cg6om2hr6gHDbp",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1667.5,
- "y": 625,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 113,
- "height": 26,
- "seed": 1413776357,
- "groupIds": [],
- "roundness": null,
- "boundElements": [],
- "updated": 1672821163617,
- "link": null,
- "locked": false,
- "fontSize": 20,
- "fontFamily": 1,
- "text": "pod load P1",
- "baseline": 18,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "pod load P1"
- },
- {
- "id": "4hXMP54n6ETxI8DC-e9wh",
- "type": "rectangle",
- "x": 1390,
- "y": 809,
- "width": 343,
- "height": 78.99999999999999,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "seed": 1248711197,
- "version": 209,
- "versionNonce": 1919533683,
- "isDeleted": false,
- "boundElements": [
- {
- "id": "ezxjSdHzIDkuaAX-mFRop",
- "type": "arrow"
- },
- {
- "id": "J-fdKBZtUctXCOElEXlim",
- "type": "arrow"
- }
- ],
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "id": "mgi7IA6psb_VNPo9FwGVW",
- "type": "text",
- "x": 1511,
- "y": 839,
- "width": 128,
- "height": 26,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": null,
- "seed": 359961939,
- "version": 108,
- "versionNonce": 333451837,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "text": "Host Machine",
- "fontSize": 20,
- "fontFamily": 1,
- "textAlign": "center",
- "verticalAlign": "top",
- "baseline": 18,
- "containerId": null,
- "originalText": "Host Machine"
- },
- {
- "id": "ezxjSdHzIDkuaAX-mFRop",
- "type": "arrow",
- "x": 1418,
- "y": 734,
- "width": 0,
- "height": 66,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "seed": 1383293053,
- "version": 44,
- "versionNonce": 663682067,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 0,
- 66
- ]
- ],
- "lastCommittedPoint": null,
- "startBinding": {
- "elementId": "ODFCMkGdcq6eqMDbji-x-",
- "focus": 0.08143322475570032,
- "gap": 27
- },
- "endBinding": {
- "elementId": "4hXMP54n6ETxI8DC-e9wh",
- "focus": -0.8367346938775511,
- "gap": 9
- },
- "startArrowhead": null,
- "endArrowhead": "arrow"
- },
- {
- "id": "J-fdKBZtUctXCOElEXlim",
- "type": "arrow",
- "x": 1625,
- "y": 799,
- "width": 1,
- "height": 72,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "seed": 1808303453,
- "version": 42,
- "versionNonce": 435995293,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -1,
- -72
- ]
- ],
- "lastCommittedPoint": null,
- "startBinding": {
- "elementId": "4hXMP54n6ETxI8DC-e9wh",
- "focus": 0.3730776992936428,
- "gap": 10
- },
- "endBinding": {
- "elementId": "4kGKSTYQSumGWC4KNHy_5",
- "focus": -0.8347084323870786,
- "gap": 4
- },
- "startArrowhead": null,
- "endArrowhead": "arrow"
- },
- {
- "id": "IKSC2yuaNvBIjelH_p5dn",
- "type": "text",
- "x": 1430.5,
- "y": 743,
- "width": 165,
- "height": 26,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": null,
- "seed": 1029999891,
- "version": 78,
- "versionNonce": 589038003,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "text": "pod save file://..",
- "fontSize": 20,
- "fontFamily": 1,
- "textAlign": "center",
- "verticalAlign": "top",
- "baseline": 18,
- "containerId": null,
- "originalText": "pod save file://.."
- },
- {
- "id": "K92fXwmsDX56AnrKmv478",
- "type": "text",
- "x": 1642.5,
- "y": 763,
- "width": 161,
- "height": 26,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": null,
- "seed": 1378103389,
- "version": 35,
- "versionNonce": 769943293,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "text": "pod load file://..",
- "fontSize": 20,
- "fontFamily": 1,
- "textAlign": "center",
- "verticalAlign": "top",
- "baseline": 18,
- "containerId": null,
- "originalText": "pod load file://.."
- },
- {
- "id": "A61F4MMG9g13ui7eQUilQ",
- "type": "rectangle",
- "x": 670,
- "y": 791,
- "width": 458,
- "height": 103,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "seed": 1714022707,
- "version": 67,
- "versionNonce": 1580684115,
- "isDeleted": false,
- "boundElements": [
- {
- "id": "rDgdCwrbbZSzJwx8FJDMf",
- "type": "arrow"
- },
- {
- "id": "gmMnrjRNacS0BUhT9U353",
- "type": "arrow"
- }
- ],
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 165,
- "versionNonce": 1108901725,
- "isDeleted": false,
- "id": "cReamXq41WsTfzgAzlbML",
- "fillStyle": "cross-hatch",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1053.7826086956522,
- "y": 802.1105590062111,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 50.43478260869563,
- "height": 73.77888198757762,
- "seed": 642866483,
- "groupIds": [
- "z2cQM0fsnAbHpJeNloVGT"
- ],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 216,
- "versionNonce": 1765241075,
- "isDeleted": false,
- "id": "caYFcgv8E8eSXgyGM9VXE",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1056.088198757764,
- "y": 807.0099378881986,
- "strokeColor": "#000000",
- "backgroundColor": "#868e96",
- "width": 44.0944099378882,
- "height": 44.670807453416195,
- "seed": 669287293,
- "groupIds": [
- "z2cQM0fsnAbHpJeNloVGT"
- ],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "type": "text",
- "version": 163,
- "versionNonce": 2095745981,
- "isDeleted": false,
- "id": "CshX84C7uFvM8yT13qVdI",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1083.831121281464,
- "y": 866.3932919254656,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 17.36018306636153,
- "height": 9.424099378881975,
- "seed": 422919891,
- "groupIds": [
- "z2cQM0fsnAbHpJeNloVGT"
- ],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "fontSize": 7.936083687479552,
- "fontFamily": 2,
- "text": "1 TB",
- "baseline": 6.424099378881975,
- "textAlign": "left",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "1 TB"
- },
- {
- "type": "rectangle",
- "version": 139,
- "versionNonce": 94558867,
- "isDeleted": false,
- "id": "fDxbosD_gTAnKJ6gse0PG",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1413,
- "y": 818,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 62.625000000000014,
- "height": 41.75000000000001,
- "seed": 391949597,
- "groupIds": [
- "qsaJ4iabZ-YJYQQGJPgN9"
- ],
- "roundness": {
- "type": 1
- },
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 183,
- "versionNonce": 1048316957,
- "isDeleted": false,
- "id": "aPdj-2u3fvAqXB5GPs6ly",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1439.7744565217392,
- "y": 860.2038043478261,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 11.042572463768083,
- "height": 6.050724637681154,
- "seed": 468057907,
- "groupIds": [
- "qsaJ4iabZ-YJYQQGJPgN9"
- ],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 129,
- "versionNonce": 3149875,
- "isDeleted": false,
- "id": "7FZ9xgb7F9rXSgW99o-FT",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1426.9166666666667,
- "y": 866.7083333333334,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 34.79166666666668,
- "height": 6.958333333333336,
- "seed": 2095251837,
- "groupIds": [
- "qsaJ4iabZ-YJYQQGJPgN9"
- ],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "type": "rectangle",
- "version": 132,
- "versionNonce": 1723760765,
- "isDeleted": false,
- "id": "v-ZVdhbLVf-yirT1ZhNdV",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1419.9583333333333,
- "y": 824.9583333333334,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 48.70833333333334,
- "height": 27.833333333333343,
- "seed": 2011537619,
- "groupIds": [
- "qsaJ4iabZ-YJYQQGJPgN9"
- ],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "type": "ellipse",
- "version": 219,
- "versionNonce": 1254461907,
- "isDeleted": false,
- "id": "Z79A2I0pWXFR_BlZ4Tvkl",
- "fillStyle": "solid",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1464.733695652174,
- "y": 854.606884057971,
- "strokeColor": "#000000",
- "backgroundColor": "#40c057",
- "width": 2.874094202898586,
- "height": 3.176630434782617,
- "seed": 459262429,
- "groupIds": [
- "qsaJ4iabZ-YJYQQGJPgN9"
- ],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "id": "eSvHuxupED4J9K6Is19c3",
- "type": "text",
- "x": 700.5,
- "y": 828,
- "width": 321,
- "height": 26,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": null,
- "seed": 720167101,
- "version": 87,
- "versionNonce": 1534290141,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "text": "Persistent Volume (on local disk)",
- "fontSize": 20,
- "fontFamily": 1,
- "textAlign": "center",
- "verticalAlign": "top",
- "baseline": 18,
- "containerId": null,
- "originalText": "Persistent Volume (on local disk)"
- },
- {
- "id": "rDgdCwrbbZSzJwx8FJDMf",
- "type": "arrow",
- "x": 847,
- "y": 726,
- "width": 1,
- "height": 61,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "seed": 1190389011,
- "version": 33,
- "versionNonce": 1450827635,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- -1,
- 61
- ]
- ],
- "lastCommittedPoint": null,
- "startBinding": {
- "elementId": "WmXSFwdBeGSvNqw1pqRJO",
- "focus": 0.1653219744424956,
- "gap": 24
- },
- "endBinding": {
- "elementId": "A61F4MMG9g13ui7eQUilQ",
- "focus": -0.23454940979280334,
- "gap": 4
- },
- "startArrowhead": null,
- "endArrowhead": "arrow"
- },
- {
- "id": "gmMnrjRNacS0BUhT9U353",
- "type": "arrow",
- "x": 899,
- "y": 783,
- "width": 1,
- "height": 61,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 2
- },
- "seed": 1060537523,
- "version": 26,
- "versionNonce": 1311524157,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "points": [
- [
- 0,
- 0
- ],
- [
- 1,
- -61
- ]
- ],
- "lastCommittedPoint": null,
- "startBinding": {
- "elementId": "A61F4MMG9g13ui7eQUilQ",
- "focus": -0.004243785884954174,
- "gap": 8
- },
- "endBinding": {
- "elementId": "WmXSFwdBeGSvNqw1pqRJO",
- "focus": -0.15830618892508141,
- "gap": 20
- },
- "startArrowhead": null,
- "endArrowhead": "arrow"
- },
- {
- "id": "ZapuGwJ0NWb_PlBBWkk64",
- "type": "text",
- "x": 921.5,
- "y": 732.5,
- "width": 141,
- "height": 42,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": null,
- "seed": 852560093,
- "version": 68,
- "versionNonce": 764639507,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "text": "reload state on \ncontainer startup",
- "fontSize": 16,
- "fontFamily": 1,
- "textAlign": "center",
- "verticalAlign": "top",
- "baseline": 36,
- "containerId": null,
- "originalText": "reload state on \ncontainer startup"
- },
- {
- "type": "text",
- "version": 182,
- "versionNonce": 1112184221,
- "isDeleted": false,
- "id": "NZE4c7Ijwv8YDgG7LaxeC",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 681,
- "y": 730,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 142,
- "height": 42,
- "seed": 1917576275,
- "groupIds": [],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false,
- "fontSize": 16,
- "fontFamily": 1,
- "text": "continuously store\nstate to disk",
- "baseline": 36,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "continuously store\nstate to disk"
- },
- {
- "id": "Gl4xGflPZesanCTwW2IwB",
- "type": "rectangle",
- "x": 608.5271086583638,
- "y": 390.4693862331271,
- "width": 575.4988440599597,
- "height": 568.1676485942276,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "seed": 499221629,
- "version": 83,
- "versionNonce": 1300815539,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821163618,
- "link": null,
- "locked": false
- },
- {
- "id": "to6g2IBYkAd_iyOO9mMpO",
- "type": "rectangle",
- "x": 1225.5693936908046,
- "y": 390.4693862331269,
- "width": 954.2772764561114,
- "height": 573.055112238049,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": {
- "type": 3
- },
- "seed": 1952452467,
- "version": 107,
- "versionNonce": 1752527635,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821166396,
- "link": null,
- "locked": false
- },
- {
- "id": "rRYZWpaP6rWAOSROCBqvn",
- "type": "text",
- "x": 820.8311954657318,
- "y": 396.2411067193676,
- "width": 157,
- "height": 36,
- "angle": 0,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "groupIds": [],
- "roundness": null,
- "seed": 236689587,
- "version": 16,
- "versionNonce": 799149725,
- "isDeleted": false,
- "boundElements": null,
- "updated": 1672821174596,
- "link": null,
- "locked": false,
- "text": "Persistence",
- "fontSize": 28,
- "fontFamily": 1,
- "textAlign": "center",
- "verticalAlign": "top",
- "baseline": 25,
- "containerId": null,
- "originalText": "Persistence"
- },
- {
- "type": "text",
- "version": 87,
- "versionNonce": 648464243,
- "isDeleted": false,
- "id": "Vib67NxSqLMvfQBxgkatv",
- "fillStyle": "hachure",
- "strokeWidth": 1,
- "strokeStyle": "solid",
- "roughness": 1,
- "opacity": 100,
- "angle": 0,
- "x": 1646.3688194496233,
- "y": 399.3504362741442,
- "strokeColor": "#000000",
- "backgroundColor": "transparent",
- "width": 153,
- "height": 36,
- "seed": 1015957331,
- "groupIds": [],
- "roundness": null,
- "boundElements": null,
- "updated": 1672821184922,
- "link": null,
- "locked": false,
- "fontSize": 28,
- "fontFamily": 1,
- "text": "Cloud Pods",
- "baseline": 25,
- "textAlign": "center",
- "verticalAlign": "top",
- "containerId": null,
- "originalText": "Cloud Pods"
- }
- ],
- "appState": {
- "gridSize": null,
- "viewBackgroundColor": "transparent"
- },
- "files": {}
-}
\ No newline at end of file
diff --git a/content/en/user-guide/tools/cloud-pods/pods-persistence.png b/content/en/user-guide/tools/cloud-pods/pods-persistence.png
deleted file mode 100644
index 9fe642ec1a..0000000000
Binary files a/content/en/user-guide/tools/cloud-pods/pods-persistence.png and /dev/null differ
diff --git a/content/en/user-guide/tools/cloud-pods/remotes/index.md b/content/en/user-guide/tools/cloud-pods/remotes/index.md
index fd29c0ea19..6a5b38e317 100644
--- a/content/en/user-guide/tools/cloud-pods/remotes/index.md
+++ b/content/en/user-guide/tools/cloud-pods/remotes/index.md
@@ -1,5 +1,5 @@
---
-title: "Cloud Pod Remotes"
+title: "Remotes"
weight: 5
description: The reference guide for LocalStack Cloud Pods remotes and how to get started on using them!
---
diff --git a/content/en/user-guide/tools/cockpit/index.md b/content/en/user-guide/tools/cockpit/index.md
index e992b7a3fd..659b4633a2 100644
--- a/content/en/user-guide/tools/cockpit/index.md
+++ b/content/en/user-guide/tools/cockpit/index.md
@@ -7,6 +7,9 @@ description: >
aliases:
- /get-started/cockpit/
---
+{{< alert title="Warning" color="warning" >}}
+LocalStack Cockpit is now deprecated, use the [LocalStack Desktop](https://docs.localstack.cloud/user-guide/tools/localstack-desktop/) application instead.
+{{< /alert >}}
LocalStack Cockpit is a desktop client that allows users to easily control and manage their LocalStack instance. With LocalStack Cockpit, users can start and stop their LocalStack instance with a single click, view the current status of their instance, and access quick links to LocalStack documentation and other resources.
Cockpit also provides instant insights into the runtime and environment information, as well as the status of available services and log information. In addition, users can directly manage and use their LocalStack profiles through the app.
diff --git a/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/deploy-lambda-function.gif b/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/deploy-lambda-function.gif
new file mode 100644
index 0000000000..5ff8f616b7
Binary files /dev/null and b/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/deploy-lambda-function.gif differ
diff --git a/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/index.md b/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/index.md
new file mode 100644
index 0000000000..397438d398
--- /dev/null
+++ b/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/index.md
@@ -0,0 +1,46 @@
+---
+title: "Lambda VSCode Extension"
+weight: 9
+description: >
+ Deploy and invoke Lambda functions in LocalStack directly from VSCode
+---
+
+## Introduction
+
+[LocalStack Lambda VSCode Extension](https://github.com/localstack/localstack-vscode-extension) supports deploying and invoking Python Lambda functions through [AWS SAM](https://github.com/aws/serverless-application-model) or [AWS CloudFormation](https://aws.amazon.com/cloudformation/resources/templates/).
+
+## Prerequisites
+
+- [VS Code](https://code.visualstudio.com/)
+- [`samlocal`](https://github.com/localstack/aws-sam-cli-local) command line wrapper around the [AWS SAM CLI](https://github.com/aws/aws-sam-cli) for use with [LocalStack](https://github.com/localstack/localstack).
+- [LocalStack](https://docs.localstack.cloud/getting-started/) running in the background.
+
+## Getting Started
+
+You can use a [sample project](https://github.com/joe4dev/lambda-python) to get started with the extension. The sample project contains a simple Lambda function and a SAM template. Clone the repository and open the project in VSCode.
+
+{{< command >}}
+$ git clone https://github.com/joe4dev/lambda-python.git
+$ cd lambda-python
+$ code .
+{{< /command >}}
+
+Install the [LocalStack VSCode Extension](https://marketplace.visualstudio.com/items?itemName=localstack.localstack) as recommended by the project.
+
+You can now open the Python handler function under `app/hello_world.py`. Click the CodeLens **Deploy Lambda function**, select the `template.yaml`, and choose a stack name such as `my-stack`.
+
+
+
+
+
+
+Click the CodeLens **Invoke Lambda function** and pick the stack name `my-stack` and the function `hello-world-function`.
+
+
+
+
+
+## Limitations
+
+- The CodeLens for **Deploy Lambda function** always appears at the first line of each Python file.
+- **Invoke Lambda function** currently only works in the region `us-east-1` and with an empty payload.
diff --git a/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/invoke-lambda-function.gif b/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/invoke-lambda-function.gif
new file mode 100644
index 0000000000..3b8e163c6d
Binary files /dev/null and b/content/en/user-guide/tools/lambda-tools/lambda-vscode-extension/invoke-lambda-function.gif differ
diff --git a/content/en/user-guide/tools/localstack-desktop/index.md b/content/en/user-guide/tools/localstack-desktop/index.md
new file mode 100644
index 0000000000..5c1934ad89
--- /dev/null
+++ b/content/en/user-guide/tools/localstack-desktop/index.md
@@ -0,0 +1,47 @@
+---
+title: "LocalStack Desktop"
+weight: 8
+description: >
+ Getting started with the LocalStack Desktop application
+---
+
+LocalStack Desktop is a desktop client that allows users to easily control and interact with their LocalStack instance. Using LocalStack Desktop, users can start and stop their LocalStack instance with a single click, create a new container, view logs, interact with LocalStack container via cli and use our resource browser.
+
+
+
+## Installation
+
+You can download LocalStack Desktop from our [web application](https://app.localstack.cloud/download).
+To install LocalStack Desktop, **Docker** is the only prerequisite.
+
+## Features
+
+LocalStack Desktop helps users to interact with their LocalStack instance with a simple and intuitive UI. Some of the features of LocalStack Desktop includes the ability to: Control LocalStack, Interact with LocalStack, get LocalStack insights and use the Resource browser.
+
+### Control LocalStack
+
+Using our Desktop application you will be able to start, stop, delete and create new containers with just a click. It also allows to set up a custom URL if you are using LocalStack outside of Docker or in Kubernetes.
+
+
+
+
+
+### Interact with LocalStack
+
+You can run commands within the LocalStack container by using our CLI
+
+
+
+
+### LocalStack Insights
+
+LocalStack Desktop provides quick access to your LocalStack logs for instant insights. See what's happening in details from the Logs tab.
+
+
+
+
+### Resource browser
+
+You can also create, modify, delete and read all of your resources from the Resource Browser tab, having the same experience that you would have using it in our [web application](https://app.localstack.cloud/inst/default/resources)
+
+
diff --git a/content/en/user-guide/tools/localstack-desktop/localstack-desktop-containers.png b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-containers.png
new file mode 100644
index 0000000000..079f581e55
Binary files /dev/null and b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-containers.png differ
diff --git a/content/en/user-guide/tools/localstack-desktop/localstack-desktop-logs.png b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-logs.png
new file mode 100644
index 0000000000..7f6d566201
Binary files /dev/null and b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-logs.png differ
diff --git a/content/en/user-guide/tools/localstack-desktop/localstack-desktop-resource-browser.png b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-resource-browser.png
new file mode 100644
index 0000000000..31f3f847c2
Binary files /dev/null and b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-resource-browser.png differ
diff --git a/content/en/user-guide/tools/localstack-desktop/localstack-desktop-terminal.png b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-terminal.png
new file mode 100644
index 0000000000..528c0d10ea
Binary files /dev/null and b/content/en/user-guide/tools/localstack-desktop/localstack-desktop-terminal.png differ
diff --git a/content/en/user-guide/tools/transparent-endpoint-injection/_index.md b/content/en/user-guide/tools/transparent-endpoint-injection/_index.md
index 9c3eae6978..242ff8912d 100644
--- a/content/en/user-guide/tools/transparent-endpoint-injection/_index.md
+++ b/content/en/user-guide/tools/transparent-endpoint-injection/_index.md
@@ -8,10 +8,21 @@ aliases:
- /tools/local-endpoint-injection/
---
-In the community (open source) edition, the application code needs to configure each AWS SDK client instance with the target `endpoint URL` to point to the APIs on `localhost` or, in the case of Lambdas running in the context of LocalStack, the `endpoint URL` should point to `http://${LOCALSTACK_HOSTNAME}:${EDGE_PORT}`.
+In the community (open source) edition,
+the application code needs to configure the `endpoint URL` of each AWS SDK client instance to target LocalStack
+using the environment variable `AWS_ENDPOINT_URL` available within Lambda functions in LocalStack.
+For example, a Python boto3 client can be configured as follows:
-The Pro version provides two options for transparently making your application logic speak to the local APIs instead of real AWS (without having to change your production code):
-1. integrated DNS server
-2. patched AWS SDKs (**deprecated**)
+```python
+client = boto3.client("lambda", endpoint_url=os.environ['AWS_ENDPOINT_URL'])
+```
-More details can be found in the subsections below.
+For [supported AWS SDKs](https://docs.aws.amazon.com/sdkref/latest/guide/feature-ss-endpoints.html#ss-endpoints-sdk-compat)
+(including boto3 since [1.28.0](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst#L892)), this configuration happens automatically without any custom code changes.
+
+
+In LocalStack Pro,
+no application code changes are required to let your application connect to local cloud APIs instead of real AWS because
+LocalStack provides an integrated DNS server that resolves AWS API calls to target LocalStack.
+
+More details can be found in the subsection below.
diff --git a/content/en/user-guide/tools/transparent-endpoint-injection/dns-server.md b/content/en/user-guide/tools/transparent-endpoint-injection/dns-server.md
index c8d6345eff..f41fc85308 100644
--- a/content/en/user-guide/tools/transparent-endpoint-injection/dns-server.md
+++ b/content/en/user-guide/tools/transparent-endpoint-injection/dns-server.md
@@ -172,7 +172,7 @@ Also, it configures the DNS route to exclusively (and only) route the following
If you want to perform this action manually, please do the following steps:
1. Find out the bridge interface and container IP of your LocalStack container.
- Use `docker inspect localstack_main` to get the IP address and network, then `docker inspect network` to get the interface name.
+ Use `docker inspect localstack-main` to get the IP address and network, then `docker inspect network` to get the interface name.
If the interface name is not mentioned, it is usually the first 12 characters of the network ID prefixed with `br-`, like `br-0ae393d3345e`.
If you use the default bridge network, it is usually `docker0`.
diff --git a/content/en/user-guide/tools/transparent-endpoint-injection/patched-sdks.md b/content/en/user-guide/tools/transparent-endpoint-injection/patched-sdks.md
deleted file mode 100644
index ac6e19804b..0000000000
--- a/content/en/user-guide/tools/transparent-endpoint-injection/patched-sdks.md
+++ /dev/null
@@ -1,66 +0,0 @@
----
-title: "Patched AWS SDKs for Lambdas (Deprecated)"
-categories: ["LocalStack Pro", "Tools"]
-weight: 6
-description: >
- Using patched SDKs in Lambdas to transparently redirect AWS API calls to LocalStack
-aliases:
- - /tools/local-endpoint-injection/patched-sdks/
----
-
-{{< alert title="Warning" color="warning">}}
-Patched AWS SDKs for Lambdas are **deprecated** and only used by the old lambda provider.
-The new lambda provider (active since LocalStack 2.0) uses DNS-based domain resolution (except for the Ruby runtime).
-Please refer to [Lambda providers]({{< ref "user-guide/aws/lambda" >}}) for more details about the new Lambda implementation.
-{{< /alert >}}
-
-The Lambda runtime in LocalStack uses patched AWS SDKs, which are configured to target the local APIs instead of the real AWS.
-This behavior is enabled by default for most Lambda runtimes when using LocalStack Pro.
-
-Assuming you had a Python Lambda handler that attempts to list all S3 buckets. In the past, you had to manually configure the `endpoint_url` parameter on the boto3 client (and potentially use environment switches for dev/prod in your test code):
-```python
-import boto3
-def handler(event, context):
- client = boto3.client("s3", endpoint_url="http://localhost:4566")
- print(client.list_buckets())
-```
-
-With the patched AWS SDKs, it now becomes possible to deploy your unmodified production code to LocalStack, simply creating a boto3 client with default settings. The invocations of the boto3 client will be automatically forwarded to the local APIs:
-```python
-import boto3
-def handler(event, context):
- client = boto3.client("s3")
- print(client.list_buckets())
-```
-
-{{< alert title="Note">}}
-This functionality only works when using the SDKs provided by the Lambda execution environment itself.
-If you choose to ship your own SDKs with your Lambda or using a layer, it will fallback to the [DNS based transparent execution]({{< ref "dns-server" >}}) if enabled, since those SDK versions will not be patched.
-{{< /alert >}}
-
-This feature works by patching the AWS SDKs in the docker images, which provide the execution environment for Lambdas within LocalStack.
-
-The main advantage of this mode is, that no DNS magic is involved, and SSL certificate checks do not have to be disabled.
-
-## Configuration
-
-If you want to disable this behavior, and use the DNS server to resolve the endpoints for AWS, you can disable this behavior by using:
-
-```bash
-TRANSPARENT_LOCAL_ENDPOINTS=0
-```
-
-## Supported Runtimes
-Currently, LocalStack supports patching the SDKs for the following runtimes:
-
-* Python (using boto3)
-* NodeJS
-* Ruby
-* Java
-
-Also, these patched SDKs are only available in the following Lambda execution modes:
-
-* docker
-* docker-reuse
-
-This feature is currently not supported for custom Lambda container images.
diff --git a/data/coverage/acm.json b/data/coverage/acm.json
index 5ff2fc2720..b53447b842 100644
--- a/data/coverage/acm.json
+++ b/data/coverage/acm.json
@@ -235,7 +235,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -245,7 +245,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -297,7 +297,7 @@
"snapshot_skipped": "['$..Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -473,7 +473,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_account_id_namespacing_for_moto_backends",
@@ -539,7 +539,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -809,7 +809,7 @@
"snapshot_skipped": "['$..Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/apigateway.json b/data/coverage/apigateway.json
index 62fe21b462..2800427837 100644
--- a/data/coverage/apigateway.json
+++ b/data/coverage/apigateway.json
@@ -152,7 +152,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -164,7 +164,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -404,7 +404,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -416,7 +416,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -478,7 +478,7 @@
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"snapshot_skipped": ""
}
},
@@ -502,7 +502,7 @@
"external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"snapshot_skipped": ""
}
},
@@ -596,7 +596,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -956,7 +956,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -968,7 +968,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1219,8 +1219,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1243,8 +1243,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1267,8 +1267,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1423,8 +1423,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1497,7 +1497,7 @@
}
]
},
- "name, tags, value": {
+ "name, value": {
"ls_community": [
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
@@ -1507,7 +1507,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1751,7 +1751,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1873,7 +1873,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_update_rest_api_deployment",
@@ -1893,7 +1893,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -1903,7 +1903,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
@@ -1913,7 +1913,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -1923,7 +1923,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
@@ -1933,7 +1933,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -1943,7 +1943,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -1953,7 +1953,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -1963,7 +1963,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -1973,7 +1973,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -1983,7 +1983,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -1993,7 +1993,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -2003,7 +2003,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2017,7 +2017,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger",
@@ -2027,7 +2027,7 @@
"snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
@@ -2037,7 +2037,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -2047,7 +2047,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -2057,7 +2057,19 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ }
+ ],
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
},
@@ -2261,7 +2273,7 @@
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -2390,8 +2402,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2400,8 +2412,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2410,8 +2422,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2420,8 +2432,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2430,8 +2442,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2440,8 +2452,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2450,8 +2462,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2460,8 +2472,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -2837,7 +2849,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -3281,7 +3293,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -3405,7 +3417,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
@@ -3415,7 +3427,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
@@ -3425,7 +3437,7 @@
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -3505,7 +3517,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_validators_crud_no_api",
@@ -3531,7 +3543,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_proxy_resource",
@@ -4141,7 +4153,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_api_gateway_sqs_integration",
@@ -4181,7 +4193,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
@@ -4191,7 +4203,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
@@ -4201,7 +4213,7 @@
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -4211,7 +4223,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -4221,7 +4233,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -4231,7 +4243,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -4241,7 +4253,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -4251,7 +4263,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -4261,7 +4273,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_multiregion.py::TestMultiRegion::test_multi_region_api_gateway",
@@ -4281,7 +4293,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_proxy_resource_validation",
@@ -5092,8 +5104,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -5102,8 +5114,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -5112,8 +5124,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -5122,8 +5134,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -5132,8 +5144,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -5142,8 +5154,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -5152,8 +5164,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -5162,8 +5174,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6620,6 +6632,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
},
@@ -6663,7 +6685,7 @@
"snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
@@ -6673,7 +6695,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -6863,7 +6885,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
@@ -6873,7 +6895,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -6883,7 +6905,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
@@ -6893,7 +6915,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
@@ -6903,7 +6925,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
@@ -6913,7 +6935,7 @@
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -6923,7 +6945,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
@@ -6933,7 +6955,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -6943,7 +6965,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -6953,7 +6975,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -6963,7 +6985,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -6973,7 +6995,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -6983,7 +7005,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -6993,7 +7015,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -7003,7 +7025,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -7013,7 +7035,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -7023,7 +7045,19 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ }
+ ],
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
},
@@ -7101,7 +7135,7 @@
}
]
},
- "apiStages, name, quota, tags": {
+ "apiStages, name, quota": {
"ls_community": [
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
@@ -7111,11 +7145,11 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
- "apiStages, name, quota, tags, throttle": {
+ "apiStages, name, quota, throttle": {
"ls_community": [
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
@@ -7125,11 +7159,9 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
- ]
- },
- "apiStages, name, quota, throttle": {
+ ],
"ls_pro": [
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::test_api_key_authorizer",
@@ -7175,7 +7207,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -7203,7 +7235,7 @@
"snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7230,6 +7262,16 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
+ "test": "test_cfn_deploy_apigateway_integration",
+ "response": "202",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
],
"ls_pro": [
@@ -7257,7 +7299,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7341,6 +7383,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
+ "test": "test_sam_policies",
+ "response": "202",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[False]",
"test": "test_create_delete_deployments[False]",
@@ -7372,24 +7424,24 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
- "test": "test_cfn_handle_serverless_api_resource",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
+ "test": "test_rest_api_serverless_ref_resolving",
"response": "400",
"error": "BadRequestException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
+ "snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
- "test": "test_sam_policies",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
+ "test": "test_cfn_handle_serverless_api_resource",
"response": "400",
"error": "BadRequestException",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -7399,7 +7451,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
@@ -7409,7 +7461,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -7419,7 +7471,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
@@ -7429,7 +7481,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger",
@@ -7439,7 +7491,7 @@
"snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
@@ -7449,7 +7501,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
@@ -7459,7 +7511,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
@@ -7469,7 +7521,7 @@
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -7479,7 +7531,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
@@ -7489,7 +7541,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -7499,7 +7551,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -7509,7 +7561,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -7519,17 +7571,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
- "test": "test_sam_policies",
- "response": "404",
- "error": "NotFoundException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -7539,7 +7581,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -7549,7 +7591,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -7559,7 +7601,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -7569,7 +7611,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -7579,7 +7621,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
@@ -7589,7 +7631,29 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ }
+ ],
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "400",
+ "error": "BadRequestException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -7662,6 +7726,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
+ "test": "test_cfn_apigateway_aws_integration",
+ "response": "202",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -7708,6 +7782,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
+ "test": "test_scenario_validate_infra",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -7767,6 +7851,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
+ "test": "test_notes_rest_api",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_method_lifecycle",
"test": "test_method_lifecycle",
@@ -7776,6 +7870,146 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
+ "test": "test_scenario_validate_infra",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
+ "test": "test_cfn_apigateway_aws_integration",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
+ "test": "test_cfn_deploy_apigateway_integration",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
+ "test": "test_cfn_deploy_apigateway_models",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
+ "test": "test_cfn_with_apigateway_resources",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
+ "test": "test_update_usage_plan",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
+ "test": "test_url_output",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
+ "test": "test_cdk_template",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
+ "test": "test_apigateway_invoke",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
+ "test": "test_apigateway_invoke_localhost",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
+ "test": "test_apigateway_invoke_localhost_with_path",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
+ "test": "test_apigateway_invoke_with_path",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
+ "test": "test_step_functions_calling_api_gateway",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$..tracingConfiguration']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
+ "test": "test_s3_bucket_deployed",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -7813,6 +8047,46 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_rest_api",
+ "test": "test_cfn_apigateway_rest_api",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
+ "test": "test_cfn_deploy_apigateway_models",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
+ "test": "test_cfn_with_apigateway_resources",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
+ "test": "test_cfn_with_apigateway_resources",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_put_method_model",
"test": "test_put_method_model",
@@ -7867,7 +8141,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7915,6 +8189,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
+ "test": "test_notes_rest_api",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_delete_resource",
"test": "test_delete_resource",
@@ -7924,6 +8208,116 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
+ "test": "test_scenario_validate_infra",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
+ "test": "test_cfn_deploy_apigateway_integration",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
+ "test": "test_cfn_deploy_apigateway_models",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
+ "test": "test_cfn_with_apigateway_resources",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
+ "test": "test_cdk_template",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
+ "test": "test_apigateway_invoke",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
+ "test": "test_apigateway_invoke_localhost",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
+ "test": "test_apigateway_invoke_localhost_with_path",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
+ "test": "test_apigateway_invoke_with_path",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
+ "test": "test_step_functions_calling_api_gateway",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$..tracingConfiguration']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
+ "test": "test_s3_bucket_deployed",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -7939,7 +8333,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_create_proxy_resource",
@@ -9099,7 +9493,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration",
@@ -9129,7 +9523,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_update_resources",
@@ -9139,7 +9533,7 @@
"snapshot_skipped": "['$..ParameterValue', '$..PhysicalResourceId', '$..Capabilities']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::test_update_termination_protection",
@@ -9149,7 +9543,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_transformers.py::test_duplicate_resources",
@@ -9159,7 +9553,7 @@
"snapshot_skipped": "['$..tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_api_gateway_with_policy_as_dict",
@@ -9169,7 +9563,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -9179,7 +9573,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_rest_api",
@@ -9189,7 +9583,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
@@ -9199,7 +9593,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger",
@@ -9209,7 +9603,7 @@
"snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
@@ -9219,7 +9613,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
@@ -9229,7 +9623,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
@@ -9239,7 +9633,7 @@
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -9249,7 +9643,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
@@ -9259,7 +9653,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -9269,7 +9663,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -9279,7 +9673,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -9289,7 +9683,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -9299,7 +9693,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -9309,7 +9703,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -9319,7 +9713,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -9329,7 +9723,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -9339,7 +9733,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -9349,7 +9743,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
@@ -9359,7 +9753,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_list_and_delete_apis",
@@ -9651,7 +10045,17 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "202",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer",
@@ -9778,6 +10182,26 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
+ "test": "test_cfn_apigateway_swagger_import",
+ "response": "202",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
+ "test": "test_sam_policies",
+ "response": "202",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -9824,16 +10248,6 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
- "test": "test_update_usage_plan",
- "response": "202",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
}
],
"ls_pro": [
@@ -9869,16 +10283,6 @@
"GetAccount": {
"- (without any parameters)": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_account",
"test": "test_api_account",
@@ -9889,16 +10293,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
- "test": "test_scenario_validate_infra",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_account",
"test": "test_account",
@@ -9908,10 +10302,16 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "GetApiKey": {
+ "apiKey": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
- "test": "test_cfn_apigateway_aws_integration",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate",
+ "test": "test_multiple_api_keys_validate",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9920,99 +10320,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
- "test": "test_url_output",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestUsagePlans::test_api_key_required_for_methods",
+ "test": "test_api_key_required_for_methods",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
- "test": "test_cdk_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
- "test": "test_apigateway_invoke",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
- "test": "test_apigateway_invoke_localhost",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
- "test": "test_apigateway_invoke_localhost_with_path",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
- "test": "test_apigateway_invoke_with_path",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
- "test": "test_step_functions_calling_api_gateway",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..tracingConfiguration']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ]
- }
- },
- "GetApiKey": {
- "apiKey": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_multiple_api_keys_validate",
- "test": "test_multiple_api_keys_validate",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestUsagePlans::test_api_key_required_for_methods",
- "test": "test_api_key_required_for_methods",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
}
],
@@ -10042,16 +10356,6 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
- "test": "test_cfn_deploy_apigateway_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
}
]
},
@@ -10280,249 +10584,49 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[True]",
- "test": "test_create_delete_deployments[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_update_deployments",
- "test": "test_create_update_deployments",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ]
- }
- },
- "GetDeployments": {
- "restApiId": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[False]",
- "test": "test_create_delete_deployments[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[True]",
- "test": "test_create_delete_deployments[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
- "test": "test_scenario_validate_infra",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
- "test": "test_cfn_apigateway_aws_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
- "test": "test_cfn_apigateway_swagger_import",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger",
- "test": "test_cfn_deploy_apigateway_from_s3_swagger",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
- "test": "test_cfn_deploy_apigateway_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
- "test": "test_cfn_deploy_apigateway_models",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
- "test": "test_cfn_with_apigateway_resources",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
- "test": "test_rest_api_serverless_ref_resolving",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
- "test": "test_update_usage_plan",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
- "test": "test_url_output",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
- "test": "test_cdk_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
- "test": "test_cfn_handle_serverless_api_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
- "test": "test_sam_policies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
- "test": "test_apigateway_invoke",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
- "test": "test_apigateway_invoke_localhost",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
- "test": "test_apigateway_invoke_localhost_with_path",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[True]",
+ "test": "test_create_delete_deployments[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
- "test": "test_apigateway_invoke_with_path",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_update_deployments",
+ "test": "test_create_update_deployments",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "GetDeployments": {
+ "restApiId": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
- "test": "test_step_functions_calling_api_gateway",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[False]",
+ "test": "test_create_delete_deployments[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..tracingConfiguration']",
+ "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[True]",
+ "test": "test_create_delete_deployments[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
}
]
@@ -10648,16 +10752,6 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
- "test": "test_cfn_apigateway_aws_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
}
],
"ls_pro": [
@@ -10999,16 +11093,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
- "test": "test_scenario_validate_infra",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayGatewayResponse::test_gateway_response_validation",
"test": "test_gateway_response_validation",
@@ -11739,7 +11823,7 @@
"snapshot_skipped": "['$..body.servers..url']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS]",
@@ -11749,7 +11833,7 @@
"snapshot_skipped": "['$..body.servers..url']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
@@ -11759,7 +11843,7 @@
"snapshot_skipped": "['$..body.host']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETS]",
@@ -11769,7 +11853,7 @@
"snapshot_skipped": "['$..body.host']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_and_validate_rest_api[openapi.spec.tf.json]",
@@ -11959,16 +12043,6 @@
"GetResource": {
"embed, resourceId, restApiId": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_resource_lifecycle",
"test": "test_resource_lifecycle",
@@ -11988,146 +12062,6 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
- "test": "test_scenario_validate_infra",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
- "test": "test_cfn_apigateway_aws_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
- "test": "test_cfn_deploy_apigateway_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
- "test": "test_cfn_deploy_apigateway_models",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
- "test": "test_cfn_with_apigateway_resources",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
- "test": "test_update_usage_plan",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
- "test": "test_url_output",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
- "test": "test_cdk_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
- "test": "test_apigateway_invoke",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
- "test": "test_apigateway_invoke_localhost",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
- "test": "test_apigateway_invoke_localhost_with_path",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
- "test": "test_apigateway_invoke_with_path",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
- "test": "test_step_functions_calling_api_gateway",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..tracingConfiguration']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
}
]
}
@@ -12336,8 +12270,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -12346,8 +12280,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -12356,8 +12290,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -12366,8 +12300,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13207,6 +13141,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer",
"test": "test_api_gateway_cognito_pool_authorizer",
@@ -13672,8 +13616,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13682,8 +13626,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13692,8 +13636,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13702,8 +13646,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13712,8 +13656,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13722,8 +13666,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13732,8 +13676,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13742,8 +13686,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14162,71 +14106,41 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan]",
- "test": "test_rest_api_to_dynamodb_integration[Scan]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..headers.connection', '$..headers.x-amz-apigw-id', '$..headers.x-amzn-requestid', '$..headers.x-amzn-trace-id', '$..headers.server']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_eventbridge.py::test_apigateway_to_eventbridge",
- "test": "test_apigateway_to_eventbridge",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
- "test": "test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..body.servers..url']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
- "test": "test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Scan]",
+ "test": "test_rest_api_to_dynamodb_integration[Scan]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..body.servers..url']",
+ "snapshot_skipped": "['$..headers.connection', '$..headers.x-amz-apigw-id', '$..headers.x-amzn-requestid', '$..headers.x-amzn-trace-id', '$..headers.server']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS]",
- "test": "test_export_oas30_openapi[TEST_IMPORT_PETS]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_eventbridge.py::test_apigateway_to_eventbridge",
+ "test": "test_apigateway_to_eventbridge",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..body.servers..url']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS]",
- "test": "test_export_oas30_openapi[TEST_IMPORT_PETS]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
+ "test": "test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..body.servers..url']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
- "test": "test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS]",
+ "test": "test_export_oas30_openapi[TEST_IMPORT_PETS]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..body.host']",
+ "snapshot_skipped": "['$..body.servers..url']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14239,16 +14153,6 @@
"snapshot_skipped": "['$..body.host']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETS]",
- "test": "test_export_swagger_openapi[TEST_IMPORT_PETS]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..body.host']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -14259,7 +14163,7 @@
"snapshot_skipped": "['$..body.host']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_import.py::TestApiGatewayImportRestApi::test_import_and_validate_rest_api[openapi.spec.tf.json]",
@@ -15083,6 +14987,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer",
"test": "test_api_gateway_cognito_pool_authorizer",
@@ -15247,7 +15161,7 @@
"snapshot_skipped": "['$..body.servers..url']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS]",
@@ -15257,7 +15171,7 @@
"snapshot_skipped": "['$..body.servers..url']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
@@ -15267,7 +15181,7 @@
"snapshot_skipped": "['$..body.host']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETS]",
@@ -15277,7 +15191,7 @@
"snapshot_skipped": "['$..body.host']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
@@ -15289,36 +15203,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_lifecycle",
- "test": "test_stack_lifecycle",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_update_resources",
- "test": "test_stack_update_resources",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ParameterValue', '$..PhysicalResourceId', '$..Capabilities']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::test_update_termination_protection",
- "test": "test_update_termination_protection",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_transformers.py::test_duplicate_resources",
"test": "test_duplicate_resources",
@@ -15330,203 +15214,33 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_api_gateway_with_policy_as_dict",
- "test": "test_api_gateway_with_policy_as_dict",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
- "test": "test_cfn_apigateway_aws_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_rest_api",
- "test": "test_cfn_apigateway_rest_api",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
- "test": "test_cfn_apigateway_swagger_import",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger",
- "test": "test_cfn_deploy_apigateway_from_s3_swagger",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
- "test": "test_cfn_deploy_apigateway_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
- "test": "test_cfn_deploy_apigateway_models",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
- "test": "test_cfn_with_apigateway_resources",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
- "test": "test_rest_api_serverless_ref_resolving",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
- "test": "test_update_usage_plan",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
- "test": "test_url_output",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
- "test": "test_cdk_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
- "test": "test_cfn_handle_serverless_api_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
- "test": "test_sam_policies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
- "test": "test_apigateway_invoke",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
- "test": "test_apigateway_invoke_localhost",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
- "test": "test_apigateway_invoke_localhost_with_path",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
- "test": "test_apigateway_invoke_with_path",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_api_gateway_with_policy_as_dict",
+ "test": "test_api_gateway_with_policy_as_dict",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
- "test": "test_step_functions_calling_api_gateway",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger",
+ "test": "test_cfn_deploy_apigateway_from_s3_swagger",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..tracingConfiguration']",
+ "snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
+ "test": "test_cfn_deploy_apigateway_integration",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
}
],
@@ -15540,16 +15254,6 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Authorizers::test_create_apigateway_authorizer",
- "test": "test_create_apigateway_authorizer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
}
]
}
@@ -15705,16 +15409,6 @@
"GetStage": {
"restApiId, stageName": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_http_integration_with_path_request_parameter",
"test": "test_api_gateway_http_integration_with_path_request_parameter",
@@ -15886,50 +15580,80 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
- "test": "test_scenario_validate_infra",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
+ "test": "test_cfn_apigateway_swagger_import",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
+ "snapshot_tested": false,
+ "origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
- "test": "test_cfn_apigateway_aws_integration",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
+ "test": "test_cfn_apigateway_swagger_import",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
- "test": "test_cfn_apigateway_swagger_import",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
+ "test": "test_sam_policies",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_swagger_import",
- "test": "test_cfn_apigateway_swagger_import",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
+ "test": "test_notes_rest_api",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_asynchronous_invocation",
+ "test": "test_api_gateway_lambda_asynchronous_invocation",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
+ "test": "test_scenario_validate_infra",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
+ "test": "test_cfn_apigateway_aws_integration",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_from_s3_swagger",
"test": "test_cfn_deploy_apigateway_from_s3_swagger",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "['$.resources.items..resourceMethods.GET']",
"aws_validated": true,
"snapshot_tested": true,
@@ -15938,8 +15662,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
"test": "test_cfn_deploy_apigateway_integration",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
@@ -15948,8 +15672,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_models",
"test": "test_cfn_deploy_apigateway_models",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
@@ -15958,8 +15682,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_with_apigateway_resources",
"test": "test_cfn_with_apigateway_resources",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
@@ -15968,8 +15692,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
"test": "test_rest_api_serverless_ref_resolving",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
@@ -15978,8 +15702,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
"test": "test_update_usage_plan",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
@@ -15988,8 +15712,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
"test": "test_url_output",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
@@ -15998,8 +15722,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
"test": "test_cdk_template",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
@@ -16008,28 +15732,18 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
"test": "test_cfn_handle_serverless_api_resource",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
- "test": "test_sam_policies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
"test": "test_apigateway_invoke",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
@@ -16038,8 +15752,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
"test": "test_apigateway_invoke_localhost",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
@@ -16048,8 +15762,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
"test": "test_apigateway_invoke_localhost_with_path",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
@@ -16058,8 +15772,8 @@
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
"test": "test_apigateway_invoke_with_path",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
@@ -16068,22 +15782,12 @@
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
"test": "test_step_functions_calling_api_gateway",
- "response": "200",
- "error": "",
+ "response": "404",
+ "error": "NotFoundException",
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_asynchronous_invocation",
- "test": "test_api_gateway_lambda_asynchronous_invocation",
- "response": "404",
- "error": "NotFoundException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
}
],
"ls_pro": [
@@ -16176,6 +15880,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "404",
+ "error": "NotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -16290,16 +16004,6 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
- "test": "test_cfn_deploy_apigateway_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
}
],
"ls_pro": [
@@ -16968,26 +16672,6 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
- "test": "test_cfn_deploy_apigateway_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
- "test": "test_update_usage_plan",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
}
],
"ls_pro": [
@@ -17383,7 +17067,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -18204,8 +17888,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18214,8 +17898,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18224,8 +17908,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18234,8 +17918,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18244,8 +17928,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18254,8 +17938,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18264,8 +17948,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18274,8 +17958,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18890,8 +18574,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18900,8 +18584,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18910,8 +18594,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18920,8 +18604,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18930,8 +18614,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18940,8 +18624,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18950,8 +18634,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -18960,8 +18644,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -19819,7 +19503,7 @@
"snapshot_skipped": "['$.get-method-post.methodIntegration.connectionType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -19833,7 +19517,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration",
@@ -19963,7 +19647,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -20046,8 +19730,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20056,8 +19740,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20066,8 +19750,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20076,8 +19760,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20086,8 +19770,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20096,8 +19780,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20106,8 +19790,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20116,8 +19800,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -20429,7 +20113,7 @@
"snapshot_skipped": "['$.get-resources.items..resourceMethods.ANY']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -20443,7 +20127,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
@@ -20453,7 +20137,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -20463,7 +20147,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_deploy_apigateway_integration",
@@ -20473,7 +20157,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_update_usage_plan",
@@ -20483,7 +20167,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -20493,7 +20177,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -20503,7 +20187,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -20513,7 +20197,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -20523,7 +20207,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -20533,7 +20217,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -20543,7 +20227,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -20553,7 +20237,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -21596,8 +21280,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -21606,8 +21290,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -21616,8 +21300,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -21626,8 +21310,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -21636,8 +21320,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -21646,8 +21330,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-False-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-False-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -21656,8 +21340,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-False]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-False]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.HOST_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -21666,8 +21350,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://denied-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://denied-True-UrlType.PATH_BASED]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -22287,6 +21971,18 @@
"snapshot_tested": true,
"origin": "external"
}
+ ],
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
]
}
},
diff --git a/data/coverage/apigatewayv2.json b/data/coverage/apigatewayv2.json
index 2e5d34e1e9..588b364813 100644
--- a/data/coverage/apigatewayv2.json
+++ b/data/coverage/apigatewayv2.json
@@ -187,8 +187,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -332,7 +332,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -643,8 +643,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -703,7 +703,7 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
+ "external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
@@ -715,8 +715,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -859,8 +859,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2053,7 +2053,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2267,7 +2267,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3121,7 +3121,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -4005,7 +4005,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -4101,7 +4101,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -4889,7 +4889,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -5641,7 +5641,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_v2_dynamic_proxy_paths",
@@ -5731,7 +5731,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_sam_api_tagging",
@@ -5741,7 +5741,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -5751,7 +5751,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -5767,7 +5767,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -5777,7 +5777,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -6403,7 +6403,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
@@ -6623,7 +6623,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_create_apigatewayv2_resources",
@@ -6633,7 +6633,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_sam_api_tagging",
@@ -6643,7 +6643,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -6653,7 +6653,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -6695,7 +6695,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -6987,7 +6987,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_create_apigatewayv2_resources",
@@ -6997,7 +6997,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_domain_name_attributes",
@@ -7007,7 +7007,7 @@
"snapshot_skipped": "['$..Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7023,7 +7023,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -7033,7 +7033,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7099,7 +7099,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7135,7 +7135,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7167,7 +7167,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_api_mapping_deployment",
@@ -7177,7 +7177,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_sam_api_tagging",
@@ -7187,7 +7187,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -7197,7 +7197,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7213,7 +7213,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -7223,7 +7223,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/appconfig.json b/data/coverage/appconfig.json
index 2466b2b530..80677a865c 100644
--- a/data/coverage/appconfig.json
+++ b/data/coverage/appconfig.json
@@ -273,8 +273,8 @@
"internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -285,8 +285,8 @@
"internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -596,6 +596,26 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -609,7 +629,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -650,6 +670,26 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -691,12 +731,36 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
},
"CreateDeploymentStrategy": {
+ "DeploymentDurationInMinutes, GrowthFactor, Name": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
"DeploymentDurationInMinutes, GrowthFactor, Name, ReplicateTo": {
"ls_pro": [
{
@@ -731,12 +795,36 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
},
"CreateEnvironment": {
+ "ApplicationId, Description, Name": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
"ApplicationId, Description, Name, Tags": {
"ls_pro": [
{
@@ -795,7 +883,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -813,6 +901,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
"test": "test_application_deployment",
@@ -821,7 +929,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -913,6 +1021,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
"test": "test_application_deployment",
@@ -921,7 +1049,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -969,6 +1097,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
"test": "test_application_deployment",
@@ -977,7 +1125,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -995,6 +1143,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
"test": "test_application_deployment",
@@ -1003,7 +1171,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1041,6 +1209,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
"test": "test_application_deployment",
@@ -1049,7 +1237,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1085,7 +1273,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1303,6 +1491,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_hosted_configuration_version_crud_workflow",
"test": "test_hosted_configuration_version_crud_workflow",
@@ -1328,6 +1536,26 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
}
]
}
@@ -1394,6 +1622,46 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -1502,6 +1770,46 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -1529,6 +1837,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
"test": "test_application_deployment",
@@ -1610,6 +1938,26 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -1633,7 +1981,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1649,7 +1997,7 @@
"snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/appconfigdata.json b/data/coverage/appconfigdata.json
new file mode 100644
index 0000000000..66442b9472
--- /dev/null
+++ b/data/coverage/appconfigdata.json
@@ -0,0 +1,134 @@
+{
+ "service": "appconfigdata",
+ "pro_support": true,
+ "operations": [
+ {
+ "GetLatestConfiguration": {
+ "implemented": true,
+ "availability": "pro",
+ "internal_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "snapshot_skipped": ""
+ }
+ },
+ {
+ "StartConfigurationSession": {
+ "implemented": true,
+ "availability": "pro",
+ "internal_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "snapshot_skipped": ""
+ }
+ }
+ ],
+ "details": {
+ "GetLatestConfiguration": {
+ "ConfigurationToken": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "400",
+ "error": "BadRequestException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_invalid_token",
+ "test": "test_invalid_token",
+ "response": "400",
+ "error": "BadRequestException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "StartConfigurationSession": {
+ "ApplicationIdentifier, ConfigurationProfileIdentifier, EnvironmentIdentifier": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_app_config_by_name",
+ "test": "test_get_app_config_by_name",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "404",
+ "error": "ResourceNotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "404",
+ "error": "ResourceNotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_get_latest_app_config",
+ "test": "test_get_latest_app_config",
+ "response": "404",
+ "error": "ResourceNotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/data/coverage/application-autoscaling.json b/data/coverage/application-autoscaling.json
index c107adea90..10495342e9 100644
--- a/data/coverage/application-autoscaling.json
+++ b/data/coverage/application-autoscaling.json
@@ -171,7 +171,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_application_autoscaling.py::TestAppAutoscaling::test_put_scaling_policy",
@@ -197,7 +197,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -269,7 +269,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -285,7 +285,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/appsync.json b/data/coverage/appsync.json
index a28d636cde..9e412fdcb4 100644
--- a/data/coverage/appsync.json
+++ b/data/coverage/appsync.json
@@ -43,8 +43,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -56,7 +56,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -67,8 +67,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -91,8 +91,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -104,7 +104,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -115,8 +115,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -139,8 +139,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -152,7 +152,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -163,8 +163,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -187,10 +187,10 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -200,7 +200,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -211,8 +211,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -319,8 +319,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -331,8 +331,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -355,8 +355,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -368,7 +368,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -391,8 +391,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -403,8 +403,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -427,8 +427,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -440,7 +440,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -572,7 +572,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -596,7 +596,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -608,7 +608,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -631,8 +631,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -643,8 +643,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -667,8 +667,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -680,7 +680,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -691,8 +691,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -839,6 +839,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
"test": "test_http_data_source_detailed",
@@ -869,6 +879,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_js_utils",
"test": "test_js_utils",
@@ -958,6 +978,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -971,7 +1001,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1049,6 +1079,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
"test": "test_websocket_subscriptions",
@@ -1057,7 +1097,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
@@ -1068,6 +1108,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -1102,6 +1152,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -1346,6 +1406,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -1359,7 +1429,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_function",
@@ -1485,6 +1555,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
"test": "test_http_data_source_detailed",
@@ -1515,6 +1595,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -1655,6 +1745,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_introspection_schema_with_directive_declarations",
+ "test": "test_introspection_schema_with_directive_declarations",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
"test": "test_resolver_with_cache",
@@ -1675,6 +1775,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphql_schema",
"test": "test_graphql_schema",
@@ -1683,7 +1793,7 @@
"snapshot_skipped": "['$..type.format', '$..type.definition', '$..SchemaRef']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphqlapi",
@@ -1693,7 +1803,7 @@
"snapshot_skipped": "['$..graphqlApi.tags', '$..graphqlApi.xrayEnabled', '$..graphqlApi.arn']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1751,7 +1861,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1822,6 +1932,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -1871,6 +1991,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -1939,7 +2079,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
@@ -2095,6 +2235,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
"test": "test_http_data_source_detailed",
@@ -2125,6 +2275,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_js_utils",
"test": "test_js_utils",
@@ -2196,14 +2356,14 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
- "test": "test_websocket_subscriptions",
- "response": "404",
- "error": "NotFoundException",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
@@ -2301,6 +2461,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_data_source",
"test": "test_lambda_data_source",
@@ -2341,6 +2511,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
"test": "test_websocket_subscriptions",
@@ -2349,7 +2529,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2403,6 +2583,16 @@
"DeleteFunction": {
"apiId, functionId": {
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
"test": "test_websocket_subscriptions",
@@ -2411,7 +2601,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2509,6 +2699,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
"test": "test_http_data_source_detailed",
@@ -2539,6 +2739,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -2657,7 +2867,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_api_key",
@@ -2729,6 +2939,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_introspection_schema_with_directive_declarations",
+ "test": "test_introspection_schema_with_directive_declarations",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
"test": "test_resolver_with_cache",
@@ -2749,6 +2969,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphql_schema",
"test": "test_graphql_schema",
@@ -2757,7 +2987,7 @@
"snapshot_skipped": "['$..type.format', '$..type.definition', '$..SchemaRef']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphqlapi",
@@ -2767,7 +2997,7 @@
"snapshot_skipped": "['$..graphqlApi.tags', '$..graphqlApi.xrayEnabled', '$..graphqlApi.arn']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_glacier_deployed",
@@ -2815,6 +3045,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -2855,6 +3095,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
"test": "test_websocket_subscriptions",
@@ -2863,7 +3113,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -3025,6 +3275,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_introspection_schema_with_directive_declarations",
+ "test": "test_introspection_schema_with_directive_declarations",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphql_schema",
"test": "test_graphql_schema",
@@ -3097,6 +3357,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
"test": "test_http_data_source_detailed",
@@ -3127,6 +3397,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -3247,6 +3527,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_introspection_schema_with_directive_declarations",
+ "test": "test_introspection_schema_with_directive_declarations",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_appsync_deployed",
"test": "test_appsync_deployed",
@@ -3531,6 +3831,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
"test": "test_http_data_source_detailed",
@@ -3561,6 +3871,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_vtl_template",
+ "test": "test_http_data_source_vtl_template",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -3679,7 +3999,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_introspection_schema",
@@ -3691,6 +4011,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_introspection_schema_with_directive_declarations",
+ "test": "test_introspection_schema_with_directive_declarations",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphql_schema",
"test": "test_graphql_schema",
@@ -3699,7 +4039,7 @@
"snapshot_skipped": "['$..type.format', '$..type.definition', '$..SchemaRef']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_appsync_deployed",
diff --git a/data/coverage/athena.json b/data/coverage/athena.json
index a3c7d2d583..fd14fd58b0 100644
--- a/data/coverage/athena.json
+++ b/data/coverage/athena.json
@@ -831,7 +831,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -861,7 +861,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -891,7 +891,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -945,7 +945,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -971,7 +971,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -987,7 +987,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
diff --git a/data/coverage/autoscaling.json b/data/coverage/autoscaling.json
index 1966786d15..f3ce6c6d3d 100644
--- a/data/coverage/autoscaling.json
+++ b/data/coverage/autoscaling.json
@@ -164,7 +164,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -188,7 +188,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -199,8 +199,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -332,7 +332,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -392,7 +392,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -428,7 +428,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -512,7 +512,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -632,7 +632,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -644,7 +644,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -809,7 +809,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -823,7 +823,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -867,7 +867,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -877,7 +877,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -927,7 +927,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -937,7 +937,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -973,7 +973,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -983,7 +983,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/cloudformation.json b/data/coverage/cloudformation.json
index e117a0b819..9a0e398916 100644
--- a/data/coverage/cloudformation.json
+++ b/data/coverage/cloudformation.json
@@ -1041,6 +1041,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]",
+ "test": "test_conditional_att_to_conditional_resources[create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]",
+ "test": "test_conditional_att_to_conditional_resources[no-create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]",
"test": "test_conditional_in_conditional[dev-us-west-2]",
@@ -2123,6 +2143,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -2268,11 +2298,21 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
"test": "test_cdk_trail_cw_logs",
@@ -2417,6 +2457,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency",
+ "test": "test_unexisting_resource_dependency",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]",
"test": "test_get_template[json]",
@@ -2707,6 +2757,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
"test": "test_internet_gateway_ref_and_attr",
@@ -3489,6 +3549,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -3519,6 +3589,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/iotanalytics/test_iotanalytics.py::TestIotAnalytics::test_create_iotanalytics_resources",
"test": "test_create_iotanalytics_resources",
@@ -3534,7 +3614,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3544,7 +3624,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3711,7 +3791,7 @@
"snapshot_skipped": "['$..Role.Description', '$..Role.MaxSessionDuration', '$..Role.AssumeRolePolicyDocument..Action']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack",
@@ -3721,7 +3801,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack_output_refs",
@@ -3731,7 +3811,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -4151,16 +4231,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda_cfn.py::TestApigatewayLambdaIntegration::test_scenario_validate_infra",
"test": "test_scenario_validate_infra",
@@ -4311,6 +4381,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency",
+ "test": "test_unexisting_resource_dependency",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]",
"test": "test_get_template[json]",
@@ -4551,6 +4631,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]",
+ "test": "test_conditional_att_to_conditional_resources[create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]",
+ "test": "test_conditional_att_to_conditional_resources[no-create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]",
"test": "test_conditional_in_conditional[dev-us-west-2]",
@@ -5081,6 +5181,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
"test": "test_internet_gateway_ref_and_attr",
@@ -5101,6 +5211,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_elasticsearch.py::test_cfn_handle_elasticsearch_domain",
+ "test": "test_cfn_handle_elasticsearch_domain",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
"test": "test_cfn_event_bus_resource",
@@ -6633,6 +6753,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -6653,6 +6783,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -6868,11 +7008,31 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
"test": "test_cdk_trail_cw_logs",
@@ -6893,6 +7053,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_create_iot_resources",
"test": "test_create_iot_resources",
@@ -6928,7 +7098,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7141,6 +7311,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency",
+ "test": "test_unexisting_resource_dependency",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]",
"test": "test_get_template[json]",
@@ -7341,6 +7521,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]",
+ "test": "test_conditional_att_to_conditional_resources[create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]",
+ "test": "test_conditional_att_to_conditional_resources[no-create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]",
"test": "test_conditional_in_conditional[dev-us-west-2]",
@@ -7861,6 +8061,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
"test": "test_internet_gateway_ref_and_attr",
@@ -9403,6 +9613,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -9423,6 +9643,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -9608,11 +9838,31 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
"test": "test_cdk_trail_cw_logs",
@@ -9658,7 +9908,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -9668,7 +9918,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -9733,6 +9983,16 @@
"DescribeStackEvents": {
"StackName": {
"ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency",
+ "test": "test_unexisting_resource_dependency",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_events_after_deployment",
"test": "test_list_events_after_deployment",
@@ -10455,6 +10715,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_create_iot_resources",
"test": "test_create_iot_resources",
@@ -10480,7 +10750,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -10490,7 +10760,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -10777,6 +11047,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency",
+ "test": "test_unexisting_resource_dependency",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]",
"test": "test_get_template[json]",
@@ -10997,6 +11277,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]",
+ "test": "test_conditional_att_to_conditional_resources[create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]",
+ "test": "test_conditional_att_to_conditional_resources[no-create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]",
"test": "test_conditional_in_conditional[dev-us-west-2]",
@@ -11527,6 +11827,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
"test": "test_internet_gateway_ref_and_attr",
@@ -13219,6 +13529,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -13239,6 +13559,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -13454,11 +13784,31 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
"test": "test_cdk_trail_cw_logs",
@@ -13479,6 +13829,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_create_job_with_cloudformation",
"test": "test_create_job_with_cloudformation",
@@ -13514,7 +13874,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13534,7 +13894,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13554,7 +13914,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13564,7 +13924,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13584,7 +13944,7 @@
"test": "test_describe",
"response": "400",
"error": "ValidationError",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13594,7 +13954,7 @@
"test": "test_validate_initial_setup",
"response": "400",
"error": "ValidationError",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13755,6 +14115,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency",
+ "test": "test_unexisting_resource_dependency",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]",
"test": "test_get_template[json]",
@@ -13955,6 +14325,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]",
+ "test": "test_conditional_att_to_conditional_resources[create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]",
+ "test": "test_conditional_att_to_conditional_resources[no-create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]",
"test": "test_conditional_in_conditional[dev-us-west-2]",
@@ -14475,6 +14865,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
"test": "test_internet_gateway_ref_and_attr",
@@ -16017,6 +16417,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -16037,6 +16447,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -16212,11 +16632,31 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
"test": "test_cdk_trail_cw_logs",
@@ -16262,7 +16702,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -16272,7 +16712,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
diff --git a/data/coverage/cloudfront.json b/data/coverage/cloudfront.json
index e25fdcf66a..6c0830a558 100644
--- a/data/coverage/cloudfront.json
+++ b/data/coverage/cloudfront.json
@@ -45,7 +45,7 @@
"internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"snapshot_skipped": ""
}
@@ -126,7 +126,7 @@
"CreateInvalidation": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
@@ -163,8 +163,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -210,11 +210,11 @@
"CreateResponseHeadersPolicy": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -258,7 +258,7 @@
"DeleteCloudFrontOriginAccessIdentity": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": false,
@@ -355,8 +355,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -402,11 +402,11 @@
"DeleteResponseHeadersPolicy": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -462,7 +462,7 @@
"GetCloudFrontOriginAccessIdentity": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": false,
@@ -582,7 +582,7 @@
"GetFunction": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
@@ -594,7 +594,7 @@
"GetInvalidation": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
@@ -643,8 +643,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -654,11 +654,11 @@
"GetOriginAccessControlConfig": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -726,11 +726,11 @@
"GetResponseHeadersPolicy": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -789,7 +789,7 @@
"internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"snapshot_skipped": ""
}
@@ -942,7 +942,7 @@
"ListInvalidations": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
@@ -979,8 +979,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1014,11 +1014,11 @@
"ListResponseHeadersPolicies": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -1038,7 +1038,7 @@
"ListTagsForResource": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": false,
@@ -1086,7 +1086,7 @@
"UntagResource": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
@@ -1134,7 +1134,7 @@
"UpdateDistribution": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": false,
@@ -1182,7 +1182,7 @@
"UpdateFunction": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
@@ -1206,11 +1206,11 @@
"UpdateOriginAccessControl": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -1218,7 +1218,7 @@
"UpdateOriginRequestPolicy": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": false,
@@ -1254,11 +1254,11 @@
"UpdateResponseHeadersPolicy": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -1287,7 +1287,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1303,7 +1303,27 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_access_identity",
+ "test": "test_create_origin_access_identity",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1391,6 +1411,76 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_invalidation",
+ "test": "test_create_invalidation",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[False]",
+ "test": "test_custom_errors[False]",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[True]",
+ "test": "test_custom_errors[True]",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_get_distributions",
+ "test": "test_get_distributions",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_invalidation_waiter",
+ "test": "test_invalidation_waiter",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_invoke_distribution",
+ "test": "test_invoke_distribution",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_update_distribution",
+ "test": "test_update_distribution",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
"test": "test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
@@ -1465,7 +1555,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_create_stack_cloudfront",
@@ -1475,7 +1565,37 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_distribution_with_tags",
+ "test": "test_distribution_with_tags",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1491,7 +1611,63 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
+ "response": "409",
+ "error": "FunctionAlreadyExists",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "CreateInvalidation": {
+ "DistributionId, InvalidationBatch": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_invalidation",
+ "test": "test_create_invalidation",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_invalidation_waiter",
+ "test": "test_invalidation_waiter",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_invalidation",
+ "test": "test_create_invalidation",
+ "response": "404",
+ "error": "NoSuchDistribution",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1507,7 +1683,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_origin_access_control",
+ "test": "test_origin_access_control",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -1534,11 +1720,57 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
+ "response": "409",
+ "error": "OriginRequestPolicyAlreadyExists",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
},
- "DeleteCachePolicy": {
+ "CreateResponseHeadersPolicy": {
+ "ResponseHeadersPolicyConfig": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
+ "response": "400",
+ "error": "InvalidArgument",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DeleteCachePolicy": {
"Id, IfMatch": {
"ls_pro": [
{
@@ -1549,7 +1781,23 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DeleteCloudFrontOriginAccessIdentity": {
+ "Id, IfMatch": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_access_identity",
+ "test": "test_create_origin_access_identity",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1635,7 +1883,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_create_stack_cloudfront",
@@ -1645,7 +1893,97 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_invalidation",
+ "test": "test_create_invalidation",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[False]",
+ "test": "test_custom_errors[False]",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[True]",
+ "test": "test_custom_errors[True]",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_distribution_with_tags",
+ "test": "test_distribution_with_tags",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_get_distributions",
+ "test": "test_get_distributions",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_invalidation_waiter",
+ "test": "test_invalidation_waiter",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_update_distribution",
+ "test": "test_update_distribution",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
@@ -1722,6 +2060,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1729,6 +2077,16 @@
"DeleteOriginAccessControl": {
"Id, IfMatch": {
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_origin_access_control",
+ "test": "test_origin_access_control",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
"test": "test_origin_access_control",
@@ -1737,7 +2095,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1747,7 +2105,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1757,7 +2115,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1767,7 +2125,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1777,7 +2135,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1787,7 +2145,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1797,7 +2155,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1807,7 +2165,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1817,7 +2175,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
@@ -1827,7 +2185,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1854,6 +2212,32 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DeleteResponseHeadersPolicy": {
+ "Id, IfMatch": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -1890,6 +2274,32 @@
]
}
},
+ "GetCloudFrontOriginAccessIdentity": {
+ "Id": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_access_identity",
+ "test": "test_create_origin_access_identity",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_access_identity",
+ "test": "test_create_origin_access_identity",
+ "response": "404",
+ "error": "NoSuchCloudFrontOriginAccessIdentity",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"GetDistribution": {
"Id": {
"ls_pro": [
@@ -1902,6 +2312,68 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_update_distribution",
+ "test": "test_update_distribution",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "GetFunction": {
+ "Name, Stage": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
+ "response": "404",
+ "error": "NoSuchFunctionExists",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "GetInvalidation": {
+ "DistributionId, Id": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_invalidation",
+ "test": "test_create_invalidation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_invalidation_waiter",
+ "test": "test_invalidation_waiter",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1918,6 +2390,32 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_origin_access_control",
+ "test": "test_origin_access_control",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "GetOriginAccessControlConfig": {
+ "Id": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_origin_access_control",
+ "test": "test_origin_access_control",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -1944,6 +2442,52 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
+ "response": "404",
+ "error": "NoSuchOriginRequestPolicy",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "GetResponseHeadersPolicy": {
+ "Id": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
+ "response": "404",
+ "error": "NoSuchResponseHeadersPolicy",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -1976,6 +2520,26 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_access_identity",
+ "test": "test_create_origin_access_identity",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -2002,6 +2566,36 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_get_distributions",
+ "test": "test_get_distributions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -2018,6 +2612,32 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "ListInvalidations": {
+ "DistributionId, Marker, MaxItems": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_invalidation",
+ "test": "test_create_invalidation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -2044,6 +2664,144 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "ListResponseHeadersPolicies": {
+ "Marker, MaxItems, Type": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "ListTagsForResource": {
+ "Resource": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_distribution_with_tags",
+ "test": "test_distribution_with_tags",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "UntagResource": {
+ "Resource, TagKeys": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_distribution_with_tags",
+ "test": "test_distribution_with_tags",
+ "response": "204",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "UpdateDistribution": {
+ "DistributionConfig, Id, IfMatch": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_update_distribution",
+ "test": "test_update_distribution",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "UpdateFunction": {
+ "FunctionCode, FunctionConfig, IfMatch, Name": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "UpdateOriginAccessControl": {
+ "Id, IfMatch, OriginAccessControlConfig": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_origin_access_control",
+ "test": "test_origin_access_control",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "UpdateOriginRequestPolicy": {
+ "Id, IfMatch, OriginRequestPolicyConfig": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "UpdateResponseHeadersPolicy": {
+ "Id, IfMatch, ResponseHeadersPolicyConfig": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
diff --git a/data/coverage/cloudtrail.json b/data/coverage/cloudtrail.json
index 59253ed18a..c2df3bda78 100644
--- a/data/coverage/cloudtrail.json
+++ b/data/coverage/cloudtrail.json
@@ -8,7 +8,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -380,7 +380,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -416,7 +416,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -511,8 +511,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -567,7 +567,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -662,10 +662,10 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -678,10 +678,10 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -691,7 +691,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_create_trail",
@@ -928,7 +928,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1072,7 +1072,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
diff --git a/data/coverage/cloudwatch.json b/data/coverage/cloudwatch.json
index 8e7e550931..2355d0b2e7 100644
--- a/data/coverage/cloudwatch.json
+++ b/data/coverage/cloudwatch.json
@@ -30,11 +30,11 @@
"DeleteDashboards": {
"implemented": true,
"availability": "community",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -174,11 +174,11 @@
"GetDashboard": {
"implemented": true,
"availability": "community",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -246,11 +246,11 @@
"ListDashboards": {
"implemented": true,
"availability": "community",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -330,11 +330,11 @@
"PutDashboard": {
"implemented": true,
"availability": "community",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -471,7 +471,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_breaching_alarm_actions",
@@ -546,6 +546,22 @@
]
}
},
+ "DeleteDashboards": {
+ "DashboardNames": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_dashboard_lifecycle",
+ "test": "test_dashboard_lifecycle",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..DashboardArn']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"DescribeAlarms": {
"AlarmNames": {
"ls_community": [
@@ -559,6 +575,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudwatch.py::test_alarm_creation",
+ "test": "test_alarm_creation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_breaching_alarm_actions",
"test": "test_breaching_alarm_actions",
@@ -728,6 +754,22 @@
]
}
},
+ "GetDashboard": {
+ "DashboardName": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_dashboard_lifecycle",
+ "test": "test_dashboard_lifecycle",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..DashboardArn']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"GetMetricData": {
"EndTime, MetricDataQueries, StartTime": {
"ls_community": [
@@ -850,6 +892,22 @@
]
}
},
+ "ListDashboards": {
+ "- (without any parameters)": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_dashboard_lifecycle",
+ "test": "test_dashboard_lifecycle",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..DashboardArn']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"ListMetrics": {
"- (without any parameters)": {
"ls_community": [
@@ -918,20 +976,6 @@
"origin": "external"
}
]
- },
- "NextToken": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_multiple_dimensions",
- "test": "test_multiple_dimensions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
}
},
"ListTagsForResource": {
@@ -966,6 +1010,22 @@
]
}
},
+ "PutDashboard": {
+ "DashboardBody, DashboardName": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_dashboard_lifecycle",
+ "test": "test_dashboard_lifecycle",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..DashboardArn']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"PutMetricAlarm": {
"ActionsEnabled, AlarmActions, AlarmDescription, AlarmName, ComparisonOperator, Dimensions, EvaluationPeriods, MetricName, Namespace, OKActions, Period, Statistic, Threshold, TreatMissingData, Unit": {
"ls_community": [
@@ -1029,7 +1089,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_describe_alarms_converts_date_format_correctly",
@@ -1207,6 +1267,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_api.py::TestApiGatewayApi::test_update_rest_api_compression",
+ "test": "test_update_rest_api_compression",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_handle_domain_name",
"test": "test_api_gateway_handle_domain_name",
@@ -1217,6 +1287,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_http_integration_with_path_request_parameter",
+ "test": "test_api_gateway_http_integration_with_path_request_parameter",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_asynchronous_invocation",
"test": "test_api_gateway_lambda_asynchronous_invocation",
@@ -1348,8 +1428,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-True]",
- "test": "test_invoke_endpoint_cors_headers[http://allowed-True-True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
+ "test": "test_invoke_endpoint_cors_headers[http://allowed-True-UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1368,8 +1448,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template",
- "test": "test_put_integration_dynamodb_proxy_validation_with_request_template",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_without_request_template",
+ "test": "test_put_integration_dynamodb_proxy_validation_without_request_template",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1468,8 +1548,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[True]",
- "test": "test_create_delete_deployments[True]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestStages::test_create_update_stages",
+ "test": "test_create_update_stages",
"response": "200",
"error": "",
"snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
@@ -1478,8 +1558,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[PutItem]",
- "test": "test_rest_api_to_dynamodb_integration[PutItem]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_dynamodb.py::test_rest_api_to_dynamodb_integration[Query]",
+ "test": "test_rest_api_to_dynamodb_integration[Query]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..headers.connection', '$..headers.x-amz-apigw-id', '$..headers.x-amzn-requestid', '$..headers.x-amzn-trace-id', '$..headers.server']",
@@ -1507,6 +1587,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_kinesis.py::test_apigateway_to_kinesis",
+ "test": "test_apigateway_to_kinesis",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..EncryptionType', '$..ChildShards']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration",
"test": "test_lambda_aws_integration",
@@ -1597,6 +1687,26 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_changesets.py::test_create_and_then_remove_non_supported_resource_change_set",
+ "test": "test_create_and_then_remove_non_supported_resource_change_set",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_changesets.py::test_create_change_set_with_ssm_parameter",
+ "test": "test_create_change_set_with_ssm_parameter",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_nested_stacks.py::test_nested_stack",
"test": "test_nested_stack",
@@ -1608,88 +1718,98 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[json]",
- "test": "test_get_template[json]",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_with_same_template_withoutchange",
+ "test": "test_update_stack_with_same_template_withoutchange",
"response": "200",
"error": "",
"snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_transformers.py::test_duplicate_resources",
+ "test": "test_duplicate_resources",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_get_template[yaml]",
- "test": "test_get_template[yaml]",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]",
+ "test": "test_conditional_att_to_conditional_resources[create]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_events_after_deployment",
- "test": "test_list_events_after_deployment",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]",
+ "test": "test_conditional_att_to_conditional_resources[no-create]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..StackEvents']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_stack_resources_for_removed_resource",
- "test": "test_list_stack_resources_for_removed_resource",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]",
+ "test": "test_conditional_in_conditional[dev-us-west-2]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_description_special_chars",
- "test": "test_stack_description_special_chars",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[production-us-east-1]",
+ "test": "test_conditional_in_conditional[production-us-east-1]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_lifecycle",
- "test": "test_stack_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_with_select",
+ "test": "test_conditional_with_select",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_name_creation",
- "test": "test_stack_name_creation",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[None-FallbackParamValue]",
+ "test": "test_dependency_in_non_evaluated_if_branch[None-FallbackParamValue]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_stack_update_resources",
- "test": "test_stack_update_resources",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[false-DefaultParamValue]",
+ "test": "test_dependency_in_non_evaluated_if_branch[false-DefaultParamValue]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ParameterValue', '$..PhysicalResourceId', '$..Capabilities']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_actual_update",
- "test": "test_update_stack_actual_update",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_dependency_in_non_evaluated_if_branch[true-FallbackParamValue]",
+ "test": "test_dependency_in_non_evaluated_if_branch[true-FallbackParamValue]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1698,28 +1818,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_update_stack_with_same_template_withoutchange",
- "test": "test_update_stack_with_same_template_withoutchange",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_condition_evaluation_deploys_resource",
+ "test": "test_simple_condition_evaluation_deploys_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::test_events_resource_types",
- "test": "test_events_resource_types",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_intrinsic_fn_condition_evaluation[nope]",
+ "test": "test_simple_intrinsic_fn_condition_evaluation[nope]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::test_list_parameter_type",
- "test": "test_list_parameter_type",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_simple_intrinsic_fn_condition_evaluation[yep]",
+ "test": "test_simple_intrinsic_fn_condition_evaluation[yep]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1728,21 +1848,21 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::test_update_termination_protection",
- "test": "test_update_termination_protection",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_sub_in_conditions",
+ "test": "test_sub_in_conditions",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::test_updating_an_updated_stack_sets_status",
- "test": "test_updating_an_updated_stack_sets_status",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_references.py::TestFnSub::test_fn_sub_cases",
+ "test": "test_fn_sub_cases",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Stacks..Parameters']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -1758,8 +1878,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_api_gateway_with_policy_as_dict",
- "test": "test_api_gateway_with_policy_as_dict",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
+ "test": "test_getatt",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "all",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
+ "test": "test_create_with_full_properties",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1768,18 +1898,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
- "test": "test_rest_api_serverless_ref_resolving",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_delete_role_detaches_role_policy",
+ "test": "test_delete_role_detaches_role_policy",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
- "test": "test_cdk_template",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
+ "test": "test_policy_attachments",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
+ "test": "test_cfn_apigateway_aws_integration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1788,43 +1928,43 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkSampleApp::test_cdk_sample",
- "test": "test_cdk_sample",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
+ "test": "test_rest_api_serverless_ref_resolving",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Attributes.Policy.Statement..Condition', '$..Attributes.Policy.Statement..Resource', '$..StackResourceSummaries..PhysicalResourceId']",
+ "snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudformation.py::test_create_macro",
- "test": "test_create_macro",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
+ "test": "test_cdk_template",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudformation.py::test_waitcondition",
- "test": "test_waitcondition",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkSampleApp::test_cdk_sample",
+ "test": "test_cdk_sample",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..WaitConditionName']",
+ "snapshot_skipped": "['$..Attributes.Policy.Statement..Condition', '$..Attributes.Policy.Statement..Resource', '$..StackResourceSummaries..PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table",
- "test": "test_deploy_stack_with_dynamodb_table",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudformation.py::test_create_macro",
+ "test": "test_create_macro",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
@@ -1847,6 +1987,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
+ "test": "test_firehose_stack_with_kinesis_as_source",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Destinations']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
"test": "test_events_sqs_sns_lambda",
@@ -1908,13 +2058,13 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources",
- "test": "test_cfn_with_kms_resources",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms",
+ "test": "test_deploy_stack_with_kms",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
@@ -2087,26 +2237,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_validate_template",
- "test": "test_validate_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_logs.py::test_logstream",
- "test": "test_logstream",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_opensearch.py::test_domain",
"test": "test_domain",
@@ -2118,18 +2248,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_health_check",
- "test": "test_create_health_check",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_opensearch.py::test_domain_with_alternative_types",
+ "test": "test_domain_with_alternative_types",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HealthCheckConfig.EnableSNI', '$..HealthCheckVersion']",
+ "snapshot_skipped": "['$..DomainStatus.AccessPolicies', '$..DomainStatus.AdvancedOptions.override_main_response_version', '$..DomainStatus.AdvancedSecurityOptions.AnonymousAuthEnabled', '$..DomainStatus.AutoTuneOptions.State', '$..DomainStatus.AutoTuneOptions.UseOffPeakWindow', '$..DomainStatus.ChangeProgressDetails', '$..DomainStatus.ClusterConfig.DedicatedMasterCount', '$..DomainStatus.ClusterConfig.InstanceCount', '$..DomainStatus.ClusterConfig.MultiAZWithStandbyEnabled', '$..DomainStatus.ClusterConfig.ZoneAwarenessConfig', '$..DomainStatus.ClusterConfig.ZoneAwarenessEnabled', '$..DomainStatus.EBSOptions.VolumeSize', '$..DomainStatus.Endpoint', '$..DomainStatus.OffPeakWindowOptions', '$..DomainStatus.ServiceSoftwareOptions.CurrentVersion', '$..DomainStatus.SoftwareUpdateOptions']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_id",
- "test": "test_create_record_set_via_id",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_autoname",
+ "test": "test_bucket_autoname",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2138,58 +2268,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_name",
- "test": "test_create_record_set_via_name",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_versioning",
+ "test": "test_bucket_versioning",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_without_resource_record",
- "test": "test_create_record_set_without_resource_record",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucketpolicy",
+ "test": "test_bucketpolicy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_autoname",
- "test": "test_bucket_autoname",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucket_versioning",
- "test": "test_bucket_versioning",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_bucketpolicy",
- "test": "test_bucketpolicy",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_cors_configuration",
- "test": "test_cors_configuration",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_s3.py::test_cors_configuration",
+ "test": "test_cors_configuration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2227,106 +2327,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sns.py::test_sns_topic_fifo_with_deduplication",
- "test": "test_sns_topic_fifo_with_deduplication",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_cfn_handle_sqs_resource",
- "test": "test_cfn_handle_sqs_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_fifo_queue_generates_valid_name",
- "test": "test_sqs_fifo_queue_generates_valid_name",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_non_fifo_queue_generates_valid_name",
- "test": "test_sqs_non_fifo_queue_generates_valid_name",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_queue_policy",
- "test": "test_sqs_queue_policy",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ssm.py::test_deploy_patch_baseline",
- "test": "test_deploy_patch_baseline",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DriftInformation', '$..Metadata']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ssm.py::test_maintenance_window",
- "test": "test_maintenance_window",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ssm.py::test_parameter_defaults",
- "test": "test_parameter_defaults",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ssm.py::test_update_ssm_parameter_tag",
- "test": "test_update_ssm_parameter_tag",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ssm.py::test_update_ssm_parameters",
- "test": "test_update_ssm_parameters",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
"test": "test_apigateway_invoke",
@@ -2367,16 +2367,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_cfn_statemachine_with_dependencies",
- "test": "test_cfn_statemachine_with_dependencies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
"test": "test_nested_statemachine_with_sync2",
@@ -2508,13 +2498,13 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_unsupported.py::test_unsupported",
- "test": "test_unsupported",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestTypes::test_implicit_type_conversion",
+ "test": "test_implicit_type_conversion",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
@@ -2557,16 +2547,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data",
- "test": "test_get_metric_data",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_list_metrics_uniqueness",
"test": "test_list_metrics_uniqueness",
@@ -2638,13 +2618,23 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/es/test_es.py::TestElasticsearchProvider::test_get_compatible_version_for_domain",
- "test": "test_get_compatible_version_for_domain",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_non_ascii_chars",
+ "test": "test_non_ascii_chars",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_destination_records",
+ "test": "test_stream_destination_records",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
@@ -2687,6 +2677,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_nonexistent_event_bus",
"test": "test_put_events_nonexistent_event_bus",
@@ -2747,6 +2747,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_kinesis",
+ "test": "test_put_events_with_target_kinesis",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_lambda",
"test": "test_put_events_with_target_lambda",
@@ -2777,6 +2787,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -2848,8 +2868,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup",
- "test": "test_kinesis_firehose_elasticsearch_s3_backup",
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_trigger_event_on_ssm_change[standard]",
+ "test": "test_trigger_event_on_ssm_change[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2858,8 +2878,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::test_firehose_http[True]",
- "test": "test_firehose_http[True]",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup",
+ "test": "test_kinesis_firehose_elasticsearch_s3_backup",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2868,18 +2888,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_recreate_iam_role",
- "test": "test_recreate_iam_role",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::test_firehose_http[True]",
+ "test": "test_firehose_http[True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_next_shard_iterator",
- "test": "test_get_records_next_shard_iterator",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_shard_count",
+ "test": "test_create_stream_without_shard_count",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2887,16 +2907,6 @@
"snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_record_lifecycle_data_integrity",
- "test": "test_record_lifecycle_data_integrity",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Records..EncryptionType']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_stream_consumers",
"test": "test_stream_consumers",
@@ -2908,18 +2918,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard",
- "test": "test_subscribe_to_shard",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Records..EncryptionType']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_timeout",
- "test": "test_subscribe_to_shard_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_256]",
+ "test": "test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_256]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2928,18 +2928,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_with_sequence_number_as_iterator",
- "test": "test_subscribe_to_shard_with_sequence_number_as_iterator",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_key_does_not_exist",
+ "test": "test_get_key_does_not_exist",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Records..EncryptionType']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl",
- "test": "test_run_kcl",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_key_usage",
+ "test": "test_invalid_key_usage",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2948,48 +2948,48 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_256]",
- "test": "test_encrypt_validate_plaintext_size_per_key_type[RSA_4096-RSAES_OAEP_SHA_256]",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_verify_mac[HMAC_256-HMAC_SHA_512-some important message]",
+ "test": "test_invalid_verify_mac[HMAC_256-HMAC_SHA_512-some important message]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_error_messaging_for_invalid_keys",
- "test": "test_error_messaging_for_invalid_keys",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_replicate_key",
+ "test": "test_replicate_key",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..KeyMetadata.Enabled', '$..KeyMetadata.KeyState', '$..KeyMetadata.MultiRegionConfiguration', '$..ReplicaKeyMetadata.Enabled', '$..ReplicaKeyMetadata.KeyState', '$..ReplicaKeyMetadata.MultiRegionConfiguration', '$..ReplicaPolicy']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_generate_random[1]",
- "test": "test_generate_random[1]",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[ECC_NIST_P256-ECDSA_SHA_256]",
+ "test": "test_sign_verify[ECC_NIST_P256-ECDSA_SHA_256]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Error.Message', '$..message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_invalid_key_usage",
- "test": "test_invalid_key_usage",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_2048-RSASSA_PSS_SHA_256]",
+ "test": "test_sign_verify[RSA_2048-RSASSA_PSS_SHA_256]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Error.Message', '$..message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_2048-RSASSA_PSS_SHA_384]",
- "test": "test_sign_verify[RSA_2048-RSASSA_PSS_SHA_384]",
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_sign_verify[RSA_2048-RSASSA_PSS_SHA_512]",
+ "test": "test_sign_verify[RSA_2048-RSASSA_PSS_SHA_512]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..Error.Message', '$..message']",
@@ -3017,26 +3017,6 @@
"snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_tag_untag_list_tags",
- "test": "test_tag_untag_list_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMSGenerateKeys::test_encryption_context_generate_data_key_pair_without_plaintext",
- "test": "test_encryption_context_generate_data_key_pair_without_plaintext",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..message']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMSMultiAccounts::test_cross_accounts_access",
"test": "test_cross_accounts_access",
@@ -3367,16 +3347,6 @@
"snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invoke_exceptions",
- "test": "test_invoke_exceptions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_upload_lambda_from_s3",
"test": "test_upload_lambda_from_s3",
@@ -3667,16 +3637,6 @@
"snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function]",
- "test": "test_get_function_wrong_region[get_function]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_get_function_wrong_region[get_function_code_signing_config]",
"test": "test_get_function_wrong_region[get_function_code_signing_config]",
@@ -3768,8 +3728,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_version[get_function]",
- "test": "test_ops_on_nonexisting_version[get_function]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_on_nonexisting_fn[get_function_code_signing_config]",
+ "test": "test_ops_on_nonexisting_fn[get_function_code_signing_config]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
@@ -3797,6 +3757,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_ops_with_arn_qualifier_mismatch[get_function]",
+ "test": "test_ops_with_arn_qualifier_mismatch[get_function]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_redundant_updates",
"test": "test_redundant_updates",
@@ -4097,6 +4067,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java11]",
+ "test": "test_snapstart_update_function_configuration[java11]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java17]",
"test": "test_snapstart_update_function_configuration[java17]",
@@ -4248,48 +4228,48 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[dotnet6]",
- "test": "test_calling_localstack_from_lambda[dotnet6]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDLQ::test_dead_letter_queue",
+ "test": "test_dead_letter_queue",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..DeadLetterConfig', '$..result']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[go1.x]",
- "test": "test_calling_localstack_from_lambda[go1.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
+ "test": "test_invoke_lambda_eventbridge",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java11]",
- "test": "test_calling_localstack_from_lambda[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload0]",
+ "test": "test_assess_lambda_destination_invocation[payload0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8.al2]",
- "test": "test_calling_localstack_from_lambda[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload1]",
+ "test": "test_assess_lambda_destination_invocation[payload1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs14.x]",
- "test": "test_calling_localstack_from_lambda[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_lambda_destination_default_retries",
+ "test": "test_lambda_destination_default_retries",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4298,1519 +4278,1519 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs16.x]",
- "test": "test_calling_localstack_from_lambda[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_additional_docker_flags",
+ "test": "test_additional_docker_flags",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs18.x]",
- "test": "test_calling_localstack_from_lambda[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_lambda_docker_networks",
+ "test": "test_lambda_docker_networks",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.10]",
- "test": "test_calling_localstack_from_lambda[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[nodejs18.x]",
+ "test": "test_hot_reloading[nodejs18.x]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.11]",
- "test": "test_calling_localstack_from_lambda[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[python3.9]",
+ "test": "test_hot_reloading[python3.9]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.7]",
- "test": "test_calling_localstack_from_lambda[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading_publish_version",
+ "test": "test_hot_reloading_publish_version",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.8]",
- "test": "test_calling_localstack_from_lambda[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestLambdaDNS::test_lambda_localhost_localstack_cloud_connectivity",
+ "test": "test_lambda_localhost_localstack_cloud_connectivity",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.9]",
- "test": "test_calling_localstack_from_lambda[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb",
+ "test": "test_deletion_event_source_mapping_with_dynamodb",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby2.7]",
- "test": "test_calling_localstack_from_lambda[ruby2.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping",
+ "test": "test_disabled_dynamodb_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby3.2]",
- "test": "test_calling_localstack_from_lambda[ruby3.2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
+ "test": "test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[dotnet6]",
- "test": "test_echo_invoke[dotnet6]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
+ "test": "test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[go1.x]",
- "test": "test_echo_invoke[go1.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
+ "test": "test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java11]",
- "test": "test_echo_invoke[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
+ "test": "test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java17]",
- "test": "test_echo_invoke[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
+ "test": "test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java8.al2]",
- "test": "test_echo_invoke[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
+ "test": "test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[java8]",
- "test": "test_echo_invoke[java8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
+ "test": "test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[nodejs14.x]",
- "test": "test_echo_invoke[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
+ "test": "test_dynamodb_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[nodejs16.x]",
- "test": "test_echo_invoke[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config",
+ "test": "test_dynamodb_event_source_mapping_with_on_failure_destination_config",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[nodejs18.x]",
- "test": "test_echo_invoke[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
+ "test": "test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[provided.al2]",
- "test": "test_echo_invoke[provided.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string]",
+ "test": "test_dynamodb_invalid_event_filter[single-string]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[provided]",
- "test": "test_echo_invoke[provided]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_create_kinesis_event_source_mapping",
+ "test": "test_create_kinesis_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.10]",
- "test": "test_echo_invoke[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping",
+ "test": "test_disable_kinesis_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.11]",
- "test": "test_echo_invoke[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_mapping_with_on_failure_destination_config",
+ "test": "test_kinesis_event_source_mapping_with_on_failure_destination_config",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.7]",
- "test": "test_echo_invoke[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_trim_horizon",
+ "test": "test_kinesis_event_source_trim_horizon",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.8]",
- "test": "test_echo_invoke[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_event_source_mapping_default_batch_size",
+ "test": "test_event_source_mapping_default_batch_size",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.9]",
- "test": "test_echo_invoke[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
+ "test": "test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[ruby2.7]",
- "test": "test_echo_invoke[ruby2.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
+ "test": "test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[ruby3.2]",
- "test": "test_echo_invoke[ruby3.2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
+ "test": "test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[dotnet6]",
- "test": "test_introspection_invoke[dotnet6]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
+ "test": "test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[go1.x]",
- "test": "test_introspection_invoke[go1.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter4-item_matching4-this is a test string]",
+ "test": "test_sqs_event_filter[filter4-item_matching4-this is a test string]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java11]",
- "test": "test_introspection_invoke[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
+ "test": "test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java17]",
- "test": "test_introspection_invoke[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
+ "test": "test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java8.al2]",
- "test": "test_introspection_invoke[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
+ "test": "test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java8]",
- "test": "test_introspection_invoke[java8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping",
+ "test": "test_sqs_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs14.x]",
- "test": "test_introspection_invoke[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping_update",
+ "test": "test_sqs_event_source_mapping_update",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs16.x]",
- "test": "test_introspection_invoke[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[None]",
+ "test": "test_sqs_invalid_event_filter[None]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs18.x]",
- "test": "test_introspection_invoke[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter2]",
+ "test": "test_sqs_invalid_event_filter[invalid_filter2]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[provided.al2]",
- "test": "test_introspection_invoke[provided.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[simple string]",
+ "test": "test_sqs_invalid_event_filter[simple string]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[provided]",
- "test": "test_introspection_invoke[provided]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
+ "test": "test_failing_lambda_retries_after_visibility_timeout",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.10]",
- "test": "test_introspection_invoke[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_message_body_and_attributes_passed_correctly",
+ "test": "test_message_body_and_attributes_passed_correctly",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..stringListValues', '$..binaryListValues']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.11]",
- "test": "test_introspection_invoke[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_redrive_policy_with_failing_lambda",
+ "test": "test_redrive_policy_with_failing_lambda",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.7]",
- "test": "test_introspection_invoke[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures",
+ "test": "test_report_batch_item_failures",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "['$..SequenceNumber', '$..receiptHandle', '$..md5OfBody', '$..MD5OfMessageBody', '$..create_event_source_mapping.ParallelizationFactor', '$..create_event_source_mapping.LastProcessingResult', '$..create_event_source_mapping.Topics', '$..create_event_source_mapping.MaximumRetryAttempts', '$..create_event_source_mapping.MaximumBatchingWindowInSeconds', '$..create_event_source_mapping.FunctionResponseTypes', '$..create_event_source_mapping.StartingPosition', '$..create_event_source_mapping.StateTransitionReason', '$..create_event_source_mapping.State', '$..create_event_source_mapping.ResponseMetadata']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.8]",
- "test": "test_introspection_invoke[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_empty_json_batch_succeeds",
+ "test": "test_report_batch_item_failures_empty_json_batch_succeeds",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.9]",
- "test": "test_introspection_invoke[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_invalid_result_json_batch_fails",
+ "test": "test_report_batch_item_failures_invalid_result_json_batch_fails",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[ruby2.7]",
- "test": "test_introspection_invoke[ruby2.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_on_lambda_error",
+ "test": "test_report_batch_item_failures_on_lambda_error",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[ruby3.2]",
- "test": "test_introspection_invoke[ruby3.2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_sqs_queue_as_lambda_dead_letter_queue",
+ "test": "test_sqs_queue_as_lambda_dead_letter_queue",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs14.x]",
- "test": "test_runtime_wrapper_invoke[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_xray.py::test_traceid_outside_handler[Active]",
+ "test": "test_traceid_outside_handler[Active]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs16.x]",
- "test": "test_runtime_wrapper_invoke[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_xray.py::test_traceid_outside_handler[PassThrough]",
+ "test": "test_traceid_outside_handler[PassThrough]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs18.x]",
- "test": "test_runtime_wrapper_invoke[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
+ "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[dotnet6]",
- "test": "test_uncaught_exception_invoke[dotnet6]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
+ "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[go1.x]",
- "test": "test_uncaught_exception_invoke[go1.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
+ "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java11]",
- "test": "test_uncaught_exception_invoke[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_runtime_with_lib",
+ "test": "test_java_runtime_with_lib",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java17]",
- "test": "test_uncaught_exception_invoke[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java11]",
+ "test": "test_serializable_input_object[java11]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java8.al2]",
- "test": "test_uncaught_exception_invoke[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java17]",
+ "test": "test_serializable_input_object[java17]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[java8]",
- "test": "test_uncaught_exception_invoke[java8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8.al2]",
+ "test": "test_serializable_input_object[java8.al2]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[nodejs14.x]",
- "test": "test_uncaught_exception_invoke[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8]",
+ "test": "test_serializable_input_object[java8]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[nodejs16.x]",
- "test": "test_uncaught_exception_invoke[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java11]",
+ "test": "test_stream_handler[java11]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[nodejs18.x]",
- "test": "test_uncaught_exception_invoke[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java17]",
+ "test": "test_stream_handler[java17]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[provided.al2]",
- "test": "test_uncaught_exception_invoke[provided.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8.al2]",
+ "test": "test_stream_handler[java8.al2]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[provided]",
- "test": "test_uncaught_exception_invoke[provided]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8]",
+ "test": "test_stream_handler[java8]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.10]",
- "test": "test_uncaught_exception_invoke[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs14.x]",
+ "test": "test_invoke_nodejs_es6_lambda[nodejs14.x]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.11]",
- "test": "test_uncaught_exception_invoke[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs16.x]",
+ "test": "test_invoke_nodejs_es6_lambda[nodejs16.x]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.7]",
- "test": "test_uncaught_exception_invoke[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs18.x]",
+ "test": "test_invoke_nodejs_es6_lambda[nodejs18.x]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.8]",
- "test": "test_uncaught_exception_invoke[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.10]",
+ "test": "test_handler_in_submodule[python3.10]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[python3.9]",
- "test": "test_uncaught_exception_invoke[python3.9]",
- "response": "200",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.11]",
+ "test": "test_handler_in_submodule[python3.11]",
+ "response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[ruby2.7]",
- "test": "test_uncaught_exception_invoke[ruby2.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.7]",
+ "test": "test_handler_in_submodule[python3.7]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_uncaught_exception_invoke[ruby3.2]",
- "test": "test_uncaught_exception_invoke[ruby3.2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.8]",
+ "test": "test_handler_in_submodule[python3.8]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDLQ::test_dead_letter_queue",
- "test": "test_dead_letter_queue",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.9]",
+ "test": "test_handler_in_submodule[python3.9]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DeadLetterConfig', '$..result']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
- "test": "test_invoke_lambda_eventbridge",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.10]",
+ "test": "test_python_runtime_correct_versions[python3.10]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload0]",
- "test": "test_assess_lambda_destination_invocation[payload0]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.11]",
+ "test": "test_python_runtime_correct_versions[python3.11]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload1]",
- "test": "test_assess_lambda_destination_invocation[payload1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.7]",
+ "test": "test_python_runtime_correct_versions[python3.7]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_lambda_destination_default_retries",
- "test": "test_lambda_destination_default_retries",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.8]",
+ "test": "test_python_runtime_correct_versions[python3.8]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_additional_docker_flags",
- "test": "test_additional_docker_flags",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.9]",
+ "test": "test_python_runtime_correct_versions[python3.9]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_lambda_docker_networks",
- "test": "test_lambda_docker_networks",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.10]",
+ "test": "test_python_runtime_unhandled_errors[python3.10]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[nodejs18.x]",
- "test": "test_hot_reloading[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.11]",
+ "test": "test_python_runtime_unhandled_errors[python3.11]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[python3.9]",
- "test": "test_hot_reloading[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.7]",
+ "test": "test_python_runtime_unhandled_errors[python3.7]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestLambdaDNS::test_lambda_localhost_localstack_cloud_connectivity",
- "test": "test_lambda_localhost_localstack_cloud_connectivity",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.8]",
+ "test": "test_python_runtime_unhandled_errors[python3.8]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb",
- "test": "test_deletion_event_source_mapping_with_dynamodb",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.9]",
+ "test": "test_python_runtime_unhandled_errors[python3.9]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping",
- "test": "test_disabled_dynamodb_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_firehose",
+ "test": "test_put_subscription_filter_firehose",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
- "test": "test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
+ "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_kinesis",
+ "test": "test_put_subscription_filter_kinesis",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
- "test": "test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
+ "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_lambda",
+ "test": "test_put_subscription_filter_lambda",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..Statement.Condition.StringEquals', '$..add_permission.ResponseMetadata.HTTPStatusCode']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
- "test": "test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_copy_object_kms",
+ "test": "test_copy_object_kms",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..VersionId', '$..ContentLanguage', '$..BucketKeyEnabled']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
- "test": "test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_create_bucket_with_existing_name",
+ "test": "test_create_bucket_with_existing_name",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
- "test": "test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_download_object_with_lambda",
+ "test": "test_s3_download_object_with_lambda",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
- "test": "test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_lambda_integration",
+ "test": "test_s3_lambda_integration",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..AcceptRanges']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
- "test": "test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_upload_download_gzip",
+ "test": "test_s3_upload_download_gzip",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..VersionId', '$..ContentLanguage']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_signed_headers_in_qs",
+ "test": "test_presigned_url_v4_signed_headers_in_qs",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config",
- "test": "test_dynamodb_event_source_mapping_with_on_failure_destination_config",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_x_amz_in_qs",
+ "test": "test_presigned_url_v4_x_amz_in_qs",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
- "test": "test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_cors.py::TestS3Cors::test_cors_expose_headers",
+ "test": "test_cors_expose_headers",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..x-amz-id-2']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string]",
- "test": "test_dynamodb_invalid_event_filter[single-string]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_cors.py::TestS3Cors::test_cors_http_options_non_existent_bucket",
+ "test": "test_cors_http_options_non_existent_bucket",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..x-amz-id-2']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_create_kinesis_event_source_mapping",
- "test": "test_create_kinesis_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_cors.py::TestS3Cors::test_cors_match_methods",
+ "test": "test_cors_match_methods",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..x-amz-id-2']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping",
- "test": "test_disable_kinesis_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_cors.py::TestS3Cors::test_put_cors_empty_origin",
+ "test": "test_put_cors_empty_origin",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..x-amz-id-2']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_mapping_with_on_failure_destination_config",
- "test": "test_kinesis_event_source_mapping_with_on_failure_destination_config",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put",
+ "test": "test_object_created_put",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..detail.object.etag']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_trim_horizon",
- "test": "test_kinesis_event_source_trim_horizon",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..detail.object.etag']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_event_source_mapping_default_batch_size",
- "test": "test_event_source_mapping_default_batch_size",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
+ "test": "test_object_put_acl",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
- "test": "test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_restore_object",
+ "test": "test_restore_object",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
- "test": "test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
+ "test": "test_create_object_by_presigned_request_via_dynamodb",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..data.s3.object.eTag', '$..data.s3.object.versionId', '$..data.s3.object.size']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
- "test": "test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb",
+ "test": "test_create_object_put_via_dynamodb",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
- "test": "test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_invalid_lambda_arn",
+ "test": "test_invalid_lambda_arn",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..Error.ArgumentName1', '$..Error.ArgumentValue1', '$..Error.ArgumentName', '$..Error.ArgumentValue']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter4-item_matching4-this is a test string]",
- "test": "test_sqs_event_filter[filter4-item_matching4-this is a test string]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sns.py::TestS3NotificationsToSns::test_bucket_notifications_with_filter",
+ "test": "test_bucket_notifications_with_filter",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..Message.Records..s3.object.eTag', '$..Message.Records..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
- "test": "test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sns.py::TestS3NotificationsToSns::test_object_created_put",
+ "test": "test_object_created_put",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
- "test": "test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_bucket_notification_with_invalid_filter_rules",
+ "test": "test_bucket_notification_with_invalid_filter_rules",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..Error.ArgumentName', '$..Error.ArgumentValue']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
- "test": "test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_delete_objects",
+ "test": "test_delete_objects",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping",
- "test": "test_sqs_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_key_encoding",
+ "test": "test_key_encoding",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[None]",
- "test": "test_sqs_invalid_event_filter[None]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_multiple_invalid_sqs_arns",
+ "test": "test_multiple_invalid_sqs_arns",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..Error.ArgumentName', '$..Error.ArgumentValue', '$..Error.ArgumentName1', '$..Error.ArgumentValue1', '$..Error.ArgumentName2', '$..Error.ArgumentValue2', '$..Error.Message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter2]",
- "test": "test_sqs_invalid_event_filter[invalid_filter2]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_notifications_with_filter",
+ "test": "test_notifications_with_filter",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..QueueConfigurations..Filter', '$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter3]",
- "test": "test_sqs_invalid_event_filter[invalid_filter3]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_and_object_removed",
+ "test": "test_object_created_and_object_removed",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId', '$..s3.object.size']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[simple string]",
- "test": "test_sqs_invalid_event_filter[simple string]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_complete_multipart_upload",
+ "test": "test_object_created_complete_multipart_upload",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
- "test": "test_failing_lambda_retries_after_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_copy",
+ "test": "test_object_created_copy",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_message_body_and_attributes_passed_correctly",
- "test": "test_message_body_and_attributes_passed_correctly",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_put",
+ "test": "test_object_created_put",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..stringListValues', '$..binaryListValues']",
+ "snapshot_skipped": "['$..s3.object.eTag']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_redrive_policy_with_failing_lambda",
- "test": "test_redrive_policy_with_failing_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_put_with_presigned_url_upload",
+ "test": "test_object_created_put_with_presigned_url_upload",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures",
- "test": "test_report_batch_item_failures",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_put_acl",
+ "test": "test_object_put_acl",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..SequenceNumber', '$..receiptHandle', '$..md5OfBody', '$..MD5OfMessageBody', '$..create_event_source_mapping.ParallelizationFactor', '$..create_event_source_mapping.LastProcessingResult', '$..create_event_source_mapping.Topics', '$..create_event_source_mapping.MaximumRetryAttempts', '$..create_event_source_mapping.MaximumBatchingWindowInSeconds', '$..create_event_source_mapping.FunctionResponseTypes', '$..create_event_source_mapping.StartingPosition', '$..create_event_source_mapping.StateTransitionReason', '$..create_event_source_mapping.State', '$..create_event_source_mapping.ResponseMetadata']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_empty_json_batch_succeeds",
- "test": "test_report_batch_item_failures_empty_json_batch_succeeds",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_tagging_delete_event",
+ "test": "test_object_tagging_delete_event",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId', '$..s3.object.size', '$..s3.object.sequencer', '$..eventVersion']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_invalid_result_json_batch_fails",
- "test": "test_report_batch_item_failures_invalid_result_json_batch_fails",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_tagging_put_event",
+ "test": "test_object_tagging_put_event",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId', '$..s3.object.size', '$..s3.object.sequencer', '$..eventVersion']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_on_lambda_error",
- "test": "test_report_batch_item_failures_on_lambda_error",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_restore_object",
+ "test": "test_restore_object",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..messages[1].requestParameters.sourceIPAddress']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_sqs_queue_as_lambda_dead_letter_queue",
- "test": "test_sqs_queue_as_lambda_dead_letter_queue",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_xray_header",
+ "test": "test_xray_header",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_xray.py::test_traceid_outside_handler[Active]",
- "test": "test_traceid_outside_handler[Active]",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic",
+ "test": "test_sending_to_deleted_topic",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_xray.py::test_traceid_outside_handler[PassThrough]",
- "test": "test_traceid_outside_handler[PassThrough]",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email",
+ "test": "test_ses_sns_topic_integration_send_email",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
- "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email",
+ "test": "test_ses_sns_topic_integration_send_raw_email",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
- "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email",
+ "test": "test_ses_sns_topic_integration_send_templated_email",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
- "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_exists_filter_policy",
+ "test": "test_exists_filter_policy",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_runtime_with_lib",
- "test": "test_java_runtime_with_lib",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy",
+ "test": "test_filter_policy",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java11]",
- "test": "test_serializable_input_object[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_for_batch",
+ "test": "test_filter_policy_for_batch",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java17]",
- "test": "test_serializable_input_object[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[False]",
+ "test": "test_filter_policy_on_message_body[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8.al2]",
- "test": "test_serializable_input_object[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[True]",
+ "test": "test_filter_policy_on_message_body[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8]",
- "test": "test_serializable_input_object[java8]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute",
+ "test": "test_filter_policy_on_message_body_dot_attribute",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java11]",
- "test": "test_stream_handler[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSMultiAccounts::test_cross_account_access",
+ "test": "test_cross_account_access",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java17]",
- "test": "test_stream_handler[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSMultiAccounts::test_cross_account_publish_to_sqs",
+ "test": "test_cross_account_publish_to_sqs",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8.al2]",
- "test": "test_stream_handler[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPlatformEndpoint::test_publish_to_platform_endpoint_is_dispatched",
+ "test": "test_publish_to_platform_endpoint_is_dispatched",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8]",
- "test": "test_stream_handler[java8]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_by_path_parameters",
+ "test": "test_publish_by_path_parameters",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs14.x]",
- "test": "test_invoke_nodejs_es6_lambda[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_message_before_subscribe_topic",
+ "test": "test_publish_message_before_subscribe_topic",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs16.x]",
- "test": "test_invoke_nodejs_es6_lambda[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_message_by_target_arn",
+ "test": "test_publish_message_by_target_arn",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs18.x]",
- "test": "test_invoke_nodejs_es6_lambda[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishDelivery::test_delivery_lambda",
+ "test": "test_delivery_lambda",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.10]",
- "test": "test_handler_in_submodule[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSRetrospectionEndpoints::test_subscription_tokens_can_retrospect",
+ "test": "test_subscription_tokens_can_retrospect",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.11]",
- "test": "test_handler_in_submodule[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionCrud::test_validate_set_sub_attributes",
+ "test": "test_validate_set_sub_attributes",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$.invalid-json-redrive-policy.Error.Message', '$.invalid-json-filter-policy.Error.Message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.7]",
- "test": "test_handler_in_submodule[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionFirehose::test_publish_to_firehose_with_s3",
+ "test": "test_publish_to_firehose_with_s3",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.8]",
- "test": "test_handler_in_submodule[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_dlq_external_http_endpoint[False]",
+ "test": "test_dlq_external_http_endpoint[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.9]",
- "test": "test_handler_in_submodule[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_dlq_external_http_endpoint[True]",
+ "test": "test_dlq_external_http_endpoint[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.10]",
- "test": "test_python_runtime_correct_versions[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_multiple_subscriptions_http_endpoint",
+ "test": "test_multiple_subscriptions_http_endpoint",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.11]",
- "test": "test_python_runtime_correct_versions[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_redrive_policy_http_subscription",
+ "test": "test_redrive_policy_http_subscription",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.7]",
- "test": "test_python_runtime_correct_versions[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_subscribe_external_http_endpoint[False]",
+ "test": "test_subscribe_external_http_endpoint[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$.http-message-headers.Accept', '$.http-message-headers-raw.Accept', '$.http-confirm-sub-headers.Accept']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.8]",
- "test": "test_python_runtime_correct_versions[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_python_lambda_subscribe_sns_topic",
+ "test": "test_python_lambda_subscribe_sns_topic",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.9]",
- "test": "test_python_runtime_correct_versions[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_redrive_policy_lambda_subscription",
+ "test": "test_redrive_policy_lambda_subscription",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.10]",
- "test": "test_python_runtime_unhandled_errors[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_sns_topic_as_lambda_dead_letter_queue",
+ "test": "test_sns_topic_as_lambda_dead_letter_queue",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.11]",
- "test": "test_python_runtime_unhandled_errors[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_attribute_raw_subscribe",
+ "test": "test_attribute_raw_subscribe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.7]",
- "test": "test_python_runtime_unhandled_errors[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_attributes_not_missing",
+ "test": "test_message_attributes_not_missing",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.8]",
- "test": "test_python_runtime_unhandled_errors[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_attributes_prefixes",
+ "test": "test_message_attributes_prefixes",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.9]",
- "test": "test_python_runtime_unhandled_errors[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_structure_json_to_sqs",
+ "test": "test_message_structure_json_to_sqs",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_firehose",
- "test": "test_put_subscription_filter_firehose",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_batch_messages_from_sns_to_sqs",
+ "test": "test_publish_batch_messages_from_sns_to_sqs",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_lambda",
- "test": "test_put_subscription_filter_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_sqs_from_sns",
+ "test": "test_publish_sqs_from_sns",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Statement.Condition.StringEquals', '$..add_permission.ResponseMetadata.HTTPStatusCode']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/ram/test_ram.py::TestResourceAccessManager::test_basic_crud",
- "test": "test_basic_crud",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_sqs_from_sns_with_xray_propagation",
+ "test": "test_publish_sqs_from_sns_with_xray_propagation",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..resourceShare.tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_update_resolver_endpoint",
- "test": "test_update_resolver_endpoint",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_unicode_chars",
+ "test": "test_publish_unicode_chars",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ResolverEndpointType']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_region_header_exists",
- "test": "test_region_header_exists",
- "response": "200",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_redrive_policy_sqs_queue_subscription[False]",
+ "test": "test_redrive_policy_sqs_queue_subscription[False]",
+ "response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
@@ -5818,168 +5798,168 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_download_object_with_lambda",
- "test": "test_s3_download_object_with_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_redrive_policy_sqs_queue_subscription[True]",
+ "test": "test_redrive_policy_sqs_queue_subscription[True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_lambda_integration",
- "test": "test_s3_lambda_integration",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_sqs_topic_subscription_confirmation",
+ "test": "test_sqs_topic_subscription_confirmation",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AcceptRanges']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_upload_download_gzip",
- "test": "test_s3_upload_download_gzip",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscribe_sqs_queue",
+ "test": "test_subscribe_sqs_queue",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..VersionId', '$..ContentLanguage']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_uppercase_bucket_name",
- "test": "test_s3_uppercase_bucket_name",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscription_after_failure_to_deliver",
+ "test": "test_subscription_after_failure_to_deliver",
"response": "200",
"error": "",
- "snapshot_skipped": "all",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_signed_headers_in_qs",
- "test": "test_presigned_url_v4_signed_headers_in_qs",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_fifo_topic_to_regular_sqs[False]",
+ "test": "test_fifo_topic_to_regular_sqs[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$.dedup-messages.Messages']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_x_amz_in_qs",
- "test": "test_presigned_url_v4_x_amz_in_qs",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_fifo_topic_to_regular_sqs[True]",
+ "test": "test_fifo_topic_to_regular_sqs[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$.dedup-messages.Messages']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketAccelerateConfiguration::test_bucket_acceleration_configuration_exc",
- "test": "test_bucket_acceleration_configuration_exc",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[False]",
+ "test": "test_message_to_fifo_sqs[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.put-bucket-accelerate-config-dot-bucket.Error.Code', '$.put-bucket-accelerate-config-dot-bucket.Error.Message']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketCRUD::test_delete_bucket_with_objects",
- "test": "test_delete_bucket_with_objects",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[True]",
+ "test": "test_message_to_fifo_sqs[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ServerSideEncryption']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketCRUD::test_delete_versioned_bucket_with_objects",
- "test": "test_delete_versioned_bucket_with_objects",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False]",
+ "test": "test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ServerSideEncryption']",
+ "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action', '$.republish-batch-response-fifo.Successful..MessageId', '$.republish-batch-response-fifo.Successful..SequenceNumber']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketEncryption::test_s3_bucket_encryption_sse_kms",
- "test": "test_s3_bucket_encryption_sse_kms",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True]",
+ "test": "test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ETag']",
+ "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action', '$.republish-batch-response-fifo.Successful..MessageId', '$.republish-batch-response-fifo.Successful..SequenceNumber']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_bucket_tagging_exc",
- "test": "test_bucket_tagging_exc",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_fifo_messages_to_dlq[False]",
+ "test": "test_publish_fifo_messages_to_dlq[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ServerSideEncryption']",
+ "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_put_object_with_tags",
- "test": "test_put_object_with_tags",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_fifo_messages_to_dlq[True]",
+ "test": "test_publish_fifo_messages_to_dlq[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ServerSideEncryption']",
+ "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectLock::test_get_object_lock_configuration_exc",
- "test": "test_get_object_lock_configuration_exc",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_deduplication_on_topic_level",
+ "test": "test_publish_to_fifo_topic_deduplication_on_topic_level",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.BucketName']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_concurrency.py::TestParallelBucketCreation::test_parallel_bucket_creation",
- "test": "test_parallel_bucket_creation",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False]",
+ "test": "test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_cors.py::TestS3Cors::test_delete_cors",
- "test": "test_delete_cors",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[True]",
+ "test": "test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..x-amz-id-2']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put",
- "test": "test_object_created_put",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSTopicCrud::test_create_topic_with_attributes",
+ "test": "test_create_topic_with_attributes",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..detail.object.etag']",
+ "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
- "test": "test_object_put_acl",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSTopicCrud::test_unsubscribe_wrong_arn_format",
+ "test": "test_unsubscribe_wrong_arn_format",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -5988,8 +5968,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_restore_object",
- "test": "test_restore_object",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSQSMultiAccounts::test_cross_account_access[domain]",
+ "test": "test_cross_account_access[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -5998,58 +5978,58 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
- "test": "test_create_object_by_presigned_request_via_dynamodb",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSQSMultiAccounts::test_cross_account_access[path]",
+ "test": "test_cross_account_access[path]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..data.s3.object.eTag', '$..data.s3.object.versionId', '$..data.s3.object.size']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb",
- "test": "test_create_object_put_via_dynamodb",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSQSMultiAccounts::test_cross_account_access[standard]",
+ "test": "test_cross_account_access[standard]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sns.py::TestS3NotificationsToSns::test_bucket_notifications_with_filter",
- "test": "test_bucket_notifications_with_filter",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_approximate_number_of_messages_delayed",
+ "test": "test_approximate_number_of_messages_delayed",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Message.Records..s3.object.eTag', '$..Message.Records..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sns.py::TestS3NotificationsToSns::test_object_created_put",
- "test": "test_object_created_put",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_batch_send_with_invalid_char_should_succeed",
+ "test": "test_batch_send_with_invalid_char_should_succeed",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_bucket_notification_with_invalid_filter_rules",
- "test": "test_bucket_notification_with_invalid_filter_rules",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_message_visibility_batch_with_too_large_batch",
+ "test": "test_change_message_visibility_batch_with_too_large_batch",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.ArgumentName', '$..Error.ArgumentValue']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_delete_objects",
- "test": "test_delete_objects",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_message_visibility_not_permanent",
+ "test": "test_change_message_visibility_not_permanent",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6058,88 +6038,88 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_key_encoding",
- "test": "test_key_encoding",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_visibility_on_deleted_message_raises_invalid_parameter_value",
+ "test": "test_change_visibility_on_deleted_message_raises_invalid_parameter_value",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_multiple_invalid_sqs_arns",
- "test": "test_multiple_invalid_sqs_arns",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_create_and_send_to_fifo_queue",
+ "test": "test_create_and_send_to_fifo_queue",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.ArgumentName', '$..Error.ArgumentValue', '$..Error.ArgumentName1', '$..Error.ArgumentValue1', '$..Error.ArgumentName2', '$..Error.ArgumentValue2', '$..Error.Message']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_notifications_with_filter",
- "test": "test_notifications_with_filter",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_create_queue_after_internal_attributes_changes_works",
+ "test": "test_create_queue_after_internal_attributes_changes_works",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..QueueConfigurations..Filter', '$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_and_object_removed",
- "test": "test_object_created_and_object_removed",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_create_queue_after_send",
+ "test": "test_create_queue_after_send",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId', '$..s3.object.size']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_complete_multipart_upload",
- "test": "test_object_created_complete_multipart_upload",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_dead_letter_queue_chain",
+ "test": "test_dead_letter_queue_chain",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_copy",
- "test": "test_object_created_copy",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_dead_letter_queue_max_receive_count",
+ "test": "test_dead_letter_queue_max_receive_count",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_put",
- "test": "test_object_created_put",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_dead_letter_queue_with_fifo_and_content_based_deduplication",
+ "test": "test_dead_letter_queue_with_fifo_and_content_based_deduplication",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_created_put_with_presigned_url_upload",
- "test": "test_object_created_put_with_presigned_url_upload",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
+ "test": "test_delete_message_batch_from_lambda",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_put_acl",
- "test": "test_object_put_acl",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_invalid_msg_id[]",
+ "test": "test_delete_message_batch_invalid_msg_id[]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6148,48 +6128,48 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_tagging_delete_event",
- "test": "test_object_tagging_delete_event",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_with_too_large_batch",
+ "test": "test_delete_message_batch_with_too_large_batch",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId', '$..s3.object.size', '$..s3.object.sequencer', '$..eventVersion']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_object_tagging_put_event",
- "test": "test_object_tagging_put_event",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_deletes_with_change_visibility_timeout",
+ "test": "test_delete_message_deletes_with_change_visibility_timeout",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId', '$..s3.object.size', '$..s3.object.sequencer', '$..eventVersion']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_restore_object",
- "test": "test_restore_object",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_with_deleted_receipt_handle",
+ "test": "test_delete_message_with_deleted_receipt_handle",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..messages[1].requestParameters.sourceIPAddress']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_sqs.py::TestS3NotificationsToSQS::test_xray_header",
- "test": "test_xray_header",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_extend_message_visibility_timeout_set_in_queue",
+ "test": "test_extend_message_visibility_timeout_set_in_queue",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_sending_to_deleted_topic",
- "test": "test_sending_to_deleted_topic",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_external_host_via_header_complete_message_lifecycle",
+ "test": "test_external_host_via_header_complete_message_lifecycle",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6198,38 +6178,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email",
- "test": "test_ses_sns_topic_integration_send_email",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_external_hostname",
+ "test": "test_external_hostname",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email",
- "test": "test_ses_sns_topic_integration_send_raw_email",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_approx_number_of_messages",
+ "test": "test_fifo_approx_number_of_messages",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email",
- "test": "test_ses_sns_topic_integration_send_templated_email",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_content_based_message_deduplication_arrives_once",
+ "test": "test_fifo_content_based_message_deduplication_arrives_once",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_exists_filter_policy",
- "test": "test_exists_filter_policy",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_arrives_once_after_delete[False]",
+ "test": "test_fifo_deduplication_arrives_once_after_delete[False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6238,8 +6218,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy",
- "test": "test_filter_policy",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_arrives_once_after_delete[True]",
+ "test": "test_fifo_deduplication_arrives_once_after_delete[True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6248,8 +6228,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_for_batch",
- "test": "test_filter_policy_for_batch",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_not_on_message_group_id[False]",
+ "test": "test_fifo_deduplication_not_on_message_group_id[False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6258,8 +6238,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[False]",
- "test": "test_filter_policy_on_message_body[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_not_on_message_group_id[True]",
+ "test": "test_fifo_deduplication_not_on_message_group_id[True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6268,8 +6248,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[True]",
- "test": "test_filter_policy_on_message_body[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_attributes",
+ "test": "test_fifo_message_attributes",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6278,8 +6258,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute",
- "test": "test_filter_policy_on_message_body_dot_attribute",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_change_message_visibility",
+ "test": "test_fifo_message_group_visibility_after_change_message_visibility",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6288,8 +6268,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSMultiAccounts::test_cross_account_publish_to_sqs",
- "test": "test_cross_account_publish_to_sqs",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_delete",
+ "test": "test_fifo_message_group_visibility_after_delete",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6298,8 +6278,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_by_path_parameters",
- "test": "test_publish_by_path_parameters",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_partial_delete",
+ "test": "test_fifo_message_group_visibility_after_partial_delete",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6308,8 +6288,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_message_before_subscribe_topic",
- "test": "test_publish_message_before_subscribe_topic",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_terminate_visibility_timeout",
+ "test": "test_fifo_message_group_visibility_after_terminate_visibility_timeout",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6318,8 +6298,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishCrud::test_publish_message_by_target_arn",
- "test": "test_publish_message_by_target_arn",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_messages_in_order_after_timeout",
+ "test": "test_fifo_messages_in_order_after_timeout",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6328,18 +6308,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishDelivery::test_delivery_lambda",
- "test": "test_delivery_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_queue_send_message_with_delay_on_queue_works",
+ "test": "test_fifo_queue_send_message_with_delay_on_queue_works",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSRetrospectionEndpoints::test_subscription_tokens_can_retrospect",
- "test": "test_subscription_tokens_can_retrospect",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_queue_send_message_with_delay_seconds_fails",
+ "test": "test_fifo_queue_send_message_with_delay_seconds_fails",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6348,8 +6328,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_dlq_external_http_endpoint[False]",
- "test": "test_dlq_external_http_endpoint[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_queue_send_multiple_messages_multiple_single_receives",
+ "test": "test_fifo_queue_send_multiple_messages_multiple_single_receives",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6358,8 +6338,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_dlq_external_http_endpoint[True]",
- "test": "test_dlq_external_http_endpoint[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_receive_message_group_id_ordering",
+ "test": "test_fifo_receive_message_group_id_ordering",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6368,8 +6348,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionHttp::test_redrive_policy_http_subscription",
- "test": "test_redrive_policy_http_subscription",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_receive_message_visibility_timeout_shared_in_group",
+ "test": "test_fifo_receive_message_visibility_timeout_shared_in_group",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6378,8 +6358,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_python_lambda_subscribe_sns_topic",
- "test": "test_python_lambda_subscribe_sns_topic",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_receive_message_with_zero_visibility_timeout",
+ "test": "test_fifo_receive_message_with_zero_visibility_timeout",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6388,8 +6368,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_redrive_policy_lambda_subscription",
- "test": "test_redrive_policy_lambda_subscription",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_sequence_number_increases",
+ "test": "test_fifo_sequence_number_increases",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6398,8 +6378,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_sns_topic_as_lambda_dead_letter_queue",
- "test": "test_sns_topic_as_lambda_dead_letter_queue",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_inflight_message_requeue",
+ "test": "test_inflight_message_requeue",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6408,8 +6388,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_attribute_raw_subscribe",
- "test": "test_attribute_raw_subscribe",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_message_with_attributes_should_be_enqueued",
+ "test": "test_message_with_attributes_should_be_enqueued",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6418,8 +6398,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_attributes_not_missing",
- "test": "test_message_attributes_not_missing",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_message_with_carriage_return",
+ "test": "test_message_with_carriage_return",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6428,8 +6408,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_attributes_prefixes",
- "test": "test_message_attributes_prefixes",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_posting_to_fifo_requires_deduplicationid_group_id",
+ "test": "test_posting_to_fifo_requires_deduplicationid_group_id",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6438,8 +6418,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_message_structure_json_to_sqs",
- "test": "test_message_structure_json_to_sqs",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_posting_to_queue_via_queue_name",
+ "test": "test_posting_to_queue_via_queue_name",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6448,8 +6428,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_batch_messages_from_sns_to_sqs",
- "test": "test_publish_batch_messages_from_sns_to_sqs",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_publish_get_delete_message",
+ "test": "test_publish_get_delete_message",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6458,8 +6438,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_sqs_from_sns",
- "test": "test_publish_sqs_from_sns",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_publish_get_delete_message_batch",
+ "test": "test_publish_get_delete_message_batch",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6468,8 +6448,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_sqs_from_sns_with_xray_propagation",
- "test": "test_publish_sqs_from_sns_with_xray_propagation",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue",
+ "test": "test_purge_queue",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6478,8 +6458,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_unicode_chars",
- "test": "test_publish_unicode_chars",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_clears_fifo_deduplication_cache",
+ "test": "test_purge_queue_clears_fifo_deduplication_cache",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6488,8 +6468,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_redrive_policy_sqs_queue_subscription[False]",
- "test": "test_redrive_policy_sqs_queue_subscription[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_deletes_delayed_messages",
+ "test": "test_purge_queue_deletes_delayed_messages",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6498,8 +6478,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_redrive_policy_sqs_queue_subscription[True]",
- "test": "test_redrive_policy_sqs_queue_subscription[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_deletes_inflight_messages",
+ "test": "test_purge_queue_deletes_inflight_messages",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6508,8 +6488,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscribe_sqs_queue",
- "test": "test_subscribe_sqs_queue",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_after_visibility_timeout",
+ "test": "test_receive_after_visibility_timeout",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6518,38 +6498,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscription_after_failure_to_deliver",
- "test": "test_subscription_after_failure_to_deliver",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_attribute_names_filters",
+ "test": "test_receive_message_attribute_names_filters",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Attributes.SenderId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_fifo_topic_to_regular_sqs[False]",
- "test": "test_fifo_topic_to_regular_sqs[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_attributes_timestamp_types",
+ "test": "test_receive_message_attributes_timestamp_types",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.dedup-messages.Messages']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_fifo_topic_to_regular_sqs[True]",
- "test": "test_fifo_topic_to_regular_sqs[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_message_attribute_names_filters",
+ "test": "test_receive_message_message_attribute_names_filters",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.dedup-messages.Messages']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[False]",
- "test": "test_message_to_fifo_sqs[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_wait_time_seconds_and_max_number_of_messages_does_not_block",
+ "test": "test_receive_message_wait_time_seconds_and_max_number_of_messages_does_not_block",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6558,8 +6538,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[True]",
- "test": "test_message_to_fifo_sqs[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_with_visibility_timeout_updates_timeout",
+ "test": "test_receive_message_with_visibility_timeout_updates_timeout",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6568,48 +6548,48 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False]",
- "test": "test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_terminate_visibility_timeout",
+ "test": "test_receive_terminate_visibility_timeout",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action', '$.republish-batch-response-fifo.Successful..MessageId', '$.republish-batch-response-fifo.Successful..SequenceNumber']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True]",
- "test": "test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_remove_message_with_old_receipt_handle",
+ "test": "test_remove_message_with_old_receipt_handle",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action', '$.republish-batch-response-fifo.Successful..MessageId', '$.republish-batch-response-fifo.Successful..SequenceNumber']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_fifo_messages_to_dlq[False]",
- "test": "test_publish_fifo_messages_to_dlq[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_batch_receive_multiple",
+ "test": "test_send_batch_receive_multiple",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_fifo_messages_to_dlq[True]",
- "test": "test_publish_fifo_messages_to_dlq[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_delay_and_wait_time",
+ "test": "test_send_delay_and_wait_time",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_deduplication_on_topic_level",
- "test": "test_publish_to_fifo_topic_deduplication_on_topic_level",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_batch",
+ "test": "test_send_message_batch",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6618,18 +6598,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False]",
- "test": "test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_batch_with_oversized_contents_with_updated_maximum_message_size",
+ "test": "test_send_message_batch_with_oversized_contents_with_updated_maximum_message_size",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Error.Detail']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[True]",
- "test": "test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_attributes",
+ "test": "test_send_message_with_attributes",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6638,8 +6618,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSQSMultiAccounts::test_cross_account_access[domain]",
- "test": "test_cross_account_access[domain]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_binary_attributes",
+ "test": "test_send_message_with_binary_attributes",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6648,8 +6628,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSQSMultiAccounts::test_cross_account_access[path]",
- "test": "test_cross_account_access[path]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_delay_0_works_for_fifo",
+ "test": "test_send_message_with_delay_0_works_for_fifo",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6658,8 +6638,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_approximate_number_of_messages_delayed",
- "test": "test_approximate_number_of_messages_delayed",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_invalid_string_attributes",
+ "test": "test_send_message_with_invalid_string_attributes",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6668,28 +6648,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_batch_send_with_invalid_char_should_succeed",
- "test": "test_batch_send_with_invalid_char_should_succeed",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_updated_maximum_message_size",
+ "test": "test_send_message_with_updated_maximum_message_size",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Error.Detail']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_message_visibility_batch_with_too_large_batch",
- "test": "test_change_message_visibility_batch_with_too_large_batch",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_max_number_of_messages",
+ "test": "test_send_receive_max_number_of_messages",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Error.Detail']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_message_visibility_not_permanent",
- "test": "test_change_message_visibility_not_permanent",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_message",
+ "test": "test_send_receive_message",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6698,8 +6678,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_visibility_on_deleted_message_raises_invalid_parameter_value",
- "test": "test_change_visibility_on_deleted_message_raises_invalid_parameter_value",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_message_encoded_content",
+ "test": "test_send_receive_message_encoded_content",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6708,8 +6688,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_create_and_send_to_fifo_queue",
- "test": "test_create_and_send_to_fifo_queue",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_message_multiple_queues",
+ "test": "test_send_receive_message_multiple_queues",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6718,8 +6698,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_create_queue_after_internal_attributes_changes_works",
- "test": "test_create_queue_after_internal_attributes_changes_works",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_sent_message_retains_attributes_after_receive",
+ "test": "test_sent_message_retains_attributes_after_receive",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6728,8 +6708,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_create_queue_after_send",
- "test": "test_create_queue_after_send",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_sequence_number",
+ "test": "test_sequence_number",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6738,8 +6718,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_dead_letter_queue_chain",
- "test": "test_dead_letter_queue_chain",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_system_attributes_have_no_effect_on_attr_md5",
+ "test": "test_system_attributes_have_no_effect_on_attr_md5",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6748,8 +6728,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_dead_letter_queue_max_receive_count",
- "test": "test_dead_letter_queue_max_receive_count",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_terminate_visibility_timeout_after_receive",
+ "test": "test_terminate_visibility_timeout_after_receive",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6758,8 +6738,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_dead_letter_queue_with_fifo_and_content_based_deduplication",
- "test": "test_dead_letter_queue_with_fifo_and_content_based_deduplication",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_wait_time_seconds_queue_attribute_waits_correctly",
+ "test": "test_wait_time_seconds_queue_attribute_waits_correctly",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6768,8 +6748,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
- "test": "test_delete_message_batch_from_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_wait_time_seconds_waits_correctly",
+ "test": "test_wait_time_seconds_waits_correctly",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6778,8 +6758,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_invalid_msg_id[]",
- "test": "test_delete_message_batch_invalid_msg_id[]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[domain]",
+ "test": "test_endpoint_strategy_with_multi_region[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6788,8 +6768,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_with_too_large_batch",
- "test": "test_delete_message_batch_with_too_large_batch",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[off]",
+ "test": "test_endpoint_strategy_with_multi_region[off]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6798,8 +6778,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_deletes_with_change_visibility_timeout",
- "test": "test_delete_message_deletes_with_change_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[path]",
+ "test": "test_endpoint_strategy_with_multi_region[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6808,8 +6788,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_with_deleted_receipt_handle",
- "test": "test_delete_message_with_deleted_receipt_handle",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[standard]",
+ "test": "test_endpoint_strategy_with_multi_region[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6818,8 +6798,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_extend_message_visibility_timeout_set_in_queue",
- "test": "test_extend_message_visibility_timeout_set_in_queue",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_get_send_and_receive_messages",
+ "test": "test_get_send_and_receive_messages",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6828,628 +6808,660 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_external_host_via_header_complete_message_lifecycle",
- "test": "test_external_host_via_header_complete_message_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_fifo_list_messages_as_botocore_endpoint_url[domain]",
+ "test": "test_fifo_list_messages_as_botocore_endpoint_url[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_external_hostname",
- "test": "test_external_hostname",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_fifo_list_messages_as_botocore_endpoint_url[path]",
+ "test": "test_fifo_list_messages_as_botocore_endpoint_url[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_approx_number_of_messages",
- "test": "test_fifo_approx_number_of_messages",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_fifo_list_messages_as_botocore_endpoint_url[standard]",
+ "test": "test_fifo_list_messages_as_botocore_endpoint_url[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_content_based_message_deduplication_arrives_once",
- "test": "test_fifo_content_based_message_deduplication_arrives_once",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_as_botocore_endpoint_url[domain]",
+ "test": "test_list_messages_as_botocore_endpoint_url[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_arrives_once_after_delete[False]",
- "test": "test_fifo_deduplication_arrives_once_after_delete[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_as_botocore_endpoint_url[path]",
+ "test": "test_list_messages_as_botocore_endpoint_url[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_arrives_once_after_delete[True]",
- "test": "test_fifo_deduplication_arrives_once_after_delete[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_as_botocore_endpoint_url[standard]",
+ "test": "test_list_messages_as_botocore_endpoint_url[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_not_on_message_group_id[False]",
- "test": "test_fifo_deduplication_not_on_message_group_id[False]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_as_json[domain]",
+ "test": "test_list_messages_as_json[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_not_on_message_group_id[True]",
- "test": "test_fifo_deduplication_not_on_message_group_id[True]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_as_json[path]",
+ "test": "test_list_messages_as_json[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_attributes",
- "test": "test_fifo_message_attributes",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_as_json[standard]",
+ "test": "test_list_messages_as_json[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_change_message_visibility",
- "test": "test_fifo_message_group_visibility_after_change_message_visibility",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_has_no_side_effects[domain]",
+ "test": "test_list_messages_has_no_side_effects[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_delete",
- "test": "test_fifo_message_group_visibility_after_delete",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_has_no_side_effects[path]",
+ "test": "test_list_messages_has_no_side_effects[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_partial_delete",
- "test": "test_fifo_message_group_visibility_after_partial_delete",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_has_no_side_effects[standard]",
+ "test": "test_list_messages_has_no_side_effects[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_message_group_visibility_after_terminate_visibility_timeout",
- "test": "test_fifo_message_group_visibility_after_terminate_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_delayed_messages[domain]",
+ "test": "test_list_messages_with_delayed_messages[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_messages_in_order_after_timeout",
- "test": "test_fifo_messages_in_order_after_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_delayed_messages[path]",
+ "test": "test_list_messages_with_delayed_messages[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_queue_send_message_with_delay_on_queue_works",
- "test": "test_fifo_queue_send_message_with_delay_on_queue_works",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_delayed_messages[standard]",
+ "test": "test_list_messages_with_delayed_messages[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_queue_send_message_with_delay_seconds_fails",
- "test": "test_fifo_queue_send_message_with_delay_seconds_fails",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_invisible_messages[domain]",
+ "test": "test_list_messages_with_invisible_messages[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_queue_send_multiple_messages_multiple_single_receives",
- "test": "test_fifo_queue_send_multiple_messages_multiple_single_receives",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_invisible_messages[path]",
+ "test": "test_list_messages_with_invisible_messages[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_receive_message_group_id_ordering",
- "test": "test_fifo_receive_message_group_id_ordering",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_invisible_messages[standard]",
+ "test": "test_list_messages_with_invisible_messages[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_receive_message_visibility_timeout_shared_in_group",
- "test": "test_fifo_receive_message_visibility_timeout_shared_in_group",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_queue_url_in_path[domain]",
+ "test": "test_list_messages_with_queue_url_in_path[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_receive_message_with_zero_visibility_timeout",
- "test": "test_fifo_receive_message_with_zero_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_queue_url_in_path[path]",
+ "test": "test_list_messages_with_queue_url_in_path[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_sequence_number_increases",
- "test": "test_fifo_sequence_number_increases",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEndpoints::test_list_messages_with_queue_url_in_path[standard]",
+ "test": "test_list_messages_with_queue_url_in_path[standard]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_inflight_message_requeue",
- "test": "test_inflight_message_requeue",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_choice_state_machine",
+ "test": "test_create_choice_state_machine",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_invalid_receipt_handle_should_return_error_message",
- "test": "test_invalid_receipt_handle_should_return_error_message",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_run_map_state_machine",
+ "test": "test_create_run_map_state_machine",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_message_with_attributes_should_be_enqueued",
- "test": "test_message_with_attributes_should_be_enqueued",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_run_state_machine",
+ "test": "test_create_run_state_machine",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_message_with_carriage_return",
- "test": "test_message_with_carriage_return",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_state_machines_in_parallel",
+ "test": "test_create_state_machines_in_parallel",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_posting_to_fifo_requires_deduplicationid_group_id",
- "test": "test_posting_to_fifo_requires_deduplicationid_group_id",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_events_state_machine",
+ "test": "test_events_state_machine",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_posting_to_queue_via_queue_name",
- "test": "test_posting_to_queue_via_queue_name",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-eu-central-1]",
+ "test": "test_multiregion_nested[statemachine_definition0-eu-central-1]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_publish_get_delete_message",
- "test": "test_publish_get_delete_message",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-eu-west-1]",
+ "test": "test_multiregion_nested[statemachine_definition0-eu-west-1]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_publish_get_delete_message_batch",
- "test": "test_publish_get_delete_message_batch",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-us-east-1]",
+ "test": "test_multiregion_nested[statemachine_definition0-us-east-1]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue",
- "test": "test_purge_queue",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-us-east-2]",
+ "test": "test_multiregion_nested[statemachine_definition0-us-east-2]",
"response": "200",
"error": "",
"snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
+ "test": "test_step_functions_calling_api_gateway",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_clears_fifo_deduplication_cache",
- "test": "test_purge_queue_clears_fifo_deduplication_cache",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
+ "test": "test_wait_for_callback",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_deletes_delayed_messages",
- "test": "test_purge_queue_deletes_delayed_messages",
+ "node_id": "LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_kinesis_error_injection",
+ "test": "test_kinesis_error_injection",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_deletes_inflight_messages",
- "test": "test_purge_queue_deletes_inflight_messages",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
+ "test": "test_lambda_streams_batch_and_transactions",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_after_visibility_timeout",
- "test": "test_receive_after_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_scheduled_lambda",
+ "test": "test_scheduled_lambda",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_attribute_names_filters",
- "test": "test_receive_message_attribute_names_filters",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.10]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Attributes.SenderId']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_attributes_timestamp_types",
- "test": "test_receive_message_attributes_timestamp_types",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.11]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_message_attribute_names_filters",
- "test": "test_receive_message_message_attribute_names_filters",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.7]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_wait_time_seconds_and_max_number_of_messages_does_not_block",
- "test": "test_receive_message_wait_time_seconds_and_max_number_of_messages_does_not_block",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.8]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_message_with_visibility_timeout_updates_timeout",
- "test": "test_receive_message_with_visibility_timeout_updates_timeout",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.9]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_receive_terminate_visibility_timeout",
- "test": "test_receive_terminate_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.10]",
+ "test": "test_lambda_send_message_to_sqs[python3.10]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_remove_message_with_old_receipt_handle",
- "test": "test_remove_message_with_old_receipt_handle",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.11]",
+ "test": "test_lambda_send_message_to_sqs[python3.11]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_batch_receive_multiple",
- "test": "test_send_batch_receive_multiple",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.7]",
+ "test": "test_lambda_send_message_to_sqs[python3.7]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_delay_and_wait_time",
- "test": "test_send_delay_and_wait_time",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.8]",
+ "test": "test_lambda_send_message_to_sqs[python3.8]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_batch",
- "test": "test_send_message_batch",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.9]",
+ "test": "test_lambda_send_message_to_sqs[python3.9]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_batch_with_oversized_contents_with_updated_maximum_message_size",
- "test": "test_send_message_batch_with_oversized_contents_with_updated_maximum_message_size",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.10]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.10]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.Detail']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_attributes",
- "test": "test_send_message_with_attributes",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.11]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.11]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_binary_attributes",
- "test": "test_send_message_with_binary_attributes",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.7]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.7]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_delay_0_works_for_fifo",
- "test": "test_send_message_with_delay_0_works_for_fifo",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.8]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.8]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_invalid_string_attributes",
- "test": "test_send_message_with_invalid_string_attributes",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.9]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.9]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_updated_maximum_message_size",
- "test": "test_send_message_with_updated_maximum_message_size",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::test_kinesis_lambda_forward_chain",
+ "test": "test_kinesis_lambda_forward_chain",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.Detail']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_max_number_of_messages",
- "test": "test_send_receive_max_number_of_messages",
+ "node_id": "LocalStack Community: tests/aws/test_multiregion.py::TestMultiRegion::test_multi_region_api_gateway",
+ "test": "test_multi_region_api_gateway",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.Detail']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_message",
- "test": "test_send_receive_message",
+ "node_id": "LocalStack Community: tests/aws/test_network_configuration.py::TestLambda::test_function_url",
+ "test": "test_function_url",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_message_encoded_content",
- "test": "test_send_receive_message_encoded_content",
+ "node_id": "LocalStack Community: tests/aws/test_network_configuration.py::TestOpenSearch::test_default_strategy",
+ "test": "test_default_strategy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_receive_message_multiple_queues",
- "test": "test_send_receive_message_multiple_queues",
+ "node_id": "LocalStack Community: tests/aws/test_network_configuration.py::TestOpenSearch::test_path_strategy",
+ "test": "test_path_strategy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_sent_message_retains_attributes_after_receive",
- "test": "test_sent_message_retains_attributes_after_receive",
+ "node_id": "LocalStack Community: tests/aws/test_network_configuration.py::TestOpenSearch::test_port_strategy",
+ "test": "test_port_strategy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_sequence_number",
- "test": "test_sequence_number",
+ "node_id": "LocalStack Community: tests/aws/test_notifications.py::TestNotifications::test_sns_to_sqs",
+ "test": "test_sns_to_sqs",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_system_attributes_have_no_effect_on_attr_md5",
- "test": "test_system_attributes_have_no_effect_on_attr_md5",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_apigateway_deployed",
+ "test": "test_apigateway_deployed",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_terminate_visibility_timeout_after_receive",
- "test": "test_terminate_visibility_timeout_after_receive",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
+ "test": "test_event_rules_deployed",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_wait_time_seconds_queue_attribute_waits_correctly",
- "test": "test_wait_time_seconds_queue_attribute_waits_correctly",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_kinesis_stream_handler_deployed",
+ "test": "test_kinesis_stream_handler_deployed",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_wait_time_seconds_waits_correctly",
- "test": "test_wait_time_seconds_waits_correctly",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_queue_handler_deployed",
+ "test": "test_queue_handler_deployed",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[domain]",
- "test": "test_endpoint_strategy_with_multi_region[domain]",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
+ "test": "test_s3_bucket_deployed",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[off]",
- "test": "test_endpoint_strategy_with_multi_region[off]",
+ "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_sns_sqs_integration_using_edge_port",
+ "test": "test_invoke_sns_sqs_integration_using_edge_port",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/integration/utils/test_diagnose.py::test_diagnose_resource",
+ "test": "test_diagnose_resource",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ }
+ ],
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_describe_db_clusters_with_filter",
+ "test": "test_describe_db_clusters_with_filter",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[path]",
- "test": "test_endpoint_strategy_with_multi_region[path]",
+ "node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
+ "test": "test_rds_lambda",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7458,28 +7470,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_get_send_and_receive_messages",
- "test": "test_get_send_and_receive_messages",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
+ "test": "test_authorizer_event_lambda_request",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..authType', '$..event.headers', '$..event.multiValueHeaders', '$..event.version', '$..authorizationToken', '$..requestContext.extendedRequestId', '$..requestContext.domainName', '$..requestContext.protocol', '$..requestContext.requestId', '$..requestContext.requestTime', '$..requestContext.requestTimeEpoch', '$..requestContext.identity']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_fifo_list_messages_as_botocore_endpoint_url",
- "test": "test_fifo_list_messages_as_botocore_endpoint_url",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::test_api_key_authorizer",
+ "test": "test_api_key_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_list_messages_as_botocore_endpoint_url",
- "test": "test_list_messages_as_botocore_endpoint_url",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_http_jwt_authorizer",
+ "test": "test_apigw_v2_http_jwt_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7488,38 +7500,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_list_messages_as_json",
- "test": "test_list_messages_as_json",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[1.0]",
+ "test": "test_apigw_v2_lambda_request_authorizer[1.0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_list_messages_has_no_side_effects",
- "test": "test_list_messages_has_no_side_effects",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[2.0]",
+ "test": "test_apigw_v2_lambda_request_authorizer[2.0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_list_messages_with_queue_url_in_path",
- "test": "test_list_messages_with_queue_url_in_path",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_cors_preflight_requests",
+ "test": "test_cors_preflight_requests",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_choice_state_machine",
- "test": "test_create_choice_state_machine",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-1.0]",
+ "test": "test_custom_domains[--.example.com-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7528,8 +7540,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_run_map_state_machine",
- "test": "test_create_run_map_state_machine",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-2.0]",
+ "test": "test_custom_domains[--.example.com-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7538,8 +7550,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_run_state_machine",
- "test": "test_create_run_state_machine",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-1.0]",
+ "test": "test_custom_domains[--.localhost-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7548,8 +7560,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_state_machines_in_parallel",
- "test": "test_create_state_machines_in_parallel",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-2.0]",
+ "test": "test_custom_domains[--.localhost-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7558,8 +7570,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_events_state_machine",
- "test": "test_events_state_machine",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[--.localhost.localstack.cloud-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7568,8 +7580,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_aws_sdk_task_delete_s3_object",
- "test": "test_aws_sdk_task_delete_s3_object",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[--.localhost.localstack.cloud-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7578,8 +7590,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-eu-central-1]",
- "test": "test_multiregion_nested[statemachine_definition0-eu-central-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-1.0]",
+ "test": "test_custom_domains[-base1-.example.com-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7588,8 +7600,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-eu-west-1]",
- "test": "test_multiregion_nested[statemachine_definition0-eu-west-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-2.0]",
+ "test": "test_custom_domains[-base1-.example.com-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7598,8 +7610,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-us-east-1]",
- "test": "test_multiregion_nested[statemachine_definition0-us-east-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-1.0]",
+ "test": "test_custom_domains[-base1-.localhost-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7608,8 +7620,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_multiregion_nested[statemachine_definition0-us-east-2]",
- "test": "test_multiregion_nested[statemachine_definition0-us-east-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-2.0]",
+ "test": "test_custom_domains[-base1-.localhost-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7618,38 +7630,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
- "test": "test_step_functions_calling_api_gateway",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..tracingConfiguration']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
- "test": "test_wait_for_callback",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..tracingConfiguration']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_list_transcription_jobs",
- "test": "test_list_transcription_jobs",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-1.0]",
+ "test": "test_custom_domains[stage1--.example.com-1.0]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..NextToken', '$..TranscriptionJobSummaries..OutputLocationType']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_error_injection.py::TestErrorInjection::test_kinesis_error_injection",
- "test": "test_kinesis_error_injection",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-2.0]",
+ "test": "test_custom_domains[stage1--.example.com-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7658,8 +7670,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
- "test": "test_lambda_streams_batch_and_transactions",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost-1.0]",
+ "test": "test_custom_domains[stage1--.localhost-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7668,8 +7680,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_scheduled_lambda",
- "test": "test_scheduled_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost-2.0]",
+ "test": "test_custom_domains[stage1--.localhost-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7678,8 +7690,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10]",
- "test": "test_lambda_put_item_to_dynamodb[python3.10]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[stage1--.localhost.localstack.cloud-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7688,8 +7700,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11]",
- "test": "test_lambda_put_item_to_dynamodb[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[stage1--.localhost.localstack.cloud-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7698,8 +7710,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7]",
- "test": "test_lambda_put_item_to_dynamodb[python3.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.example.com-1.0]",
+ "test": "test_custom_domains[stage1-base1-.example.com-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7708,8 +7720,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8]",
- "test": "test_lambda_put_item_to_dynamodb[python3.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.example.com-2.0]",
+ "test": "test_custom_domains[stage1-base1-.example.com-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7718,8 +7730,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9]",
- "test": "test_lambda_put_item_to_dynamodb[python3.9]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost-1.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7728,8 +7740,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.10]",
- "test": "test_lambda_send_message_to_sqs[python3.10]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost-2.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7738,8 +7750,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.11]",
- "test": "test_lambda_send_message_to_sqs[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost.localstack.cloud-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7748,8 +7760,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.7]",
- "test": "test_lambda_send_message_to_sqs[python3.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost.localstack.cloud-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7758,188 +7770,188 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.8]",
- "test": "test_lambda_send_message_to_sqs[python3.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.9]",
- "test": "test_lambda_send_message_to_sqs[python3.9]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.10]",
- "test": "test_lambda_start_stepfunctions_execution[python3.10]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.11]",
- "test": "test_lambda_start_stepfunctions_execution[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.7]",
- "test": "test_lambda_start_stepfunctions_execution[python3.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.8]",
- "test": "test_lambda_start_stepfunctions_execution[python3.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.9]",
- "test": "test_lambda_start_stepfunctions_execution[python3.9]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::test_kinesis_lambda_forward_chain",
- "test": "test_kinesis_lambda_forward_chain",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_moto.py::test_call_with_es_creates_state_correctly",
- "test": "test_call_with_es_creates_state_correctly",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_account_id_namespacing_for_moto_backends",
- "test": "test_account_id_namespacing_for_moto_backends",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb",
- "test": "test_multi_accounts_dynamodb",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_kinesis",
- "test": "test_multi_accounts_kinesis",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_multiregion.py::TestMultiRegion::test_multi_region_api_gateway",
- "test": "test_multi_region_api_gateway",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_network_configuration.py::TestOpenSearch::test_default_strategy",
- "test": "test_default_strategy",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_notifications.py::TestNotifications::test_sns_to_sqs",
- "test": "test_sns_to_sqs",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_dynamodb_stream_handler_deployed",
- "test": "test_dynamodb_stream_handler_deployed",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_proxy_integration",
+ "test": "test_http_proxy_integration",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..args', '$..files', '$..form', '$..json', '$..origin', '$..url', '$..method', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Localstack-Edge', '$..headers.X-Localstack-Tgt-Api', '$..headers.Connection']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_kinesis_stream_handler_deployed",
- "test": "test_kinesis_stream_handler_deployed",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_to_lambda_payload_v2",
+ "test": "test_http_to_lambda_payload_v2",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_queue_handler_deployed",
- "test": "test_queue_handler_deployed",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_aws_proxy_integration[1.0]",
+ "test": "test_lambda_authorizer_with_aws_proxy_integration[1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7948,8 +7960,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
- "test": "test_s3_bucket_deployed",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_aws_proxy_integration[2.0]",
+ "test": "test_lambda_authorizer_with_aws_proxy_integration[2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7958,30 +7970,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_sns_sqs_integration_using_edge_port",
- "test": "test_invoke_sns_sqs_integration_using_edge_port",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_no_payload_format_version",
+ "test": "test_lambda_authorizer_with_no_payload_format_version",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
- }
- ],
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_describe_db_clusters_with_filter",
- "test": "test_describe_db_clusters_with_filter",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_events[1.0]",
+ "test": "test_lambda_events[1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
- "test": "test_rds_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_events[2.0]",
+ "test": "test_lambda_events[2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -7990,28 +8000,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
- "test": "test_authorizer_event_lambda_request",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_binary_data[200]",
+ "test": "test_lambda_handling_binary_data[200]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..authType', '$..event.headers', '$..event.multiValueHeaders', '$..event.version', '$..authorizationToken', '$..requestContext.extendedRequestId', '$..requestContext.domainName', '$..requestContext.protocol', '$..requestContext.requestId', '$..requestContext.requestTime', '$..requestContext.requestTimeEpoch', '$..requestContext.identity']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::test_api_key_authorizer",
- "test": "test_api_key_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_binary_data[404]",
+ "test": "test_lambda_handling_binary_data[404]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_http_jwt_authorizer",
- "test": "test_apigw_v2_http_jwt_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_form_urlencoded_data[False]",
+ "test": "test_lambda_handling_form_urlencoded_data[False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8020,38 +8030,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[1.0]",
- "test": "test_apigw_v2_lambda_request_authorizer[1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_form_urlencoded_data[True]",
+ "test": "test_lambda_handling_form_urlencoded_data[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[2.0]",
- "test": "test_apigw_v2_lambda_request_authorizer[2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[False-1.0]",
+ "test": "test_lambda_jwt_authorizer[False-1.0]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_cors_preflight_requests",
- "test": "test_cors_preflight_requests",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[False-2.0]",
+ "test": "test_lambda_jwt_authorizer[False-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-1.0]",
- "test": "test_custom_domains[--.example.com-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[True-1.0]",
+ "test": "test_lambda_jwt_authorizer[True-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8060,8 +8070,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-2.0]",
- "test": "test_custom_domains[--.example.com-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[True-2.0]",
+ "test": "test_lambda_jwt_authorizer[True-2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8070,8 +8080,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-1.0]",
- "test": "test_custom_domains[--.localhost-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_request_authorizer[1.0]",
+ "test": "test_lambda_request_authorizer[1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8080,8 +8090,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-2.0]",
- "test": "test_custom_domains[--.localhost-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_request_authorizer[2.0]",
+ "test": "test_lambda_request_authorizer[2.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8090,8 +8100,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-1.0]",
- "test": "test_custom_domains[--.localhost.localstack.cloud-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_return_gzip_response",
+ "test": "test_lambda_return_gzip_response",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8100,8 +8110,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-2.0]",
- "test": "test_custom_domains[--.localhost.localstack.cloud-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
+ "test": "test_servicediscovery_ecs_integration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8110,28 +8120,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-1.0]",
- "test": "test_custom_domains[-base1-.example.com-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
+ "test": "test_step_functions_integration[host_based_url-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-2.0]",
- "test": "test_custom_domains[-base1-.example.com-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[path_based_url-1.0]",
+ "test": "test_step_functions_integration[path_based_url-1.0]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-1.0]",
- "test": "test_custom_domains[-base1-.localhost-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_v2_status_code_mappings",
+ "test": "test_v2_status_code_mappings",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8140,18 +8150,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-2.0]",
- "test": "test_custom_domains[-base1-.localhost-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration",
+ "test": "test_apigateway_to_appsync_integration",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
- "test": "test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigw_v1_lambda_request_authorizer",
+ "test": "test_apigw_v1_lambda_request_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8160,8 +8170,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
- "test": "test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizer",
+ "test": "test_cognito_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8170,68 +8180,68 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-1.0]",
- "test": "test_custom_domains[stage1--.example.com-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizer_token_types[client_credentials]",
+ "test": "test_cognito_authorizer_token_types[client_credentials]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
+ "snapshot_skipped": "all",
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-2.0]",
- "test": "test_custom_domains[stage1--.example.com-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizer_token_types[username]",
+ "test": "test_cognito_authorizer_token_types[username]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
+ "snapshot_skipped": "all",
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost-1.0]",
- "test": "test_custom_domains[stage1--.localhost-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[host_based_url-ANY]",
+ "test": "test_cognito_authorizers[host_based_url-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost-2.0]",
- "test": "test_custom_domains[stage1--.localhost-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[host_based_url-GET]",
+ "test": "test_cognito_authorizers[host_based_url-GET]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost.localstack.cloud-1.0]",
- "test": "test_custom_domains[stage1--.localhost.localstack.cloud-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[path_based_url-ANY]",
+ "test": "test_cognito_authorizers[path_based_url-ANY]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost.localstack.cloud-2.0]",
- "test": "test_custom_domains[stage1--.localhost.localstack.cloud-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[path_based_url-GET]",
+ "test": "test_cognito_authorizers[path_based_url-GET]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.example.com-1.0]",
- "test": "test_custom_domains[stage1-base1-.example.com-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[CUSTOM-GET]",
+ "test": "test_custom_authorizer[CUSTOM-GET]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8240,8 +8250,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.example.com-2.0]",
- "test": "test_custom_domains[stage1-base1-.example.com-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[CUSTOM-POST]",
+ "test": "test_custom_authorizer[CUSTOM-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8250,8 +8260,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost-1.0]",
- "test": "test_custom_domains[stage1-base1-.localhost-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[NONE-GET]",
+ "test": "test_custom_authorizer[NONE-GET]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8260,8 +8270,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost-2.0]",
- "test": "test_custom_domains[stage1-base1-.localhost-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[NONE-POST]",
+ "test": "test_custom_authorizer[NONE-POST]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8270,8 +8280,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost.localstack.cloud-1.0]",
- "test": "test_custom_domains[stage1-base1-.localhost.localstack.cloud-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_iam_authorizer",
+ "test": "test_iam_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8280,8 +8290,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost.localstack.cloud-2.0]",
- "test": "test_custom_domains[stage1-base1-.localhost.localstack.cloud-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_invoke_custom_domain",
+ "test": "test_invoke_custom_domain",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8290,208 +8300,218 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-ANY]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_request_authorizer_different_paths[UrlType.HOST_BASED]",
+ "test": "test_lambda_request_authorizer_different_paths[UrlType.HOST_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-POST]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_request_authorizer_different_paths[UrlType.PATH_BASED]",
+ "test": "test_lambda_request_authorizer_different_paths[UrlType.PATH_BASED]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-ANY]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_token_authorizer",
+ "test": "test_lambda_token_authorizer",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..connectionType', '$..passthroughBehavior', '$..requestParameters', '$..timeoutInMillis', '$..methodResponses', '$..authType', '$..authorizerResultTtlInSeconds', 'token_authorizer_allow..origin', 'token_authorizer_allow..url', 'token_authorizer_allow..args', 'token_authorizer_allow..files', 'token_authorizer_allow..form', 'token_authorizer_allow..json', 'token_authorizer_allow..method', 'put_integration..uri']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-POST]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_token_authorizer_event_payload",
+ "test": "test_lambda_token_authorizer_event_payload",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..authType', '$..integrationLatency', '$..principalId']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-ANY]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_token_authorizer_path_suffixes",
+ "test": "test_lambda_token_authorizer_path_suffixes",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..connectionType', '$..passthroughBehavior', '$..requestParameters', '$..timeoutInMillis', '$..methodResponses', '$..authType', '$..authorizerResultTtlInSeconds']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-POST]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_rest_import_openapi_3_0",
+ "test": "test_rest_import_openapi_3_0",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-ANY]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_apigatewaymanagementapi",
+ "test": "test_apigatewaymanagementapi",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-POST]",
- "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_connect_disconnect_always_called",
+ "test": "test_connect_disconnect_always_called",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_create_domain_names",
+ "test": "test_create_domain_names",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-ANY]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_create_route_responses",
+ "test": "test_create_route_responses",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-POST]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[AWS_PROXY-False-False]",
+ "test": "test_websocket_api[AWS_PROXY-False-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-ANY]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[AWS_PROXY-False-True]",
+ "test": "test_websocket_api[AWS_PROXY-False-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-POST]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[HTTP-False-False]",
+ "test": "test_websocket_api[HTTP-False-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-ANY]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[HTTP-False-True]",
+ "test": "test_websocket_api[HTTP-False-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-POST]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api_reject_connect[True-False]",
+ "test": "test_websocket_api_reject_connect[True-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-ANY]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api_reject_connect[True-True]",
+ "test": "test_websocket_api_reject_connect[True-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-POST]",
- "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_response_templates",
+ "test": "test_websocket_response_templates",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_proxy_integration",
- "test": "test_http_proxy_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_with_http_proxy_integration[False]",
+ "test": "test_websocket_with_http_proxy_integration[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..args', '$..files', '$..form', '$..json', '$..origin', '$..url', '$..method', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Localstack-Edge', '$..headers.X-Localstack-Tgt-Api', '$..headers.Connection']",
+ "snapshot_skipped": "['$..headers', '$..args', '$..files', '$..form', '$..json', '$..origin', '$..url', '$..method']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_to_lambda_payload_v2",
- "test": "test_http_to_lambda_payload_v2",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_with_http_proxy_integration[True]",
+ "test": "test_websocket_with_http_proxy_integration[True]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..headers', '$..args', '$..files', '$..form', '$..json', '$..origin', '$..url', '$..method']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_aws_proxy_integration[1.0]",
- "test": "test_lambda_authorizer_with_aws_proxy_integration[1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_with_kinesis_integration",
+ "test": "test_websocket_with_kinesis_integration",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..EncryptionType', '$..Data']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_aws_proxy_integration[2.0]",
- "test": "test_lambda_authorizer_with_aws_proxy_integration[2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_ws_connection_with_invalid_auth",
+ "test": "test_ws_connection_with_invalid_auth",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_no_payload_format_version",
- "test": "test_lambda_authorizer_with_no_payload_format_version",
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_application_crud_workflow",
+ "test": "test_application_crud_workflow",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8500,18 +8520,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_events[1.0]",
- "test": "test_lambda_events[1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_specify_resources_by_name",
+ "test": "test_specify_resources_by_name",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..EventLog', '$..EventLog..Description', '$..PercentageComplete', '$..ContentType', '$..State']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_events[2.0]",
- "test": "test_lambda_events[2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfigdata.py::TestAppConfigData::test_invalid_token",
+ "test": "test_invalid_token",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8520,8 +8540,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_binary_data[200]",
- "test": "test_lambda_handling_binary_data[200]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization",
+ "test": "test_cognito_authorization",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8530,28 +8550,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_binary_data[404]",
- "test": "test_lambda_handling_binary_data[404]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_auth_context_propagated",
+ "test": "test_cognito_authorization_auth_context_propagated",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..args', '$..identity.claims.event_id', '$..identity.claims.jti', '$..identity.claims.origin_jti', '$..identity.defaultAuthStrategy', '$..identity.sourceIp', '$..info.selectionSetGraphQL', '$..prev', '$..request', '$..source', '$..stash']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_form_urlencoded_data[False]",
- "test": "test_lambda_handling_form_urlencoded_data[False]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_auth_context_propagated_without_groups",
+ "test": "test_cognito_authorization_auth_context_propagated_without_groups",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..args', '$..identity.claims.event_id', '$..identity.claims.jti', '$..identity.claims.origin_jti', '$..identity.defaultAuthStrategy', '$..identity.sourceIp', '$..info.selectionSetGraphQL', '$..prev', '$..request', '$..source', '$..stash']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_handling_form_urlencoded_data[True]",
- "test": "test_lambda_handling_form_urlencoded_data[True]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access no bearer]",
+ "test": "test_cognito_authorization_bearer_configuration[access no bearer]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8560,8 +8580,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[False-1.0]",
- "test": "test_lambda_jwt_authorizer[False-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access with bearer]",
+ "test": "test_cognito_authorization_bearer_configuration[access with bearer]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8570,8 +8590,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[False-2.0]",
- "test": "test_lambda_jwt_authorizer[False-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id no bearer]",
+ "test": "test_cognito_authorization_bearer_configuration[id no bearer]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8580,8 +8600,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[True-1.0]",
- "test": "test_lambda_jwt_authorizer[True-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id with bearer]",
+ "test": "test_cognito_authorization_bearer_configuration[id with bearer]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8590,28 +8610,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_jwt_authorizer[True-2.0]",
- "test": "test_lambda_jwt_authorizer[True-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_group_enforcement",
+ "test": "test_cognito_authorization_group_enforcement",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..data.getTest', '$..data.getAllTest', '$..errors..data', '$..errors..errorInfo', '$..errors..locations..sourceName', '$..errors..message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_request_authorizer[1.0]",
- "test": "test_lambda_request_authorizer[1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_request_authorizer[2.0]",
- "test": "test_lambda_request_authorizer[2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
+ "test": "test_dynamodb_resolvers",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8620,138 +8640,138 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_return_gzip_response",
- "test": "test_lambda_return_gzip_response",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
+ "test": "test_http_data_source_detailed",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..code']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
- "test": "test_servicediscovery_ecs_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_return_object",
+ "test": "test_http_data_source_return_object",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..code']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
- "test": "test_step_functions_integration[host_based_url-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_return_simple",
+ "test": "test_http_data_source_return_simple",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..code']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[path_based_url-1.0]",
- "test": "test_step_functions_integration[path_based_url-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
+ "test": "test_iam_authorization",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration",
- "test": "test_apigateway_to_appsync_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_js_utils",
+ "test": "test_js_utils",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigw_v1_lambda_request_authorizer",
- "test": "test_apigw_v1_lambda_request_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_authorization",
+ "test": "test_lambda_authorization",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizer",
- "test": "test_cognito_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_authorization_context",
+ "test": "test_lambda_authorization_context",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizer_token_types[client_credentials]",
- "test": "test_cognito_authorizer_token_types[client_credentials]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_authorization_cross_region",
+ "test": "test_lambda_authorization_cross_region",
"response": "200",
"error": "",
- "snapshot_skipped": "all",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizer_token_types[username]",
- "test": "test_cognito_authorizer_token_types[username]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_data_source",
+ "test": "test_lambda_data_source",
"response": "200",
"error": "",
- "snapshot_skipped": "all",
+ "snapshot_skipped": "['$..body.data.create.request.domainName', '$..body.data.create.request.headers', '$..info.selectionSetList']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[host_based_url-ANY]",
- "test": "test_cognito_authorizers[host_based_url-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_nested_resolvers",
+ "test": "test_nested_resolvers",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[host_based_url-GET]",
- "test": "test_cognito_authorizers[host_based_url-GET]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_pipeline_js_resolver",
+ "test": "test_pipeline_js_resolver",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[path_based_url-ANY]",
- "test": "test_cognito_authorizers[path_based_url-ANY]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_pipeline_resolver",
+ "test": "test_pipeline_resolver",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..uris.GRAPHQL', '$..uris.REALTIME', '$..requestMappingTemplate', '$..errors..data', '$..errors..errorInfo', '$..errors..errorType', '$..errors..locations..sourceName']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizers[path_based_url-GET]",
- "test": "test_cognito_authorizers[path_based_url-GET]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_rds_data_source",
+ "test": "test_rds_data_source",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[CUSTOM-GET]",
- "test": "test_custom_authorizer[CUSTOM-GET]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
+ "test": "test_websocket_subscriptions",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8760,8 +8780,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[CUSTOM-POST]",
- "test": "test_custom_authorizer[CUSTOM-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_associate_api",
+ "test": "test_associate_api",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8770,8 +8790,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[NONE-GET]",
- "test": "test_custom_authorizer[NONE-GET]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_disassociate_api",
+ "test": "test_disassociate_api",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8780,8 +8800,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_custom_authorizer[NONE-POST]",
- "test": "test_custom_authorizer[NONE-POST]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_graphql_custom_id",
+ "test": "test_graphql_custom_id",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8790,8 +8810,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_iam_authorizer",
- "test": "test_iam_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
+ "test": "test_resolver_with_cache",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8800,8 +8820,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_invoke_custom_domain",
- "test": "test_invoke_custom_domain",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/athena/test_athena.py::TestAthenaCrud::test_create_workgroup",
+ "test": "test_create_workgroup",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8810,88 +8840,88 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_request_authorizer_different_paths[UrlType.HOST_BASED]",
- "test": "test_lambda_request_authorizer_different_paths[UrlType.HOST_BASED]",
+ "node_id": "LocalStack Pro: tests/aws/services/autoscaling/test_autoscaling.py::TestAutoScaling::test_create_asg_errors",
+ "test": "test_create_asg_errors",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_request_authorizer_different_paths[UrlType.PATH_BASED]",
- "test": "test_lambda_request_authorizer_different_paths[UrlType.PATH_BASED]",
+ "node_id": "LocalStack Pro: tests/aws/services/autoscaling/test_autoscaling.py::TestAutoScaling::test_metrics_collection",
+ "test": "test_metrics_collection",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_token_authorizer",
- "test": "test_lambda_token_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_backup_vaults",
+ "test": "test_backup_vaults",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..connectionType', '$..passthroughBehavior', '$..requestParameters', '$..timeoutInMillis', '$..methodResponses', '$..authType', '$..authorizerResultTtlInSeconds', 'token_authorizer_allow..origin', 'token_authorizer_allow..url', 'token_authorizer_allow..args', 'token_authorizer_allow..files', 'token_authorizer_allow..form', 'token_authorizer_allow..json', 'token_authorizer_allow..method', 'put_integration..uri']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_token_authorizer_event_payload",
- "test": "test_lambda_token_authorizer_event_payload",
+ "node_id": "LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore",
+ "test": "test_scheduled_backup_and_restore",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..authType', '$..integrationLatency', '$..principalId']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_lambda_token_authorizer_path_suffixes",
- "test": "test_lambda_token_authorizer_path_suffixes",
+ "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_create_job_default_command",
+ "test": "test_create_job_default_command",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..connectionType', '$..passthroughBehavior', '$..requestParameters', '$..timeoutInMillis', '$..methodResponses', '$..authType', '$..authorizerResultTtlInSeconds']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_rest_import_openapi_3_0",
- "test": "test_rest_import_openapi_3_0",
+ "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_create_submit_job",
+ "test": "test_create_submit_job",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_apigatewaymanagementapi",
- "test": "test_apigatewaymanagementapi",
+ "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_create_with_additional_config",
+ "test": "test_create_with_additional_config",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_connect_disconnect_always_called",
- "test": "test_connect_disconnect_always_called",
+ "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_describe_all_active_job_definitions",
+ "test": "test_describe_all_active_job_definitions",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_create_multiple_routes",
- "test": "test_create_multiple_routes",
+ "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_environment_with_empty_params",
+ "test": "test_environment_with_empty_params",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8900,8 +8930,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[AWS_PROXY-False-False]",
- "test": "test_websocket_api[AWS_PROXY-False-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ce/test_costexplorer.py::TestCostExplorer::test_cost_categories",
+ "test": "test_cost_categories",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8910,8 +8940,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[AWS_PROXY-False-True]",
- "test": "test_websocket_api[AWS_PROXY-False-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
+ "test": "test_vpc_link",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_api_mapping_deployment",
+ "test": "test_api_mapping_deployment",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8920,8 +8960,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[HTTP-False-False]",
- "test": "test_websocket_api[HTTP-False-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_create_apigatewayv2_resources",
+ "test": "test_create_apigatewayv2_resources",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8930,18 +8970,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api[HTTP-False-True]",
- "test": "test_websocket_api[HTTP-False-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_domain_name_attributes",
+ "test": "test_domain_name_attributes",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_sam_api_tagging",
+ "test": "test_sam_api_tagging",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api_reject_connect[True-False]",
- "test": "test_websocket_api_reject_connect[True-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Authorizers::test_create_apigateway_authorizer",
+ "test": "test_create_apigateway_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8950,8 +9000,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_api_reject_connect[True-True]",
- "test": "test_websocket_api_reject_connect[True-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Authorizers::test_create_apigateway_authorizer_client_credentials",
+ "test": "test_create_apigateway_authorizer_client_credentials",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8960,38 +9010,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_response_templates",
- "test": "test_websocket_response_templates",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
+ "test": "test_application_deployment",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_with_http_proxy_integration[True]",
- "test": "test_websocket_with_http_proxy_integration[True]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphql_schema",
+ "test": "test_graphql_schema",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers', '$..args', '$..files', '$..form', '$..json', '$..origin', '$..url', '$..method']",
+ "snapshot_skipped": "['$..type.format', '$..type.definition', '$..SchemaRef']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_websocket_with_kinesis_integration",
- "test": "test_websocket_with_kinesis_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphqlapi",
+ "test": "test_graphqlapi",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EncryptionType', '$..Data']",
+ "snapshot_skipped": "['$..graphqlApi.tags', '$..graphqlApi.xrayEnabled', '$..graphqlApi.arn']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_websocket_apis.py::TestWebSockets::test_ws_connection_with_invalid_auth",
- "test": "test_ws_connection_with_invalid_auth",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_athena.py::test_athena",
+ "test": "test_athena",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9000,38 +9050,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_application_crud_workflow",
- "test": "test_application_crud_workflow",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
+ "test": "test_autoscaling_group",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_configuration_profile_crud_workflow",
- "test": "test_configuration_profile_crud_workflow",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_cache_policies",
+ "test": "test_cache_policies",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_specify_resources_by_name",
- "test": "test_specify_resources_by_name",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_cloudfront_distribution_with_logging",
+ "test": "test_cloudfront_distribution_with_logging",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..EventLog', '$..EventLog..Description', '$..PercentageComplete', '$..ContentType', '$..State']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization",
- "test": "test_cognito_authorization",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_create_stack_cloudfront",
+ "test": "test_create_stack_cloudfront",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9040,28 +9090,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_auth_context_propagated",
- "test": "test_cognito_authorization_auth_context_propagated",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
+ "test": "test_origin_access_control",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..args', '$..identity.claims.event_id', '$..identity.claims.jti', '$..identity.claims.origin_jti', '$..identity.defaultAuthStrategy', '$..identity.sourceIp', '$..info.selectionSetGraphQL', '$..prev', '$..request', '$..source', '$..stash']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_auth_context_propagated_without_groups",
- "test": "test_cognito_authorization_auth_context_propagated_without_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_request_policies",
+ "test": "test_origin_request_policies",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..args', '$..identity.claims.event_id', '$..identity.claims.jti', '$..identity.claims.origin_jti', '$..identity.defaultAuthStrategy', '$..identity.sourceIp', '$..info.selectionSetGraphQL', '$..prev', '$..request', '$..source', '$..stash']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access no bearer]",
- "test": "test_cognito_authorization_bearer_configuration[access no bearer]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_custom_ids",
+ "test": "test_cognito_custom_ids",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9070,8 +9120,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[access with bearer]",
- "test": "test_cognito_authorization_bearer_configuration[access with bearer]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
+ "test": "test_cognito_role_attachment",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9080,8 +9130,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id no bearer]",
- "test": "test_cognito_authorization_bearer_configuration[id no bearer]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
+ "test": "test_customresource_lambda_backed",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9090,8 +9140,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_bearer_configuration[id with bearer]",
- "test": "test_cognito_authorization_bearer_configuration[id with bearer]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_docdb.py::test_docdb_cluster",
+ "test": "test_docdb_cluster",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9100,68 +9150,48 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_cognito_authorization_group_enforcement",
- "test": "test_cognito_authorization_group_enforcement",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..data.getTest', '$..data.getAllTest', '$..errors..data', '$..errors..errorInfo', '$..errors..locations..sourceName', '$..errors..message']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
- "test": "test_dynamodb_resolvers",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_deploy_duplicate_security_group",
+ "test": "test_deploy_duplicate_security_group",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_detailed",
- "test": "test_http_data_source_detailed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..code']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_http_data_source_return_object",
- "test": "test_http_data_source_return_object",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_ec2_launch_template",
+ "test": "test_ec2_launch_template",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..code']",
+ "snapshot_skipped": "['$..CreatedBy', '$..LaunchTemplateId', '$..LaunchTemplateName', '$..PhysicalResourceId', '$..Tags', '$..StackId', '$..StackName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
- "test": "test_iam_authorization",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_security_group_ingress_creation",
+ "test": "test_security_group_ingress_creation",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_js_utils",
- "test": "test_js_utils",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_cidr_block_configurations",
+ "test": "test_vpc_cidr_block_configurations",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_authorization",
- "test": "test_lambda_authorization",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
+ "test": "test_vpc_endpoint_service_configurations",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9170,38 +9200,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_authorization_context",
- "test": "test_lambda_authorization_context",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output",
+ "test": "test_url_output",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_authorization_cross_region",
- "test": "test_lambda_authorization_cross_region",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
+ "test": "test_capacity_providers",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_lambda_data_source",
- "test": "test_lambda_data_source",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..body.data.create.request.domainName', '$..body.data.create.request.headers', '$..info.selectionSetList']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_nested_resolvers",
- "test": "test_nested_resolvers",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_efs.py::test_url_output",
+ "test": "test_url_output",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9210,158 +9240,148 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_pipeline_js_resolver",
- "test": "test_pipeline_js_resolver",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
+ "test": "test_eks_fargate_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_pipeline_resolver",
- "test": "test_pipeline_resolver",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..uris.GRAPHQL', '$..uris.REALTIME', '$..requestMappingTemplate', '$..errors..data', '$..errors..errorInfo', '$..errors..errorType', '$..errors..locations..sourceName']",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_rds_data_source",
- "test": "test_rds_data_source",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
+ "test": "test_cache_cluster[redis]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
- "test": "test_websocket_subscriptions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_associate_api",
- "test": "test_associate_api",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
+ "test": "test_cluster_with_replication",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_graphql_custom_id",
- "test": "test_graphql_custom_id",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
- "test": "test_resolver_with_cache",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
+ "test": "test_elbv2_loadbalancer_resource",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/autoscaling/test_autoscaling.py::TestAutoScaling::test_create_asg_errors",
- "test": "test_create_asg_errors",
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_classifier",
+ "test": "test_classifier",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..GrokClassifier.Version']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/autoscaling/test_autoscaling.py::TestAutoScaling::test_metrics_collection",
- "test": "test_metrics_collection",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_database",
+ "test": "test_database",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Database.CreateTableDefaultPermissions', '$..Database.Parameters']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore",
- "test": "test_scheduled_backup_and_restore",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
+ "test": "test_job",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_create_job_default_command",
- "test": "test_create_job_default_command",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_table",
+ "test": "test_table",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..CreatedBy', '$..IsRegisteredWithLakeFormation', '$..Retention', '$..VersionId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_create_submit_job",
- "test": "test_create_submit_job",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_trigger",
+ "test": "test_trigger",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_create_with_additional_config",
- "test": "test_create_with_additional_config",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_workflow",
+ "test": "test_workflow",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_describe_all_active_job_definitions",
- "test": "test_describe_all_active_job_definitions",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_iot.py::test_role_alias",
+ "test": "test_role_alias",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_environment_with_empty_params",
- "test": "test_environment_with_empty_params",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
+ "test": "test_application_with_output_and_reference",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..ApplicationDetail']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ce/test_costexplorer.py::TestCostExplorer::test_cost_categories",
- "test": "test_cost_categories",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
+ "test": "test_lambda_layer_python",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9370,18 +9390,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
- "test": "test_vpc_link",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_api_mapping_deployment",
- "test": "test_api_mapping_deployment",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_msk.py::test_create_cluster",
+ "test": "test_create_cluster",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9390,8 +9400,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_create_apigatewayv2_resources",
- "test": "test_create_apigatewayv2_resources",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_qldb.py::test_create_ledgers",
+ "test": "test_create_ledgers",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9400,28 +9410,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_domain_name_attributes",
- "test": "test_domain_name_attributes",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_cluster_deployment",
+ "test": "test_db_cluster_deployment",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Apis::test_sam_api_tagging",
- "test": "test_sam_api_tagging",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment",
+ "test": "test_db_instance_deployment",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..DbAddress']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Authorizers::test_create_apigateway_authorizer",
- "test": "test_create_apigateway_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
+ "test": "test_db_proxy",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9430,8 +9440,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Authorizers::test_create_apigateway_authorizer_client_credentials",
- "test": "test_create_apigateway_authorizer_client_credentials",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[with_trailing_dot]",
+ "test": "test_hostedzone_optionaltrailingdot[with_trailing_dot]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9440,78 +9450,78 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appconfig.py::test_application_deployment",
- "test": "test_application_deployment",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[without_trailing_dot]",
+ "test": "test_hostedzone_optionaltrailingdot[without_trailing_dot]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Type', '$..CompletedAt', '$..ConfigurationName', '$..FinalBakeTimeInMinutes', '$..GrowthType', '$..PercentageComplete', '$..State', '$..FinalBakeTimeInMinutes', '$..GrowthType']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphql_schema",
- "test": "test_graphql_schema",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_with_comment",
+ "test": "test_hostedzone_with_comment",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..type.format', '$..type.definition', '$..SchemaRef']",
+ "snapshot_skipped": "['$..HostedZone.CallerReference', '$..DelegationSet.Id', '$..HostedZone.Id']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_appsync.py::test_graphqlapi",
- "test": "test_graphqlapi",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
+ "test": "test_secretsmanager_target_attachment_maridab",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..graphqlApi.tags', '$..graphqlApi.xrayEnabled', '$..graphqlApi.arn']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_athena.py::test_athena",
- "test": "test_athena",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules",
+ "test": "test_create_receiptrules",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
- "test": "test_autoscaling_group",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_timestream.py::test_create_db_tables",
+ "test": "test_create_db_tables",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_cache_policies",
- "test": "test_cache_policies",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
+ "test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_cloudfront_distribution_with_logging",
- "test": "test_cloudfront_distribution_with_logging",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_create_stack_cloudfront",
- "test": "test_create_stack_cloudfront",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[True]",
+ "test": "test_custom_errors[True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9520,18 +9530,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_access_control",
- "test": "test_origin_access_control",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_origin_request_policies",
- "test": "test_origin_request_policies",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_origin_access_control",
+ "test": "test_origin_access_control",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9540,28 +9550,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_custom_ids",
- "test": "test_cognito_custom_ids",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
- "test": "test_cognito_role_attachment",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
+ "test": "test_cdk_trail_cw_logs",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
- "test": "test_customresource_lambda_backed",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_create_trail",
+ "test": "test_create_trail",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9570,18 +9570,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_docdb.py::test_docdb_cluster",
- "test": "test_docdb_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_filter_lookup_attributes_invalid",
+ "test": "test_filter_lookup_attributes_invalid",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_deploy_duplicate_security_group",
- "test": "test_deploy_duplicate_security_group",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_not_started",
+ "test": "test_get_trail_status_of_not_started",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9590,48 +9590,48 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_ec2_launch_template",
- "test": "test_ec2_launch_template",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started",
+ "test": "test_get_trail_status_of_started",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CreatedBy', '$..LaunchTemplateId', '$..LaunchTemplateName', '$..PhysicalResourceId', '$..Tags', '$..StackId', '$..StackName']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_security_group_ingress_creation",
- "test": "test_security_group_ingress_creation",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started_and_stopped",
+ "test": "test_get_trail_status_of_started_and_stopped",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_cidr_block_configurations",
- "test": "test_vpc_cidr_block_configurations",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_record_events",
+ "test": "test_record_events",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
- "test": "test_vpc_endpoint_service_configurations",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_branch",
+ "test": "test_create_branch",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecr.py::test_url_output",
- "test": "test_url_output",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_pull_request",
+ "test": "test_create_pull_request",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9640,208 +9640,198 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
- "test": "test_capacity_providers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_repository",
+ "test": "test_create_repository",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_efs.py::test_url_output",
- "test": "test_url_output",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_delete_branch",
+ "test": "test_delete_branch",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
- "test": "test_eks_fargate_cluster",
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_branch",
+ "test": "test_get_branch",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
- "test": "test_cache_cluster[redis]",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_file",
+ "test": "test_get_file",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
- "test": "test_cluster_with_replication",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_repository_lifecycle",
+ "test": "test_repository_lifecycle",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
- "test": "test_elbv2_loadbalancer_resource",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
+ "test": "test_admin_no_srp_auth_flow",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_classifier",
- "test": "test_classifier",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_invalid_srp_raises_error[None]",
+ "test": "test_invalid_srp_raises_error[None]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..GrokClassifier.Version']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_database",
- "test": "test_database",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_srp_custom_auth_flow",
+ "test": "test_srp_custom_auth_flow",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Database.CreateTableDefaultPermissions', '$..Database.Parameters']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
- "test": "test_job",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_valid_srp_login",
+ "test": "test_valid_srp_login",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_table",
- "test": "test_table",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[1-days-86400]",
+ "test": "test_access_token_expiration_validity[1-days-86400]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CreatedBy', '$..IsRegisteredWithLakeFormation', '$..Retention', '$..VersionId']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_trigger",
- "test": "test_trigger",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[10-hours-36000]",
+ "test": "test_access_token_expiration_validity[10-hours-36000]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_workflow",
- "test": "test_workflow",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[10-minutes-600]",
+ "test": "test_access_token_expiration_validity[10-minutes-600]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_iot.py::test_role_alias",
- "test": "test_role_alias",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[500-seconds-500]",
+ "test": "test_access_token_expiration_validity[500-seconds-500]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
- "test": "test_application_with_output_and_reference",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_change_password",
+ "test": "test_admin_change_password",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ApplicationDetail']",
+ "snapshot_skipped": "['$..UserAttributes', '$..User.Attributes', '$.respond-to-auth-challenge.AuthenticationResult', '$.respond-to-auth-challenge.ChallengeParameters', '$.respond-to-auth-challenge.Session', '$.init-auth.AuthenticationResult']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
- "test": "test_lambda_layer_python",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_create_user_should_trigger_custom_message_lambda",
+ "test": "test_admin_create_user_should_trigger_custom_message_lambda",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_msk.py::test_create_cluster",
- "test": "test_create_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_set_permanent_invalid_password",
+ "test": "test_admin_set_permanent_invalid_password",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Error.Message', '$..message', '$..UserAttributes..Value', '$..Username']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_qldb.py::test_create_ledgers",
- "test": "test_create_ledgers",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer",
+ "test": "test_api_gateway_cognito_pool_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_cluster_deployment",
- "test": "test_db_cluster_deployment",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
+ "test": "test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..AuthSessionValidity', '$..ExplicitAuthFlows', '$..DeletionProtection', '$..AdminCreateUserConfig.UnusedAccountValidityDays', '$..AliasAttributes', '$..EstimatedNumberOfUsers', '$..LambdaConfig', '$..MfaConfiguration', '$..SchemaAttributes', '$..body', '$..headers.Accept', '$..headers.Accept-Encoding', '$..headers.Authorization', '$..headers.CloudFront-Forwarded-Proto', '$..headers.CloudFront-Is-Desktop-Viewer', '$..headers.CloudFront-Is-Mobile-Viewer', '$..headers.CloudFront-Is-SmartTV-Viewer', '$..headers.CloudFront-Is-Tablet-Viewer', '$..headers.CloudFront-Viewer-ASN', '$..headers.CloudFront-Viewer-Country', '$..headers.Connection', '$..headers.Host', '$..headers.User-Agent', '$..headers.Via', '$..headers.X-Amz-Cf-Id', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Forwarded-For', '$..headers.X-Forwarded-Port', '$..headers.X-Forwarded-Proto', '$..headers.accept', '$..headers.accept-encoding', '$..headers.authorization', '$..headers.connection', '$..headers.host', '$..headers.user-agent', '$..headers.x-localstack-edge', '$..headers.x-localstack-request-url', '$..headers.x-localstack-tgt-api', '$..multiValueHeaders.Accept', '$..multiValueHeaders.Accept-Encoding', '$..multiValueHeaders.Authorization', '$..multiValueHeaders.CloudFront-Forwarded-Proto', '$..multiValueHeaders.CloudFront-Is-Desktop-Viewer', '$..multiValueHeaders.CloudFront-Is-Mobile-Viewer', '$..multiValueHeaders.CloudFront-Is-SmartTV-Viewer', '$..multiValueHeaders.CloudFront-Is-Tablet-Viewer', '$..multiValueHeaders.CloudFront-Viewer-ASN', '$..multiValueHeaders.CloudFront-Viewer-Country', '$..multiValueHeaders.Connection', '$..multiValueHeaders.Host', '$..multiValueHeaders.User-Agent', '$..multiValueHeaders.Via', '$..multiValueHeaders.X-Amz-Cf-Id', '$..multiValueHeaders.X-Amzn-Trace-Id', '$..multiValueHeaders.X-Forwarded-For', '$..multiValueHeaders.X-Forwarded-Port', '$..multiValueHeaders.X-Forwarded-Proto', '$..multiValueHeaders.accept', '$..multiValueHeaders.accept-encoding', '$..multiValueHeaders.authorization', '$..multiValueHeaders.connection', '$..multiValueHeaders.host', '$..multiValueHeaders.user-agent', '$..multiValueHeaders.x-localstack-edge', '$..multiValueHeaders.x-localstack-request-url', '$..multiValueHeaders.x-localstack-tgt-api', '$..pathParameters', '$..requestContext.authorizer.claims', '$..requestContext.domainName', '$..requestContext.extendedRequestId', '$..requestContext.identity.accessKey', '$..requestContext.identity.accountId', '$..requestContext.identity.caller', '$..requestContext.identity.cognitoAuthenticationProvider', '$..requestContext.identity.cognitoAuthenticationType', '$..requestContext.identity.principalOrgId', '$..requestContext.identity.user', '$..requestContext.identity.userArn', '$..stageVariables']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment",
- "test": "test_db_instance_deployment",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_auth_not_authorized_user",
+ "test": "test_auth_not_authorized_user",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DbAddress']",
+ "snapshot_skipped": "['$..AuthenticationResult', '$..Session']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
- "test": "test_db_proxy",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_authorize_redirects_to_login",
+ "test": "test_authorize_redirects_to_login",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9850,8 +9840,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[with_trailing_dot]",
- "test": "test_hostedzone_optionaltrailingdot[with_trailing_dot]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}@example.com]",
+ "test": "test_change_password[user-{short_uid}@example.com]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9860,8 +9850,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[without_trailing_dot]",
- "test": "test_hostedzone_optionaltrailingdot[without_trailing_dot]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}]",
+ "test": "test_change_password[user-{short_uid}]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9870,18 +9860,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_with_comment",
- "test": "test_hostedzone_with_comment",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_admin_user_with_duplicate_email",
+ "test": "test_create_admin_user_with_duplicate_email",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HostedZone.CallerReference', '$..DelegationSet.Id', '$..HostedZone.Id']",
+ "snapshot_skipped": "all",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
- "test": "test_secretsmanager_target_attachment_maridab",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_pool_mfa_off",
+ "test": "test_create_pool_mfa_off",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9890,38 +9880,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules",
- "test": "test_create_receiptrules",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_timestream.py::test_create_db_tables",
- "test": "test_create_db_tables",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_user_group_in_pool",
+ "test": "test_create_user_group_in_pool",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
- "test": "test_create_misc_resources",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
- "test": "test_cdk_trail_cw_logs",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_custom_scopes",
+ "test": "test_custom_scopes",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9930,8 +9900,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_create_trail",
- "test": "test_create_trail",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_describe_user_pool",
+ "test": "test_describe_user_pool",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9940,18 +9910,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_filter_lookup_attributes",
- "test": "test_filter_lookup_attributes",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
+ "test": "test_force_alias_creation",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity.accountId', '$..CloudTrailEvent.userIdentity.arn', '$..CloudTrailEvent.userIdentity.type', '$..CloudTrailEvent.userIdentity.userName']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_not_started",
- "test": "test_get_trail_status_of_not_started",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_invalid_expiration_unit[invalid-invalid-hours]",
+ "test": "test_invalid_expiration_unit[invalid-invalid-hours]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9960,8 +9930,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started_and_stopped",
- "test": "test_get_trail_status_of_started_and_stopped",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_invalid_pool_client_parameters",
+ "test": "test_invalid_pool_client_parameters",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9970,8 +9940,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_no_logging_if_no_startup",
- "test": "test_no_logging_if_no_startup",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_via_web_form",
+ "test": "test_login_via_web_form",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9980,28 +9950,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_record_events",
- "test": "test_record_events",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username",
+ "test": "test_login_with_preferred_username",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_s3_trails",
- "test": "test_s3_trails",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username_attr_change",
+ "test": "test_login_with_preferred_username_attr_change",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestID', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.resources', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources', '$..NextToken']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_start_stop_updates",
- "test": "test_start_stop_updates",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_mfa_sms_authentication",
+ "test": "test_mfa_sms_authentication",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10010,8 +9980,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_commit_to_non_existing_repository_raises_error",
- "test": "test_commit_to_non_existing_repository_raises_error",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_mfa_sms_config",
+ "test": "test_mfa_sms_config",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10020,58 +9990,58 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_pull_request",
- "test": "test_create_pull_request",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_password_policy",
+ "test": "test_password_policy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_repository",
- "test": "test_create_repository",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_restore_forgotten_password",
+ "test": "test_restore_forgotten_password",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_delete_branch",
- "test": "test_delete_branch",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp",
+ "test": "test_signup_case_insensitive_and_auth_using_srp",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_delete_repository_matches_created_repository",
- "test": "test_delete_repository_matches_created_repository",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_with_email_phone_aliases",
+ "test": "test_signup_with_email_phone_aliases",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_branch",
- "test": "test_get_branch",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login",
+ "test": "test_srp_login",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..AccountRecoverySetting']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_file",
- "test": "test_get_file",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login_after_password_update",
+ "test": "test_srp_login_after_password_update",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10080,138 +10050,138 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_repository_lifecycle",
- "test": "test_repository_lifecycle",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_tags",
+ "test": "test_tags",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
- "test": "test_admin_no_srp_auth_flow",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-body]",
+ "test": "test_token_endpoint[client_credentials-body]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..AllowedOAuthScopes']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_srp_custom_auth_flow",
- "test": "test_srp_custom_auth_flow",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-body]",
+ "test": "test_token_endpoint[code-body]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..AllowedOAuthScopes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_valid_srp_login",
- "test": "test_valid_srp_login",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
+ "test": "test_token_endpoint[code-query_params]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..AllowedOAuthScopes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[1-days-86400]",
- "test": "test_access_token_expiration_validity[1-days-86400]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_update_user_mfa_preferences",
+ "test": "test_update_user_mfa_preferences",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[10-hours-36000]",
- "test": "test_access_token_expiration_validity[10-hours-36000]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_attributes_upon_creation[name-False-True]",
+ "test": "test_user_attributes_upon_creation[name-False-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_access_token_expiration_validity[500-seconds-500]",
- "test": "test_access_token_expiration_validity[500-seconds-500]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_attributes_upon_creation[name-True-False]",
+ "test": "test_user_attributes_upon_creation[name-True-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_change_password",
- "test": "test_admin_change_password",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_attributes_upon_creation[phone_number-True-False]",
+ "test": "test_user_attributes_upon_creation[phone_number-True-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..UserAttributes', '$..User.Attributes', '$.respond-to-auth-challenge.AuthenticationResult', '$.respond-to-auth-challenge.ChallengeParameters', '$.respond-to-auth-challenge.Session', '$.init-auth.AuthenticationResult']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_create_user_should_trigger_custom_message_lambda",
- "test": "test_admin_create_user_should_trigger_custom_message_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_group_deletion_with_non_existing_pool",
+ "test": "test_user_group_deletion_with_non_existing_pool",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_set_permanent_invalid_password",
- "test": "test_admin_set_permanent_invalid_password",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_groups",
+ "test": "test_user_groups",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.Message', '$..message', '$..UserAttributes..Value', '$..Username']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer",
- "test": "test_api_gateway_cognito_pool_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_login_before_confirmation",
+ "test": "test_user_login_before_confirmation",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
- "test": "test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_custom_id",
+ "test": "test_user_pool_custom_id",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AuthSessionValidity', '$..ExplicitAuthFlows', '$..DeletionProtection', '$..AdminCreateUserConfig.UnusedAccountValidityDays', '$..AliasAttributes', '$..EstimatedNumberOfUsers', '$..LambdaConfig', '$..MfaConfiguration', '$..SchemaAttributes', '$..body', '$..headers.Accept', '$..headers.Accept-Encoding', '$..headers.Authorization', '$..headers.CloudFront-Forwarded-Proto', '$..headers.CloudFront-Is-Desktop-Viewer', '$..headers.CloudFront-Is-Mobile-Viewer', '$..headers.CloudFront-Is-SmartTV-Viewer', '$..headers.CloudFront-Is-Tablet-Viewer', '$..headers.CloudFront-Viewer-ASN', '$..headers.CloudFront-Viewer-Country', '$..headers.Connection', '$..headers.Host', '$..headers.User-Agent', '$..headers.Via', '$..headers.X-Amz-Cf-Id', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Forwarded-For', '$..headers.X-Forwarded-Port', '$..headers.X-Forwarded-Proto', '$..headers.accept', '$..headers.accept-encoding', '$..headers.authorization', '$..headers.connection', '$..headers.host', '$..headers.user-agent', '$..headers.x-localstack-edge', '$..headers.x-localstack-request-url', '$..headers.x-localstack-tgt-api', '$..multiValueHeaders.Accept', '$..multiValueHeaders.Accept-Encoding', '$..multiValueHeaders.Authorization', '$..multiValueHeaders.CloudFront-Forwarded-Proto', '$..multiValueHeaders.CloudFront-Is-Desktop-Viewer', '$..multiValueHeaders.CloudFront-Is-Mobile-Viewer', '$..multiValueHeaders.CloudFront-Is-SmartTV-Viewer', '$..multiValueHeaders.CloudFront-Is-Tablet-Viewer', '$..multiValueHeaders.CloudFront-Viewer-ASN', '$..multiValueHeaders.CloudFront-Viewer-Country', '$..multiValueHeaders.Connection', '$..multiValueHeaders.Host', '$..multiValueHeaders.User-Agent', '$..multiValueHeaders.Via', '$..multiValueHeaders.X-Amz-Cf-Id', '$..multiValueHeaders.X-Amzn-Trace-Id', '$..multiValueHeaders.X-Forwarded-For', '$..multiValueHeaders.X-Forwarded-Port', '$..multiValueHeaders.X-Forwarded-Proto', '$..multiValueHeaders.accept', '$..multiValueHeaders.accept-encoding', '$..multiValueHeaders.authorization', '$..multiValueHeaders.connection', '$..multiValueHeaders.host', '$..multiValueHeaders.user-agent', '$..multiValueHeaders.x-localstack-edge', '$..multiValueHeaders.x-localstack-request-url', '$..multiValueHeaders.x-localstack-tgt-api', '$..pathParameters', '$..requestContext.authorizer.claims', '$..requestContext.domainName', '$..requestContext.extendedRequestId', '$..requestContext.identity.accessKey', '$..requestContext.identity.accountId', '$..requestContext.identity.caller', '$..requestContext.identity.cognitoAuthenticationProvider', '$..requestContext.identity.cognitoAuthenticationType', '$..requestContext.identity.principalOrgId', '$..requestContext.identity.user', '$..requestContext.identity.userArn', '$..stageVariables']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_auth_not_authorized_user",
- "test": "test_auth_not_authorized_user",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_error_messages",
+ "test": "test_user_pool_error_messages",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AuthenticationResult', '$..Session']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}@example.com]",
- "test": "test_change_password[user-{short_uid}@example.com]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pools_and_clients",
+ "test": "test_user_pools_and_clients",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10220,8 +10190,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}]",
- "test": "test_change_password[user-{short_uid}]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_well_known_paths",
+ "test": "test_well_known_paths",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10230,8 +10200,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_user_group_in_pool",
- "test": "test_create_user_group_in_pool",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognitoIdentity::test_create_identity_get_id",
+ "test": "test_create_identity_get_id",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10240,48 +10210,48 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_custom_scopes",
- "test": "test_custom_scopes",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_auth_trigger_group_overrides",
+ "test": "test_auth_trigger_group_overrides",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_describe_user_pool",
- "test": "test_describe_user_pool",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_cognito_admin_create_signup_triggers",
+ "test": "test_cognito_admin_create_signup_triggers",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_cognito_triggers",
+ "test": "test_cognito_triggers",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_invalid_expiration_unit[invalid-invalid-invalid]",
- "test": "test_invalid_expiration_unit[invalid-invalid-invalid]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_custom_auth_triggers",
+ "test": "test_custom_auth_triggers",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ChallengeParameters.USERNAME']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_via_web_form",
- "test": "test_login_via_web_form",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[None]",
+ "test": "test_user_migration_lambda[None]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10290,8 +10260,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username",
- "test": "test_login_with_preferred_username",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[aliases1]",
+ "test": "test_user_migration_lambda[aliases1]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10300,8 +10270,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_mfa_sms_authentication",
- "test": "test_mfa_sms_authentication",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[aliases2]",
+ "test": "test_user_migration_lambda[aliases2]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10310,18 +10280,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_mfa_sms_config",
- "test": "test_mfa_sms_config",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-False-None]",
+ "test": "test_create_user_with_email_uses_sub_as_username[False-False-None]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_password_policy",
- "test": "test_password_policy",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-False-email]",
+ "test": "test_create_user_with_email_uses_sub_as_username[False-False-email]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10330,8 +10300,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_restore_forgotten_password",
- "test": "test_restore_forgotten_password",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-True-None]",
+ "test": "test_create_user_with_email_uses_sub_as_username[False-True-None]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10340,8 +10310,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp",
- "test": "test_signup_case_insensitive_and_auth_using_srp",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-True-email]",
+ "test": "test_create_user_with_email_uses_sub_as_username[False-True-email]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10350,8 +10320,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_with_email_phone_aliases",
- "test": "test_signup_with_email_phone_aliases",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-False-None]",
+ "test": "test_create_user_with_email_uses_sub_as_username[True-False-None]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10360,88 +10330,88 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login",
- "test": "test_srp_login",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-False-email]",
+ "test": "test_create_user_with_email_uses_sub_as_username[True-False-email]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AccountRecoverySetting']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login_after_password_update",
- "test": "test_srp_login_after_password_update",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-True-None]",
+ "test": "test_create_user_with_email_uses_sub_as_username[True-True-None]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-body]",
- "test": "test_token_endpoint[client_credentials-body]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-True-email]",
+ "test": "test_create_user_with_email_uses_sub_as_username[True-True-email]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-query_params]",
- "test": "test_token_endpoint[client_credentials-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/dms/test_dms.py::test_dms_rds_kinesis",
+ "test": "test_dms_rds_kinesis",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-body]",
- "test": "test_token_endpoint[code-body]",
+ "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
+ "test": "test_create_query_db",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db_with_port",
+ "test": "test_create_query_db_with_port",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_update_user_mfa_preferences",
- "test": "test_update_user_mfa_preferences",
+ "node_id": "LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups",
+ "test": "test_table_backups",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_attributes_upon_creation[name-True-False]",
- "test": "test_user_attributes_upon_creation[name-True-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_associate_and_disassociate_vpc_cidr_block",
+ "test": "test_associate_and_disassociate_vpc_cidr_block",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Ipv6CidrBlockAssociation.Ipv6CidrBlock', '$..Ipv6CidrBlockAssociation.Ipv6Pool', '$..Ipv6CidrBlockAssociation.NetworkBorderGroup']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_group_deletion_with_non_existing_pool",
- "test": "test_user_group_deletion_with_non_existing_pool",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_connect_to_localstack",
+ "test": "test_connect_to_localstack",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10450,8 +10420,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_groups",
- "test": "test_user_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_create_instance_with_ebs_create_fs",
+ "test": "test_create_instance_with_ebs_create_fs",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10460,8 +10430,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_login_before_confirmation",
- "test": "test_user_login_before_confirmation",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_images",
+ "test": "test_describe_images",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10470,8 +10440,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_custom_id",
- "test": "test_user_pool_custom_id",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_images_with_podman_localhost_prefix",
+ "test": "test_describe_images_with_podman_localhost_prefix",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10480,18 +10450,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_error_messages",
- "test": "test_user_pool_error_messages",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_instances",
+ "test": "test_describe_instances",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_well_known_paths",
- "test": "test_well_known_paths",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_ssh_key_pairs",
+ "test": "test_ssh_key_pairs",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10500,8 +10470,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognitoIdentity::test_cognito_identity_get_id_region_matches",
- "test": "test_cognito_identity_get_id_region_matches",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_stop_start_terminate_instances_for_invalid_instance_id_raises[start_instances]",
+ "test": "test_stop_start_terminate_instances_for_invalid_instance_id_raises[start_instances]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10510,28 +10480,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognitoIdentity::test_create_identity_get_id",
- "test": "test_create_identity_get_id",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_stop_start_terminate_instances_for_invalid_instance_id_raises[terminate_instances]",
+ "test": "test_stop_start_terminate_instances_for_invalid_instance_id_raises[terminate_instances]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_auth_trigger_group_overrides",
- "test": "test_auth_trigger_group_overrides",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_user_data",
+ "test": "test_user_data",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_cognito_admin_create_signup_triggers",
- "test": "test_cognito_admin_create_signup_triggers",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions",
+ "test": "test_auth_token_in_different_regions",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10540,28 +10510,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_cognito_triggers",
- "test": "test_cognito_triggers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_custom_auth_triggers",
- "test": "test_custom_auth_triggers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ChallengeParameters.USERNAME']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest",
+ "test": "test_batch_delete_images_tag_and_digest",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[None]",
- "test": "test_user_migration_lambda[None]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image",
+ "test": "test_batch_get_image",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10570,8 +10530,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[aliases1]",
- "test": "test_user_migration_lambda[aliases1]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest",
+ "test": "test_batch_get_images_tag_and_digest",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10580,8 +10540,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_user_migration_lambda[aliases2]",
- "test": "test_user_migration_lambda[aliases2]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image",
+ "test": "test_create_delete_image",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10590,88 +10550,88 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-False-None]",
- "test": "test_create_user_with_email_uses_sub_as_username[False-False-None]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images",
+ "test": "test_delete_images",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-False-email]",
- "test": "test_create_user_with_email_uses_sub_as_username[False-False-email]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images",
+ "test": "test_describe_images",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-True-None]",
- "test": "test_create_user_with_email_uses_sub_as_username[False-True-None]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_ecr_tagging",
+ "test": "test_ecr_tagging",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[False-True-email]",
- "test": "test_create_user_with_email_uses_sub_as_username[False-True-email]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token",
+ "test": "test_get_authorization_token",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-False-None]",
- "test": "test_create_user_with_email_uses_sub_as_username[True-False-None]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy",
+ "test": "test_lifecycle_policy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-False-email]",
- "test": "test_create_user_with_email_uses_sub_as_username[True-False-email]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images",
+ "test": "test_list_images",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-True-None]",
- "test": "test_create_user_with_email_uses_sub_as_username[True-True-None]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json]",
+ "test": "test_put_image[application/vnd.docker.distribution.manifest.v1+json]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..repositoryUri', '$..architecture', '$..signatures']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestUserAttributes::test_create_user_with_email_uses_sub_as_username[True-True-email]",
- "test": "test_create_user_with_email_uses_sub_as_username[True-True-email]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json]",
+ "test": "test_put_image[application/vnd.oci.image.manifest.v1+json]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..repositoryUri', '$..architecture', '$..signatures']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
- "test": "test_create_query_db",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry",
+ "test": "test_repository_deletion_in_registry",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10680,8 +10640,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db_with_port",
- "test": "test_create_query_db_with_port",
+ "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories",
+ "test": "test_two_different_repositories",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10690,28 +10650,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups",
- "test": "test_table_backups",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestClustersCrud::test_delete_cluster_status",
+ "test": "test_delete_cluster_status",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_connect_to_localstack",
- "test": "test_connect_to_localstack",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestServiceCrud::test_create_delete_service",
+ "test": "test_create_delete_service",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..deploymentController', '$..enableECSManagedTags', '$..enableExecuteCommand', '$..placementConstraints', '$..propagateTags', '$..deployments', '$..status']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_create_instance_with_ebs_create_fs",
- "test": "test_create_instance_with_ebs_create_fs",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10720,28 +10680,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_images",
- "test": "test_describe_images",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
+ "test": "test_create_task_with_secrets[False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_images_with_podman_localhost_prefix",
- "test": "test_describe_images_with_podman_localhost_prefix",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[True]",
+ "test": "test_create_task_with_secrets[True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_describe_instances",
- "test": "test_describe_instances",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_describe_service_with_task_definition",
+ "test": "test_describe_service_with_task_definition",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10750,8 +10710,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_ssh_key_pairs",
- "test": "test_ssh_key_pairs",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_ecs_task_multiple",
+ "test": "test_ecs_task_multiple",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10760,8 +10720,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_stop_start_terminate_instances_for_invalid_instance_id_raises[start_instances]",
- "test": "test_stop_start_terminate_instances_for_invalid_instance_id_raises[start_instances]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_ecs_task_overrides",
+ "test": "test_ecs_task_overrides",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10770,8 +10730,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_stop_start_terminate_instances_for_invalid_instance_id_raises[terminate_instances]",
- "test": "test_stop_start_terminate_instances_for_invalid_instance_id_raises[terminate_instances]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_and_stop_task[run_task]",
+ "test": "test_start_and_stop_task[run_task]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10780,8 +10740,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_user_data",
- "test": "test_user_data",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_and_stop_task[start_task]",
+ "test": "test_start_and_stop_task[start_task]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10790,28 +10750,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions",
- "test": "test_auth_token_in_different_regions",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_definition_multiple_times",
+ "test": "test_start_task_definition_multiple_times",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_delete_images_tag_and_digest",
- "test": "test_batch_delete_images_tag_and_digest",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_definition_with_cap_drop",
+ "test": "test_start_task_definition_with_cap_drop",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_image",
- "test": "test_batch_get_image",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_docker_flags",
+ "test": "test_start_task_docker_flags",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10820,18 +10780,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_batch_get_images_tag_and_digest",
- "test": "test_batch_get_images_tag_and_digest",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_state_stopped",
+ "test": "test_start_task_state_stopped",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_create_delete_image",
- "test": "test_create_delete_image",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_subscribe_ecs_events",
+ "test": "test_subscribe_ecs_events",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10840,8 +10800,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_delete_images",
- "test": "test_delete_images",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_connect_to_localstack",
+ "test": "test_task_connect_to_localstack",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10850,8 +10810,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_describe_images",
- "test": "test_describe_images",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_mount_host_volume",
+ "test": "test_task_mount_host_volume",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10860,8 +10820,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_get_authorization_token",
- "test": "test_get_authorization_token",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_produces_logs",
+ "test": "test_task_produces_logs",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10870,128 +10830,128 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_lifecycle_policy",
- "test": "test_lifecycle_policy",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_update_service_creates_new_deployment",
+ "test": "test_update_service_creates_new_deployment",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..attachments..details..value', '$..clusterArn', '$..containerInstanceArn', '$..containers..imageDigest', '$..containers..memory', '$..containers..networkInterfaces', '$..containers..runtimeId', '$..group', '$..overrides.containerOverrides', '$..overrides.inferenceAcceleratorOverrides', '$..taskArn', '$..taskDefinitionArn', '$..version', '$..attachments..id', '$..containers..containerArn', '$..containers..image']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_list_images",
- "test": "test_list_images",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[invalid name-invalid image]",
+ "test": "test_create_task_definition_err[invalid name-invalid image]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v1+json]",
- "test": "test_put_image[application/vnd.docker.distribution.manifest.v1+json]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[valid_name-invalid image]",
+ "test": "test_create_task_definition_err[valid_name-invalid image]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..repositoryUri', '$..architecture', '$..signatures']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.docker.distribution.manifest.v2+json]",
- "test": "test_put_image[application/vnd.docker.distribution.manifest.v2+json]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:3.12-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine:3.12-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..repositoryUri', '$..architecture', '$..signatures']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_put_image[application/vnd.oci.image.manifest.v1+json]",
- "test": "test_put_image[application/vnd.oci.image.manifest.v1+json]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:latest-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine:latest-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..repositoryUri', '$..architecture', '$..signatures']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_deletion_in_registry",
- "test": "test_repository_deletion_in_registry",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_lifecycle",
- "test": "test_repository_lifecycle",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_repository_uri_hostname",
- "test": "test_repository_uri_hostname",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_two_different_repositories",
- "test": "test_two_different_repositories",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_custom_localstack_hostname_endpoint",
- "test": "test_ecr_custom_localstack_hostname_endpoint",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name-False]",
+ "test": "test_create_task_definition_validation[test-container-library/image@name-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestClustersCrud::test_delete_cluster_status",
- "test": "test_delete_cluster_status",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestServiceCrud::test_create_delete_service",
- "test": "test_create_delete_service",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..deploymentController', '$..enableECSManagedTags', '$..enableExecuteCommand', '$..placementConstraints', '$..propagateTags', '$..deployments', '$..status']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_tasks_list_tasks",
+ "test": "test_describe_tasks_list_tasks",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11000,138 +10960,138 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
- "test": "test_create_task_with_secrets[False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_undefined_task_definition",
+ "test": "test_describe_undefined_task_definition",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[True]",
- "test": "test_create_task_with_secrets[True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_fargate_task_definition_optional_container_memory",
+ "test": "test_fargate_task_definition_optional_container_memory",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_describe_service_with_task_definition",
- "test": "test_describe_service_with_task_definition",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_list_services_no_default_cluster",
+ "test": "test_list_services_no_default_cluster",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_ecs_task_multiple",
- "test": "test_ecs_task_multiple",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "test": "test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_ecs_task_overrides",
- "test": "test_ecs_task_overrides",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "test": "test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_and_stop_task[run_task]",
- "test": "test_start_and_stop_task[run_task]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "test": "test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_and_stop_task[start_task]",
- "test": "test_start_and_stop_task[start_task]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "test": "test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_definition_multiple_times",
- "test": "test_start_task_definition_multiple_times",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "test": "test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_definition_with_cap_drop",
- "test": "test_start_task_definition_with_cap_drop",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "test": "test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_docker_flags",
- "test": "test_start_task_docker_flags",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_tag_task_definition",
+ "test": "test_tag_task_definition",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_start_task_state_stopped",
- "test": "test_start_task_state_stopped",
+ "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_create_filesystem",
+ "test": "test_create_filesystem",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_subscribe_ecs_events",
- "test": "test_subscribe_ecs_events",
+ "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_lifecycle_configuration",
+ "test": "test_lifecycle_configuration",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_connect_to_localstack",
- "test": "test_task_connect_to_localstack",
+ "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_mount_target",
+ "test": "test_mount_target",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_mount_host_volume",
- "test": "test_task_mount_host_volume",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_additional_amis_present",
+ "test": "test_additional_amis_present",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11140,228 +11100,218 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_task_produces_logs",
- "test": "test_task_produces_logs",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.19]",
+ "test": "test_get_parameters_eks_amis[1.19]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_update_service_creates_new_deployment",
- "test": "test_update_service_creates_new_deployment",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..attachments..details..value', '$..clusterArn', '$..containerInstanceArn', '$..containers..imageDigest', '$..containers..memory', '$..containers..networkInterfaces', '$..containers..runtimeId', '$..group', '$..overrides.containerOverrides', '$..overrides.inferenceAcceleratorOverrides', '$..taskArn', '$..taskDefinitionArn', '$..version', '$..attachments..id', '$..containers..containerArn', '$..containers..image']",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition",
- "test": "test_create_task_definition",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.20]",
+ "test": "test_get_parameters_eks_amis[1.20]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition..networkMode', '$..taskDefinition..registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[invalid name-invalid image]",
- "test": "test_create_task_definition_err[invalid name-invalid image]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.21]",
+ "test": "test_get_parameters_eks_amis[1.21]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[invalid name-valid_image]",
- "test": "test_create_task_definition_err[invalid name-valid_image]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.22]",
+ "test": "test_get_parameters_eks_amis[1.22]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[valid_name-invalid image]",
- "test": "test_create_task_definition_err[valid_name-invalid image]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.23]",
+ "test": "test_get_parameters_eks_amis[1.23]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[@test-container-alpine-False]",
- "test": "test_create_task_definition_validation[@test-container-alpine-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_cluster_default_version",
+ "test": "test_cluster_default_version",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..certificateAuthority', '$..endpoint', '$..identity', '$..kubernetesNetworkConfig', '$..logging', '$..resourcesVpcConfig', '$..roleArn', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True]",
- "test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
+ "test": "test_create_app_in_k3s_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test container-alpine-False]",
- "test": "test_create_task_definition_validation[test container-alpine-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration",
+ "test": "test_ecr_eks_integration",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-@library/alpine:latest-False]",
- "test": "test_create_task_definition_validation[test-container-@library/alpine:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_eks_pod_exec",
+ "test": "test_eks_pod_exec",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpin e:3.12.0-False]",
- "test": "test_create_task_definition_validation[test-container-alpin e:3.12.0-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_localstack_communication_from_pod",
+ "test": "test_localstack_communication_from_pod",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine-True]",
- "test": "test_create_task_definition_validation[test-container-alpine-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_volume_mount",
+ "test": "test_volume_mount",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:3.12-True]",
- "test": "test_create_task_definition_validation[test-container-alpine:3.12-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_cache_type",
+ "test": "test_cluster_no_cache_type",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:latest-True]",
- "test": "test_create_task_definition_validation[test-container-alpine:latest-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
+ "test": "test_cluster_no_engine",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@3.12.0-False]",
- "test": "test_create_task_definition_validation[test-container-alpine@3.12.0-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_redis_num_nodes_greater_than_one",
+ "test": "test_cluster_redis_num_nodes_greater_than_one",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
- "test": "test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group_no_cache_type",
+ "test": "test_replication_group_no_cache_type",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
- "test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_cluster_custom_port",
+ "test": "test_cache_cluster_custom_port",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-docker.io/nginx-True]",
- "test": "test_create_task_definition_validation[test-container-docker.io/nginx-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
+ "test": "test_create_delete_multiple_clusters",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine@latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/alpine@latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-1]",
+ "test": "test_redis_cluster_mode[0-1]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name-False]",
- "test": "test_create_task_definition_validation[test-container-library/image@name-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-2]",
+ "test": "test_redis_cluster_mode[0-2]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name:latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/image@name:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-4]",
+ "test": "test_redis_cluster_mode[0-4]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
- "test": "test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-2]",
+ "test": "test_redis_cluster_mode[1-2]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_tasks_list_tasks",
- "test": "test_describe_tasks_list_tasks",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-4]",
+ "test": "test_redis_cluster_mode[1-4]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11370,178 +11320,178 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_fargate_task_definition_optional_container_memory",
- "test": "test_fargate_task_definition_optional_container_memory",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
+ "test": "test_replication_group",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_list_services_no_default_cluster",
- "test": "test_list_services_no_default_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_access_point",
- "test": "test_access_point",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_applications",
+ "test": "test_manage_applications",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_create_filesystem",
- "test": "test_create_filesystem",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
+ "test": "test_alb_modify_attributes",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_mount_target",
- "test": "test_mount_target",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
+ "test": "test_alb_set_ip_address_type",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_additional_amis_present",
- "test": "test_additional_amis_present",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.19]",
- "test": "test_get_parameters_eks_amis[1.19]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
+ "test": "test_create_load_balancer",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.20]",
- "test": "test_get_parameters_eks_amis[1.20]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
+ "test": "test_create_loadbalancer_rule",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.21]",
- "test": "test_get_parameters_eks_amis[1.21]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
+ "test": "test_describe_load_balancers",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.22]",
- "test": "test_get_parameters_eks_amis[1.22]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_create_load_balancer",
+ "test": "test_failing_create_load_balancer",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_cluster_default_version",
- "test": "test_cluster_default_version",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
+ "test": "test_failing_describe_load_balancers",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..certificateAuthority', '$..endpoint', '$..identity', '$..kubernetesNetworkConfig', '$..logging', '$..resourcesVpcConfig', '$..roleArn', '$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
- "test": "test_create_app_in_k3s_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
+ "test": "test_route53_elb_integration",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration",
- "test": "test_ecr_eks_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_eks_pod_exec",
- "test": "test_eks_pod_exec",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_localstack_communication_from_pod",
- "test": "test_localstack_communication_from_pod",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_volume_mount",
- "test": "test_volume_mount",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_cluster_custom_port",
- "test": "test_cache_cluster_custom_port",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
- "test": "test_cluster_no_engine",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11550,148 +11500,148 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
- "test": "test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1]",
- "test": "test_redis_cluster_mode[0-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2]",
- "test": "test_redis_cluster_mode[0-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-False-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4]",
- "test": "test_redis_cluster_mode[0-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2]",
- "test": "test_redis_cluster_mode[1-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4]",
- "test": "test_redis_cluster_mode[1-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
- "test": "test_replication_group",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
- "test": "test_alb_modify_attributes",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
- "test": "test_alb_set_ip_address_type",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-False-source_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
- "test": "test_create_load_balancer",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
- "test": "test_create_loadbalancer_rule",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTP-True]",
+ "test": "test_target_group_healthcheck_interval[HTTP-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
- "test": "test_describe_load_balancers",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTPS-True]",
+ "test": "test_target_group_healthcheck_interval[HTTPS-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_create_load_balancer",
- "test": "test_failing_create_load_balancer",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
- "test": "test_failing_describe_load_balancers",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP_UDP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11700,8 +11650,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
- "test": "test_route53_elb_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TLS-False]",
+ "test": "test_target_group_healthcheck_interval[TLS-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11710,8 +11660,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[UDP-False]",
+ "test": "test_target_group_healthcheck_interval[UDP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11829,66 +11779,6 @@
"snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_action_rds_reboot_db_instances",
- "test": "test_action_rds_reboot_db_instances",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_fault_action",
- "test": "test_api_injection_fault_action",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_operation",
- "test": "test_api_injection_parametrized_operation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_region",
- "test": "test_api_injection_parametrized_region",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_create_experiment_template",
- "test": "test_create_experiment_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_list_experiment_templates",
- "test": "test_list_experiment_templates",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_inventory_retrieval",
"test": "test_inventory_retrieval",
@@ -11899,16 +11789,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..location']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_cross_account.py::TestLambdaCrossAccount::test_lambda_cross_account_invoke",
"test": "test_lambda_cross_account_invoke",
@@ -12399,6 +12279,26 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_file_permissions_with_layer",
+ "test": "test_file_permissions_with_layer",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_file_permissions_without_layer",
+ "test": "test_file_permissions_without_layer",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_multiple_layers_override",
"test": "test_function_multiple_layers_override",
@@ -12610,8 +12510,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_json_metric_filters",
- "test": "test_json_metric_filters",
+ "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_filter_log_events_with_pattern",
+ "test": "test_filter_log_events_with_pattern",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -12620,8 +12520,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_put_subscription_filter_kinesis_with_filter_pattern",
- "test": "test_put_subscription_filter_kinesis_with_filter_pattern",
+ "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_json_metric_filters",
+ "test": "test_json_metric_filters",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -12634,7 +12534,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -12729,16 +12629,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[10.23]",
"test": "test_postgres_s3_extension_helpers[10.23]",
diff --git a/data/coverage/cognito-identity.json b/data/coverage/cognito-identity.json
index c67711857d..d752ef2fda 100644
--- a/data/coverage/cognito-identity.json
+++ b/data/coverage/cognito-identity.json
@@ -291,7 +291,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -469,7 +469,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -485,7 +485,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
@@ -495,7 +495,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -1065,7 +1065,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
@@ -1075,7 +1075,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
diff --git a/data/coverage/cognito-idp.json b/data/coverage/cognito-idp.json
index c00c313705..6ac1a508bb 100644
--- a/data/coverage/cognito-idp.json
+++ b/data/coverage/cognito-idp.json
@@ -392,7 +392,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": false,
+ "terraform_test_suite": true,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -416,7 +416,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": false,
+ "terraform_test_suite": true,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -476,7 +476,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": false,
+ "terraform_test_suite": true,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -499,8 +499,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": false,
- "terraform_test_suite": false,
+ "external_test_suite": true,
+ "terraform_test_suite": true,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -583,8 +583,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": false,
- "terraform_test_suite": false,
+ "external_test_suite": true,
+ "terraform_test_suite": true,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -704,7 +704,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": false,
+ "terraform_test_suite": true,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1159,8 +1159,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": false,
- "terraform_test_suite": false,
+ "external_test_suite": true,
+ "terraform_test_suite": true,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1989,16 +1989,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username",
"test": "test_login_with_preferred_username",
@@ -3484,16 +3474,6 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
- "response": "400",
- "error": "InvalidPasswordException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
}
]
},
@@ -3931,7 +3911,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -4041,7 +4021,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
@@ -4121,7 +4101,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -4135,7 +4115,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -4155,16 +4135,6 @@
},
"AliasAttributes, PoolName": {
"ls_pro": [
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
"test": "test_force_alias_creation",
@@ -4365,7 +4335,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -4379,7 +4349,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -5245,7 +5215,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_custom_id",
@@ -5471,7 +5441,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -5939,16 +5909,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_get_signing_certificate",
"test": "test_get_signing_certificate",
@@ -6291,7 +6251,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -6305,7 +6265,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -6485,7 +6445,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
@@ -6607,7 +6567,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -6633,7 +6593,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -6715,7 +6675,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_cognito_authorizer_token_types[client_credentials]",
@@ -6865,7 +6825,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigatewayv2.py::TestApiGwV2Authorizers::test_create_apigateway_authorizer_client_credentials",
@@ -6875,7 +6835,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_custom_ids",
@@ -6885,7 +6845,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
@@ -6895,7 +6855,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -7147,16 +7107,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_get_signing_certificate",
"test": "test_get_signing_certificate",
@@ -7851,7 +7801,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
@@ -7861,7 +7811,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
@@ -7871,7 +7821,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -8017,7 +7967,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -8357,16 +8307,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_get_signing_certificate",
"test": "test_get_signing_certificate",
diff --git a/data/coverage/config.json b/data/coverage/config.json
index 0c9eb1611a..76f1ea7630 100644
--- a/data/coverage/config.json
+++ b/data/coverage/config.json
@@ -44,7 +44,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -68,7 +68,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -92,7 +92,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -404,7 +404,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -884,7 +884,7 @@
"availability": "community",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
diff --git a/data/coverage/docdb.json b/data/coverage/docdb.json
index aecd7ecfbc..0f2440c6b8 100644
--- a/data/coverage/docdb.json
+++ b/data/coverage/docdb.json
@@ -128,7 +128,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -212,7 +212,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -368,7 +368,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -451,8 +451,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -488,7 +488,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -523,8 +523,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -707,17 +707,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -728,10 +728,10 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -745,7 +745,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -773,7 +773,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -787,7 +787,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -898,7 +898,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1003,16 +1003,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_invalid_cluster_identifier",
"test": "test_invalid_cluster_identifier",
@@ -1035,7 +1025,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_postgres",
@@ -1052,7 +1042,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1144,7 +1134,7 @@
"test": "test_serverless_no_custom_cluster_endpoint",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1202,7 +1192,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1212,7 +1202,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1254,10 +1244,10 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
@@ -1387,6 +1377,16 @@
"CreateDBClusterParameterGroup": {
"DBClusterParameterGroupName, DBParameterGroupFamily, Description": {
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_scenario_validate_infra",
+ "test": "test_scenario_validate_infra",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_scenario_validate_infra",
"test": "test_scenario_validate_infra",
@@ -1415,7 +1415,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_cluster_deployment",
@@ -1472,10 +1472,10 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_data_api[False]",
@@ -1492,7 +1492,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -1632,7 +1632,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -1691,7 +1691,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1702,7 +1702,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "400",
"error": "InvalidParameterCombination",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1719,7 +1719,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1881,7 +1881,7 @@
"snapshot_skipped": "['$..DbAddress']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2152,10 +2152,10 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2169,7 +2169,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2180,7 +2180,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "400",
"error": "InvalidParameterCombination",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2197,7 +2197,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_postgres",
@@ -2214,7 +2214,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2238,7 +2238,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2303,16 +2303,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_read_write",
"test": "test_global_cluster_read_write",
@@ -2338,7 +2328,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2348,7 +2338,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "400",
"error": "InvalidParameterCombination",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2362,7 +2352,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "400",
"error": "InvalidParameterCombination",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2376,7 +2366,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "400",
"error": "InvalidParameterCombination",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2393,17 +2383,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2447,7 +2437,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -2457,17 +2447,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_subnet_group",
@@ -2484,10 +2474,10 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_subnet_group",
@@ -2508,10 +2498,10 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2548,10 +2538,10 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2567,7 +2557,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_docdb.py::test_docdb_cluster",
@@ -2577,7 +2567,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_cluster_deployment",
@@ -2587,17 +2577,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
@@ -2627,17 +2617,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -2647,17 +2637,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "InvalidDBClusterStateFault",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2808,7 +2798,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2818,7 +2808,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2928,7 +2918,7 @@
"test": "test_serverless_no_custom_cluster_endpoint",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2993,16 +2983,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_read_write",
"test": "test_global_cluster_read_write",
@@ -3028,7 +3008,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3038,7 +3018,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3048,7 +3028,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "400",
"error": "InvalidDBClusterStateFault",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3067,7 +3047,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_docdb.py::test_docdb_cluster",
@@ -3077,7 +3057,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -3087,7 +3067,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_cluster_parameter_groups",
@@ -3141,16 +3121,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
- "test": "test_rds_lambda",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment",
"test": "test_db_instance_deployment",
@@ -3159,7 +3129,7 @@
"snapshot_skipped": "['$..DbAddress']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -3169,7 +3139,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -3206,10 +3176,10 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -3219,7 +3189,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -3229,7 +3199,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -3239,7 +3209,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -3249,7 +3219,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3330,7 +3300,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3340,7 +3310,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3485,16 +3455,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[10.23]",
"test": "test_postgres_extension_query_export_to_s3[10.23]",
@@ -3700,7 +3660,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3720,7 +3680,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3789,7 +3749,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -3799,17 +3759,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -3819,7 +3779,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_subnet_group",
@@ -3836,10 +3796,10 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -3852,7 +3812,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3888,7 +3848,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -3942,7 +3902,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4002,7 +3962,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4072,7 +4032,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4132,7 +4092,7 @@
"test": "test_serverless_no_custom_cluster_endpoint",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4157,16 +4117,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_remove_instances_from_cluster",
"test": "test_global_cluster_remove_instances_from_cluster",
@@ -4182,7 +4132,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4202,7 +4152,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4322,7 +4272,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "404",
"error": "DBClusterParameterGroupNotFoundFault",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4482,7 +4432,7 @@
"test": "test_validate_initial_setup",
"response": "404",
"error": "DBClusterParameterGroupNotFoundFault",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4498,7 +4448,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4624,7 +4574,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4634,7 +4584,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -4684,7 +4634,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4758,7 +4708,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4768,7 +4718,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4858,7 +4808,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4868,7 +4818,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4988,7 +4938,7 @@
"test": "test_serverless_no_custom_cluster_endpoint",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5053,16 +5003,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_cluster_with_instances",
"test": "test_reset_cluster_with_instances",
@@ -5098,7 +5038,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5108,7 +5048,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5118,7 +5058,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5128,7 +5068,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "404",
"error": "DBClusterNotFoundFault",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5292,7 +5232,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -5342,7 +5282,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5406,7 +5346,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5486,7 +5426,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5496,7 +5436,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5651,16 +5591,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[10.23]",
"test": "test_postgres_extension_query_export_to_s3[10.23]",
@@ -5906,7 +5836,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5916,7 +5846,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5996,7 +5926,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6006,7 +5936,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6026,7 +5956,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6042,7 +5972,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6076,7 +6006,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6086,7 +6016,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6096,7 +6026,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6340,7 +6270,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6350,7 +6280,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
diff --git a/data/coverage/dynamodb.json b/data/coverage/dynamodb.json
index 2bb7e3c715..d384a4fc9c 100644
--- a/data/coverage/dynamodb.json
+++ b/data/coverage/dynamodb.json
@@ -476,8 +476,8 @@
"implemented": false,
"availability": "",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -706,6 +706,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
"test": "test_lambda_streams_batch_and_transactions",
@@ -1416,6 +1426,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
"test": "test_dynamodb_resolvers",
@@ -1672,6 +1692,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
"test": "test_customresource_lambda_backed",
@@ -1936,6 +1966,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream",
"test": "test_binary_data_with_stream",
@@ -1971,7 +2011,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2293,28 +2333,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type",
- "test": "test_dynamodb_stream_stream_view_type",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
+ "test": "test_cdk_bootstrap_redeploy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream",
- "test": "test_dynamodb_with_kinesis_stream",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_stream_view_type",
+ "test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute",
- "test": "test_filter_policy_on_message_body_dot_attribute",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream",
+ "test": "test_dynamodb_with_kinesis_stream",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2325,13 +2365,13 @@
],
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
+ "test": "test_force_alias_creation",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
}
]
@@ -2348,7 +2388,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -2358,7 +2398,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -2368,7 +2408,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_put_integration_dynamodb_proxy_validation_with_request_template",
@@ -2428,7 +2468,7 @@
"snapshot_skipped": "['$..Policy.Description', '$..Policy.IsAttachable', '$..Policy.PermissionsBoundaryUsageCount', '$..Policy.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -2438,7 +2478,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST]",
@@ -2448,7 +2488,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED]",
@@ -2458,7 +2498,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table",
@@ -2468,7 +2508,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table",
@@ -2478,7 +2518,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table",
@@ -2488,7 +2528,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf",
@@ -2498,7 +2538,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -2508,7 +2548,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports",
@@ -2518,7 +2558,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary",
@@ -2540,6 +2580,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema",
"test": "test_batch_write_not_matching_schema",
@@ -2695,7 +2745,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2820,16 +2870,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_nosql_workbench_localhost_region",
- "test": "test_nosql_workbench_localhost_region",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_query_on_deleted_resource",
"test": "test_query_on_deleted_resource",
@@ -3218,7 +3258,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodb",
@@ -3238,7 +3278,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -3248,7 +3288,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -3258,7 +3298,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource",
@@ -3268,7 +3308,7 @@
"snapshot_skipped": "['$..Policy.Description', '$..Policy.IsAttachable', '$..Policy.PermissionsBoundaryUsageCount', '$..Policy.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -3278,7 +3318,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST]",
@@ -3288,7 +3328,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED]",
@@ -3298,7 +3338,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table",
@@ -3308,7 +3348,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table",
@@ -3318,7 +3358,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table",
@@ -3328,7 +3368,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf",
@@ -3338,7 +3378,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -3348,7 +3388,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports",
@@ -3358,7 +3398,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_delete_table",
@@ -3398,7 +3438,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -3410,7 +3450,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration",
@@ -3482,6 +3522,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
"test": "test_dynamodb_resolvers",
@@ -3500,7 +3550,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
@@ -3512,6 +3562,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_table_backups",
"test": "test_table_backups",
@@ -3600,7 +3660,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
@@ -3610,7 +3670,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -3726,16 +3786,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup",
- "test": "test_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup",
"test": "test_setup",
@@ -3746,16 +3796,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
- "test": "test_prefill_dynamodb_table",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
"test": "test_prefill_dynamodb_table",
@@ -3766,16 +3806,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
"test": "test_validate_infra_setup",
@@ -3874,7 +3904,7 @@
"snapshot_skipped": "['$..Policy.Description', '$..Policy.IsAttachable', '$..Policy.PermissionsBoundaryUsageCount', '$..Policy.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -3884,17 +3914,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST]",
- "test": "test_billing_mode_as_conditional[PAY_PER_REQUEST]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST]",
@@ -3906,16 +3926,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED]",
- "test": "test_billing_mode_as_conditional[PROVISIONED]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED]",
"test": "test_billing_mode_as_conditional[PROVISIONED]",
@@ -3926,16 +3936,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table",
- "test": "test_default_name_for_table",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table",
"test": "test_default_name_for_table",
@@ -3954,17 +3954,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table",
- "test": "test_globalindex_read_write_provisioned_throughput_dynamodb_table",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table",
@@ -3994,17 +3984,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
- "test": "test_cfn_lambda_dynamodb_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -4024,7 +4004,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary",
@@ -4046,6 +4026,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema",
"test": "test_batch_write_not_matching_schema",
@@ -4201,7 +4191,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -4364,17 +4354,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement",
- "test": "test_stream_spec_and_region_replacement",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_time_to_live",
@@ -4796,16 +4776,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
"test": "test_event_rules_deployed",
@@ -4826,16 +4796,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_queue_handler_deployed",
- "test": "test_queue_handler_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
"test": "test_s3_bucket_deployed",
@@ -4864,7 +4824,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -4874,7 +4834,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -4884,7 +4844,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource",
@@ -4894,7 +4854,7 @@
"snapshot_skipped": "['$..Policy.Description', '$..Policy.IsAttachable', '$..Policy.PermissionsBoundaryUsageCount', '$..Policy.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -4904,7 +4864,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PAY_PER_REQUEST]",
@@ -4914,7 +4874,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_billing_mode_as_conditional[PROVISIONED]",
@@ -4924,7 +4884,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_default_name_for_table",
@@ -4934,7 +4894,7 @@
"snapshot_skipped": "['$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas', '$..Table.DeletionProtectionEnabled']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_deploy_stack_with_dynamodb_table",
@@ -4944,7 +4904,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_dynamodb.py::test_globalindex_read_write_provisioned_throughput_dynamodb_table",
@@ -4954,7 +4914,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
@@ -4974,7 +4934,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -4984,7 +4944,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports",
@@ -4994,14 +4954,14 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_existing_table",
"test": "test_batch_write_not_existing_table",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Error.Message', '$..message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5174,7 +5134,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -5186,7 +5146,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_rest_apis.py::TestRestAPIs::test_apigateway_to_appsync_integration",
@@ -5258,6 +5218,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
"test": "test_dynamodb_resolvers",
@@ -5276,7 +5246,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
@@ -5288,6 +5258,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore",
"test": "test_scheduled_backup_and_restore",
@@ -5486,7 +5466,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_websocket_subscriptions",
@@ -5496,7 +5476,17 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "400",
+ "error": "ResourceNotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore",
@@ -5674,7 +5664,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_with_kinesis_stream",
@@ -5717,7 +5707,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5764,6 +5754,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
+ "test": "test_cdk_bootstrap_redeploy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
"test": "test_firehose_stack_with_kinesis_as_source",
@@ -5834,16 +5834,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute",
- "test": "test_filter_policy_on_message_body_dot_attribute",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3",
"test": "test_firehose_kinesis_to_s3",
@@ -5907,13 +5897,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
+ "test": "test_force_alias_creation",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
@@ -6071,21 +6061,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_binary",
- "test": "test_batch_write_binary",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items",
- "test": "test_batch_write_items",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6135,7 +6115,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6350,16 +6330,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_multi_accounts.py::TestMultiAccounts::test_multi_accounts_dynamodb",
- "test": "test_multi_accounts_dynamodb",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables_version_2019",
"test": "test_global_tables_version_2019",
@@ -6402,16 +6372,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_dynamodb_batch_write_item",
- "test": "test_dynamodb_batch_write_item",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
"test": "test_dynamodb_event_source_mapping",
@@ -6714,6 +6674,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_matching_schema",
"test": "test_batch_write_not_matching_schema",
@@ -6879,7 +6849,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7566,6 +7536,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
"test": "test_dynamodb_resolvers",
@@ -7596,6 +7576,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore",
"test": "test_scheduled_backup_and_restore",
@@ -8148,6 +8138,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream",
"test": "test_binary_data_with_stream",
@@ -8183,7 +8183,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -8510,6 +8510,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
"test": "test_dynamodb_resolvers",
@@ -8530,6 +8540,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/backup/test_backup.py::TestBackup::test_scheduled_backup_and_restore",
"test": "test_scheduled_backup_and_restore",
@@ -8694,6 +8714,20 @@
}
},
"Query": {
+ "ExpressionAttributeNames, ExpressionAttributeValues, FilterExpression, KeyConditionExpression, Select, TableName": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ }
+ ]
+ },
"ExpressionAttributeNames, ExpressionAttributeValues, KeyConditionExpression, TableName": {
"ls_pro": [
{
@@ -8831,33 +8865,23 @@
"Limit, TableName": {
"ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
- "test": "test_prefill_dynamodb_table",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
- "test": "test_internet_gateway_ref_and_attr",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
+ "test": "test_firehose_stack_with_kinesis_as_source",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DriftInformation', '$..Metadata']",
+ "snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
- "test": "test_firehose_stack_with_kinesis_as_source",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_fifo_queue_generates_valid_name",
+ "test": "test_sqs_fifo_queue_generates_valid_name",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Destinations']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
@@ -8921,11 +8945,21 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.webm]",
- "test": "test_transcribe_supported_media_formats[../../files/en-gb.webm]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping",
+ "test": "test_disable_kinesis_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
+ "test": "test_wait_for_callback",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -8963,28 +8997,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_srp_custom_auth_flow",
- "test": "test_srp_custom_auth_flow",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_check_message_action_suppress",
+ "test": "test_check_message_action_suppress",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_custom_auth_triggers",
+ "test": "test_custom_auth_triggers",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "snapshot_skipped": "['$..ChallengeParameters.USERNAME']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_user_data",
- "test": "test_user_data",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_create_instance_with_ebs_create_fs",
+ "test": "test_create_instance_with_ebs_create_fs",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -8993,14 +9027,24 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_describe_service_with_task_definition",
- "test": "test_describe_service_with_task_definition",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestServiceCrud::test_create_delete_service",
+ "test": "test_create_delete_service",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
+ "snapshot_skipped": "['$..deploymentController', '$..enableECSManagedTags', '$..enableExecuteCommand', '$..placementConstraints', '$..propagateTags', '$..deployments', '$..status']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_describe_service_with_task_definition",
+ "test": "test_describe_service_with_task_definition",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_update_service_creates_new_deployment",
@@ -9013,38 +9057,38 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name:latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/image@name:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.19]",
- "test": "test_get_parameters_eks_amis[1.19]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
+ "test": "test_create_app_in_k3s_cluster",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
- "test": "test_cluster_no_engine",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
- "test": "test_target_group_target_type_default_values[alb]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9170,6 +9214,26 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
+ "test": "test_destination_sns",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_infra",
+ "test": "test_infra",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..Attributes.DeliveryPolicy', '$..Attributes.EffectiveDeliveryPolicy.defaultHealthyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.guaranteed', '$..Attributes.EffectiveDeliveryPolicy.http', '$..Attributes.EffectiveDeliveryPolicy.sicklyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.throttlePolicy', '$..Attributes.Policy.Statement..Action', '$..Attributes.SubscriptionsConfirmed']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
"test": "test_prefill_dynamodb_table",
@@ -9241,43 +9305,43 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestApiGatewayCommon::test_api_gateway_request_validator",
- "test": "test_api_gateway_request_validator",
+ "node_id": "LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_boto_wait_for_certificate_validation",
+ "test": "test_boto_wait_for_certificate_validation",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.invalid-request-body.Type']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_delete_deployments[True]",
- "test": "test_create_delete_deployments[True]",
+ "node_id": "LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_certificate_for_subdomain_wildcard",
+ "test": "test_certificate_for_subdomain_wildcard",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
+ "snapshot_skipped": "['$..Certificate.SignatureAlgorithm']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestDeployments::test_create_update_deployments",
- "test": "test_create_update_deployments",
+ "node_id": "LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_domain_validation",
+ "test": "test_domain_validation",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..createdDate', '$..lastUpdatedDate']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestUsagePlans::test_api_key_required_for_methods",
- "test": "test_api_key_required_for_methods",
+ "node_id": "LocalStack Community: tests/aws/services/acm/test_acm.py::TestACM::test_import_certificate",
+ "test": "test_import_certificate",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
@@ -9310,16 +9374,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
- "test": "test_export_oas30_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..body.servers..url']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_oas30_openapi[TEST_IMPORT_PETS]",
"test": "test_export_oas30_openapi[TEST_IMPORT_PETS]",
@@ -9331,8 +9385,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETS]",
- "test": "test_export_swagger_openapi[TEST_IMPORT_PETS]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
+ "test": "test_export_swagger_openapi[TEST_IMPORT_PETSTORE_SWAGGER]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..body.host']",
@@ -9340,26 +9394,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_name",
- "test": "test_get_domain_name",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_extended.py::test_get_domain_names",
- "test": "test_get_domain_names",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_integrations.py::test_create_execute_api_vpc_endpoint",
"test": "test_create_execute_api_vpc_endpoint",
@@ -9371,8 +9405,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration",
- "test": "test_lambda_aws_integration",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_nested_getatt_ref[TopicArn]",
+ "test": "test_nested_getatt_ref[TopicArn]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9381,8 +9415,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_response_with_mapping_templates",
- "test": "test_lambda_aws_integration_response_with_mapping_templates",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_nested_getatt_ref[TopicName]",
+ "test": "test_nested_getatt_ref[TopicName]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9391,8 +9425,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_with_request_template",
- "test": "test_lambda_aws_integration_with_request_template",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_sub_resolving",
+ "test": "test_sub_resolving",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9401,48 +9435,38 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_proxy_integration",
- "test": "test_lambda_aws_proxy_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..body', '$..headers.Accept', '$..headers.Content-Length', '$..headers.Accept-Encoding', '$..headers.Authorization', '$..headers.CloudFront-Forwarded-Proto', '$..headers.CloudFront-Is-Desktop-Viewer', '$..headers.CloudFront-Is-Mobile-Viewer', '$..headers.CloudFront-Is-SmartTV-Viewer', '$..headers.CloudFront-Is-Tablet-Viewer', '$..headers.CloudFront-Viewer-ASN', '$..headers.CloudFront-Viewer-Country', '$..headers.Connection', '$..headers.Host', '$..headers.Remote-Addr', '$..headers.Via', '$..headers.X-Amz-Cf-Id', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Forwarded-For', '$..headers.X-Forwarded-Port', '$..headers.X-Forwarded-Proto', '$..headers.accept', '$..headers.accept-encoding', '$..headers.x-localstack-edge', '$..headers.x-localstack-request-url', '$..headers.x-localstack-tgt-api', '$..multiValueHeaders.Content-Length', '$..multiValueHeaders.Accept', '$..multiValueHeaders.Accept-Encoding', '$..multiValueHeaders.Authorization', '$..multiValueHeaders.CloudFront-Forwarded-Proto', '$..multiValueHeaders.CloudFront-Is-Desktop-Viewer', '$..multiValueHeaders.CloudFront-Is-Mobile-Viewer', '$..multiValueHeaders.CloudFront-Is-SmartTV-Viewer', '$..multiValueHeaders.CloudFront-Is-Tablet-Viewer', '$..multiValueHeaders.CloudFront-Viewer-ASN', '$..multiValueHeaders.CloudFront-Viewer-Country', '$..multiValueHeaders.Connection', '$..multiValueHeaders.Host', '$..multiValueHeaders.Remote-Addr', '$..multiValueHeaders.Via', '$..multiValueHeaders.X-Amz-Cf-Id', '$..multiValueHeaders.X-Amzn-Trace-Id', '$..multiValueHeaders.X-Forwarded-For', '$..multiValueHeaders.X-Forwarded-Port', '$..multiValueHeaders.X-Forwarded-Proto', '$..multiValueHeaders.accept', '$..multiValueHeaders.accept-encoding', '$..multiValueHeaders.x-localstack-edge', '$..multiValueHeaders.x-localstack-request-url', '$..multiValueHeaders.x-localstack-tgt-api', '$..pathParameters', '$..requestContext.apiId', '$..requestContext.authorizer', '$..requestContext.domainName', '$..requestContext.domainPrefix', '$..requestContext.extendedRequestId', '$..requestContext.identity.accessKey', '$..requestContext.identity.accountId', '$..requestContext.identity.caller', '$..requestContext.identity.cognitoAuthenticationProvider', '$..requestContext.identity.cognitoAuthenticationType', '$..requestContext.identity.cognitoIdentityId', '$..requestContext.identity.cognitoIdentityPoolId', '$..requestContext.identity.principalOrgId', '$..requestContext.identity.user', '$..requestContext.identity.userArn', '$..stageVariables']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_selection_patterns",
- "test": "test_lambda_selection_patterns",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_reference_resolving.py::test_unexisting_resource_dependency",
+ "test": "test_unexisting_resource_dependency",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_transformers.py::test_duplicate_resources",
- "test": "test_duplicate_resources",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_templates.py::test_create_stack_from_s3_template_url[http_host]",
+ "test": "test_create_stack_from_s3_template_url[http_host]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..tags']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_mappings.py::TestCloudFormationMappings::test_simple_mapping_working",
- "test": "test_simple_mapping_working",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_templates.py::test_create_stack_from_s3_template_url[http_path]",
+ "test": "test_create_stack_from_s3_template_url[http_path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
- "test": "test_autogenerated_values",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_templates.py::test_create_stack_from_s3_template_url[s3_url]",
+ "test": "test_create_stack_from_s3_template_url[s3_url]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9451,23 +9475,23 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
- "test": "test_black_box",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_templates.py::test_get_template_summary",
+ "test": "test_get_template_summary",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ResourceIdentifierSummaries..ResourceIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
- "test": "test_getatt",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group",
+ "test": "test_schedule_and_group",
"response": "200",
"error": "",
- "snapshot_skipped": "all",
+ "snapshot_skipped": "['$..DriftInformation', '$..Metadata', '$..ActionAfterCompletion', '$..ScheduleExpressionTimezone']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
@@ -9601,8 +9625,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_table_associations",
- "test": "test_cfn_with_multiple_route_table_associations",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
+ "test": "test_cdk_bootstrap[11]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9611,28 +9635,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables",
- "test": "test_cfn_with_multiple_route_tables",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
+ "test": "test_cdk_bootstrap[12]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
- "test": "test_internet_gateway_ref_and_attr",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DriftInformation', '$..Metadata']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
- "test": "test_vpc_creates_default_sg",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
+ "test": "test_cdk_bootstrap_redeploy",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9641,18 +9655,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
- "test": "test_firehose_stack_with_kinesis_as_source",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
+ "test": "test_cfn_event_bus_resource",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Destinations']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
- "test": "test_events_sqs_sns_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule",
+ "test": "test_cfn_handle_events_rule",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9661,18 +9675,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources",
- "test": "test_cfn_with_kms_resources",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name",
+ "test": "test_cfn_handle_events_rule_without_name",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms",
- "test": "test_deploy_stack_with_kms",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_creation_without_target",
+ "test": "test_event_rule_creation_without_target",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9681,68 +9695,68 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_kms_key_disabled",
- "test": "test_kms_key_disabled",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs",
+ "test": "test_event_rule_to_logs",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_handle_secretsmanager_secret",
- "test": "test_cfn_handle_secretsmanager_secret",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policies",
+ "test": "test_eventbus_policies",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secret_policy",
- "test": "test_cfn_secret_policy",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policy_statement",
+ "test": "test_eventbus_policy_statement",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_cfn_secretsmanager_gen_secret",
- "test": "test_cfn_secretsmanager_gen_secret",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
+ "test": "test_firehose_stack_with_kinesis_as_source",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Destinations']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_aws_sqs_metrics_created",
- "test": "test_aws_sqs_metrics_created",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_health_check",
+ "test": "test_create_health_check",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..HealthCheckConfig.EnableSNI', '$..HealthCheckVersion']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_breaching_alarm_actions",
- "test": "test_breaching_alarm_actions",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_id",
+ "test": "test_create_record_set_via_id",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..evaluatedDatapoints', '$..StateTransitionedTimestamp']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_describe_alarms_converts_date_format_correctly",
- "test": "test_describe_alarms_converts_date_format_correctly",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_via_name",
+ "test": "test_create_record_set_via_name",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9751,28 +9765,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_enable_disable_alarm_actions",
- "test": "test_enable_disable_alarm_actions",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_route53.py::test_create_record_set_without_resource_record",
+ "test": "test_create_record_set_without_resource_record",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..MetricAlarms..StateTransitionedTimestamp']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_get_metric_data",
- "test": "test_get_metric_data",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_cfn_handle_sqs_resource",
+ "test": "test_cfn_handle_sqs_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_list_metrics_uniqueness",
- "test": "test_list_metrics_uniqueness",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_fifo_queue_generates_valid_name",
+ "test": "test_sqs_fifo_queue_generates_valid_name",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9781,33 +9795,33 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_multiple_dimensions",
- "test": "test_multiple_dimensions",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_non_fifo_queue_generates_valid_name",
+ "test": "test_sqs_non_fifo_queue_generates_valid_name",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_set_alarm",
- "test": "test_set_alarm",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_queue_policy",
+ "test": "test_sqs_queue_policy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudwatch/test_cloudwatch.py::TestCloudwatch::test_store_tags",
- "test": "test_store_tags",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_unsupported.py::test_unsupported",
+ "test": "test_unsupported",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..MetricAlarms..AlarmDescription', '$..MetricAlarms..StateTransitionedTimestamp']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
@@ -9825,7 +9839,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -9901,8 +9915,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl",
- "test": "test_run_kcl",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_add_tags_to_stream",
+ "test": "test_add_tags_to_stream",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -9911,348 +9925,348 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_additional_docker_flags",
- "test": "test_additional_docker_flags",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_shard_count",
+ "test": "test_create_stream_without_shard_count",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_lambda_docker_networks",
- "test": "test_lambda_docker_networks",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records",
+ "test": "test_get_records",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[nodejs18.x]",
- "test": "test_hot_reloading[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_next_shard_iterator",
+ "test": "test_get_records_next_shard_iterator",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading[python3.9]",
- "test": "test_hot_reloading[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_record_lifecycle_data_integrity",
+ "test": "test_record_lifecycle_data_integrity",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Records..EncryptionType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestHotReloading::test_hot_reloading_publish_version",
- "test": "test_hot_reloading_publish_version",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_stream_consumers",
+ "test": "test_stream_consumers",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestLambdaDNS::test_lambda_localhost_localstack_cloud_connectivity",
- "test": "test_lambda_localhost_localstack_cloud_connectivity",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard",
+ "test": "test_subscribe_to_shard",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Records..EncryptionType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_create_and_delete_log_group",
- "test": "test_create_and_delete_log_group",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_timeout",
+ "test": "test_subscribe_to_shard_timeout",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_create_and_delete_log_stream",
- "test": "test_create_and_delete_log_stream",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_with_sequence_number_as_iterator",
+ "test": "test_subscribe_to_shard_with_sequence_number_as_iterator",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..describe-log-groups-pattern.logGroups..metricFilterCount', '$..describe-log-groups-pattern.logGroups..storedBytes', '$..describe-log-groups-pattern.nextToken']",
+ "snapshot_skipped": "['$..Records..EncryptionType']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_filter_log_events_response_header",
- "test": "test_filter_log_events_response_header",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl",
+ "test": "test_run_kcl",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_firehose",
- "test": "test_put_subscription_filter_firehose",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_create_kinesis_event_source_mapping",
+ "test": "test_create_kinesis_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_kinesis",
- "test": "test_put_subscription_filter_kinesis",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping",
+ "test": "test_disable_kinesis_event_source_mapping",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_lambda",
- "test": "test_put_subscription_filter_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_mapping_with_on_failure_destination_config",
+ "test": "test_kinesis_event_source_mapping_with_on_failure_destination_config",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Statement.Condition.StringEquals', '$..add_permission.ResponseMetadata.HTTPStatusCode']",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put",
- "test": "test_object_created_put",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_trim_horizon",
+ "test": "test_kinesis_event_source_trim_horizon",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..detail.object.etag']",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
- "test": "test_object_put_acl",
+ "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_associate_and_disassociate_resolver_rule",
+ "test": "test_associate_and_disassociate_resolver_rule",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ResolverEndpointType']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_restore_object",
- "test": "test_restore_object",
+ "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_create_resolver_endpoint[INBOUND-5]",
+ "test": "test_create_resolver_endpoint[INBOUND-5]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ResolverEndpointType']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
- "test": "test_create_object_by_presigned_request_via_dynamodb",
+ "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_create_resolver_query_log_config",
+ "test": "test_create_resolver_query_log_config",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..data.s3.object.eTag', '$..data.s3.object.versionId', '$..data.s3.object.size']",
+ "snapshot_skipped": "['$..ResolverEndpointType']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb",
- "test": "test_create_object_put_via_dynamodb",
+ "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_create_resolver_rule",
+ "test": "test_create_resolver_rule",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
+ "snapshot_skipped": "['$..ResolverEndpointType']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/secretsmanager/test_secretsmanager.py::TestSecretsManager::test_http_put_secret_value_null_client_request_token_new_version_stages",
- "test": "test_http_put_secret_value_null_client_request_token_new_version_stages",
+ "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_create_resolver_rule_with_invalid_direction",
+ "test": "test_create_resolver_rule_with_invalid_direction",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..ResolverEndpointType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/secretsmanager/test_secretsmanager.py::TestSecretsManager::test_http_put_secret_value_with_duplicate_client_request_token",
- "test": "test_http_put_secret_value_with_duplicate_client_request_token",
+ "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_multipe_create_resolver_rule",
+ "test": "test_multipe_create_resolver_rule",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..ResolverEndpointType']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/secretsmanager/test_secretsmanager.py::TestSecretsManager::test_invalid_secret_name[Inv Name]",
- "test": "test_invalid_secret_name[Inv Name]",
+ "node_id": "LocalStack Community: tests/aws/services/route53resolver/test_route53resolver.py::TestRoute53Resolver::test_multiple_create_resolver_endpoint_with_same_req_id",
+ "test": "test_multiple_create_resolver_endpoint_with_same_req_id",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ResolverEndpointType']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/secretsmanager/test_secretsmanager.py::TestSecretsManager::test_resource_policy",
- "test": "test_resource_policy",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketAccelerateConfiguration::test_bucket_acceleration_configuration_crud",
+ "test": "test_bucket_acceleration_configuration_crud",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/secretsmanager/test_secretsmanager.py::TestSecretsManager::test_update_secret_version_stages_current_pending_cycle_custom_stages_1",
- "test": "test_update_secret_version_stages_current_pending_cycle_custom_stages_1",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketAccelerateConfiguration::test_bucket_acceleration_configuration_exc",
+ "test": "test_bucket_acceleration_configuration_exc",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..KmsKeyId', '$..KmsKeyIds']",
+ "snapshot_skipped": "['$.put-bucket-accelerate-config-dot-bucket.Error.Code', '$.put-bucket-accelerate-config-dot-bucket.Error.Message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/secretsmanager/test_secretsmanager.py::TestSecretsManager::test_update_secret_version_stages_current_pending_cycle_custom_stages_2",
- "test": "test_update_secret_version_stages_current_pending_cycle_custom_stages_2",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketCRUD::test_delete_bucket_with_objects",
+ "test": "test_delete_bucket_with_objects",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..KmsKeyId', '$..KmsKeyIds']",
+ "snapshot_skipped": "['$..ServerSideEncryption']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/secretsmanager/test_secretsmanager.py::TestSecretsManager::test_update_secret_version_stages_current_previous",
- "test": "test_update_secret_version_stages_current_previous",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketCRUD::test_delete_versioned_bucket_with_objects",
+ "test": "test_delete_versioned_bucket_with_objects",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..KmsKeyId', '$..KmsKeyIds']",
+ "snapshot_skipped": "['$..ServerSideEncryption']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy",
- "test": "test_filter_policy",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketEncryption::test_s3_bucket_encryption_sse_kms",
+ "test": "test_s3_bucket_encryption_sse_kms",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ETag']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute",
- "test": "test_filter_policy_on_message_body_dot_attribute",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_bucket_tagging_crud",
+ "test": "test_bucket_tagging_crud",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ServerSideEncryption']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[False]",
- "test": "test_message_to_fifo_sqs[False]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_object_tagging_crud",
+ "test": "test_object_tagging_crud",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ServerSideEncryption']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSQSMultiAccounts::test_cross_account_get_queue_url[domain]",
- "test": "test_cross_account_get_queue_url[domain]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_object_tags_delete_or_overwrite_object",
+ "test": "test_object_tags_delete_or_overwrite_object",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ServerSideEncryption']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_message_visibility_batch_with_too_large_batch",
- "test": "test_change_message_visibility_batch_with_too_large_batch",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3BucketObjectTagging::test_put_object_with_tags",
+ "test": "test_put_object_with_tags",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ServerSideEncryption']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_change_visibility_on_deleted_message_raises_invalid_parameter_value",
- "test": "test_change_visibility_on_deleted_message_raises_invalid_parameter_value",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectCRUD::test_list_object_versions_order_unversioned",
+ "test": "test_list_object_versions_order_unversioned",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ServerSideEncryption']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_create_queue_recently_deleted_cache",
- "test": "test_create_queue_recently_deleted_cache",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectLock::test_get_object_lock_configuration_exc",
+ "test": "test_get_object_lock_configuration_exc",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Error.BucketName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_dead_letter_queue_chain",
- "test": "test_dead_letter_queue_chain",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_api.py::TestS3ObjectLock::test_get_put_object_lock_configuration",
+ "test": "test_get_put_object_lock_configuration",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$.get-lock-config.ObjectLockConfiguration.Rule.DefaultRetention.Years']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
- "test": "test_delete_message_batch_from_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put",
+ "test": "test_object_created_put",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_invalid_msg_id[]",
- "test": "test_delete_message_batch_invalid_msg_id[]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_with_too_large_batch",
- "test": "test_delete_message_batch_with_too_large_batch",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
+ "test": "test_object_put_acl",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10261,8 +10275,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_content_based_message_deduplication_arrives_once",
- "test": "test_fifo_content_based_message_deduplication_arrives_once",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_restore_object",
+ "test": "test_restore_object",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10271,38 +10285,38 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_arrives_once_after_delete[False]",
- "test": "test_fifo_deduplication_arrives_once_after_delete[False]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
+ "test": "test_create_object_by_presigned_request_via_dynamodb",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..data.s3.object.eTag', '$..data.s3.object.versionId', '$..data.s3.object.size']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_arrives_once_after_delete[True]",
- "test": "test_fifo_deduplication_arrives_once_after_delete[True]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb",
+ "test": "test_create_object_put_via_dynamodb",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_not_on_message_group_id[False]",
- "test": "test_fifo_deduplication_not_on_message_group_id[False]",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_clone_receipt_rule_set",
+ "test": "test_clone_receipt_rule_set",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Rules..Actions..AddHeaderAction', '$..Rules..Recipients', '$..Rules..Recipients', '$..Rules..Actions..S3Action.KmsKeyArn', '$..Rules..Actions..S3Action.TopicArn']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_deduplication_not_on_message_group_id[True]",
- "test": "test_fifo_deduplication_not_on_message_group_id[True]",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_deleting_non_existent_configuration_set_event_destination",
+ "test": "test_deleting_non_existent_configuration_set_event_destination",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10311,8 +10325,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_fifo_queue_send_multiple_messages_multiple_single_receives",
- "test": "test_fifo_queue_send_multiple_messages_multiple_single_receives",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_list_templates",
+ "test": "test_list_templates",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10321,88 +10335,38 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_inflight_message_requeue",
- "test": "test_inflight_message_requeue",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_email",
+ "test": "test_ses_sns_topic_integration_send_email",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_list_queues_multi_region_without_endpoint_strategy",
- "test": "test_list_queues_multi_region_without_endpoint_strategy",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_raw_email",
+ "test": "test_ses_sns_topic_integration_send_raw_email",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue",
- "test": "test_purge_queue",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_deletes_delayed_messages",
- "test": "test_purge_queue_deletes_delayed_messages",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_purge_queue_deletes_inflight_messages",
- "test": "test_purge_queue_deletes_inflight_messages",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_remove_message_with_old_receipt_handle",
- "test": "test_remove_message_with_old_receipt_handle",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_send_message_with_invalid_string_attributes",
- "test": "test_send_message_with_invalid_string_attributes",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_endpoint_strategy_with_multi_region[domain]",
- "test": "test_endpoint_strategy_with_multi_region[domain]",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_ses_sns_topic_integration_send_templated_email",
+ "test": "test_ses_sns_topic_integration_send_templated_email",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Message.delivery.processingTimeMillis', '$..Message.delivery.reportingMTA', '$..Message.delivery.smtpResponse', '$..Message.mail.commonHeaders', '$..Message.mail.headers', '$..Message.mail.headersTruncated', \"$..Message.mail.tags.'ses:caller-identity'\", \"$..Message.mail.tags.'ses:configuration-set'\", \"$..Message.mail.tags.'ses:from-domain'\", \"$..Message.mail.tags.'ses:operation'\", \"$..Message.mail.tags.'ses:outgoing-ip'\", \"$..Message.mail.tags.'ses:source-ip'\", '$..Message.mail.timestamp']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsQueryApi::test_get_queue_attributes_all",
- "test": "test_get_queue_attributes_all",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSES::test_trying_to_delete_event_destination_from_non_existent_configuration_set",
+ "test": "test_trying_to_delete_event_destination_from_non_existent_configuration_set",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10411,18 +10375,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_fifo_list_messages_as_botocore_endpoint_url",
- "test": "test_fifo_list_messages_as_botocore_endpoint_url",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs_backdoor.py::TestSqsDeveloperEdpoints::test_list_messages_without_queue_url",
- "test": "test_list_messages_without_queue_url",
+ "node_id": "LocalStack Community: tests/aws/services/ses/test_ses.py::TestSESRetrospection::test_send_email_can_retrospect",
+ "test": "test_send_email_can_retrospect",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10431,61 +10385,61 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_base_scenarios.py::TestBaseScenarios::test_map_item_reader_base_csv_headers_decl",
- "test": "test_map_item_reader_base_csv_headers_decl",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_base_scenarios.py::TestBaseScenarios::test_map_item_reader_base_csv_headers_first_line",
+ "test": "test_map_item_reader_base_csv_headers_first_line",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_sfn_task_service.py::TestTaskServiceSfn::test_start_execution_input_json",
- "test": "test_start_execution_input_json",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_base_scenarios.py::TestBaseScenarios::test_map_item_reader_base_json",
+ "test": "test_map_item_reader_base_json",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId', '$..SdkHttpMetadata', '$..SdkResponseMetadata']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/swf/test_swf.py::TestSwf::test_run_workflow",
- "test": "test_run_workflow",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_base_scenarios.py::TestBaseScenarios::test_map_state_retry",
+ "test": "test_map_state_retry",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_failing_start_transcription_job",
- "test": "test_failing_start_transcription_job",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_path_based_on_data",
+ "test": "test_path_based_on_data",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..MissingLanguageCode..Message', '$..MalformedLanguageCode..Message']",
+ "snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_get_transcription_job",
- "test": "test_get_transcription_job",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
+ "test": "test_step_functions_calling_api_gateway",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..TranscriptionJob..Settings', '$..TranscriptionJob..Transcript', '$..Error..Code']",
+ "snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_list_transcription_jobs",
- "test": "test_list_transcription_jobs",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
+ "test": "test_wait_for_callback",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..NextToken', '$..TranscriptionJobSummaries..OutputLocationType']",
+ "snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -10510,26 +10464,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-2-None]",
- "test": "test_transcribe_start_job[test-output-bucket-2-None]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..TranscriptionJob..Settings', '$..TranscriptionJob..Transcript']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-3-test-output]",
- "test": "test_transcribe_start_job[test-output-bucket-3-test-output]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..TranscriptionJob..Settings', '$..TranscriptionJob..Transcript']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_start_job[test-output-bucket-4-test-output.json]",
"test": "test_transcribe_start_job[test-output-bucket-4-test-output.json]",
@@ -10570,46 +10504,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.amr]",
- "test": "test_transcribe_supported_media_formats[../../files/en-gb.amr]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.flac]",
- "test": "test_transcribe_supported_media_formats[../../files/en-gb.flac]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.mp3]",
- "test": "test_transcribe_supported_media_formats[../../files/en-gb.mp3]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.mp4]",
- "test": "test_transcribe_supported_media_formats[../../files/en-gb.mp4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.ogg]",
"test": "test_transcribe_supported_media_formats[../../files/en-gb.ogg]",
@@ -10620,26 +10514,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.webm]",
- "test": "test_transcribe_supported_media_formats[../../files/en-gb.webm]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_unsupported_media_format_failure",
- "test": "test_transcribe_unsupported_media_format_failure",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3",
"test": "test_firehose_kinesis_to_s3",
@@ -10711,8 +10585,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_container_lifecycle_commands[SdkDockerClient]",
+ "test": "test_container_lifecycle_commands[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10721,8 +10595,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
- "test": "test_s3_bucket_deployed",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_ip_for_network[SdkDockerClient]",
+ "test": "test_get_container_ip_for_network[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10731,8 +10605,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_basic_https_invocation",
- "test": "test_basic_https_invocation",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_is_container_running[SdkDockerClient]",
+ "test": "test_is_container_running[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10741,8 +10615,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_http2_relay_traffic",
- "test": "test_http2_relay_traffic",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_running_container_names[SdkDockerClient]",
+ "test": "test_running_container_names[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10751,8 +10625,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodb",
- "test": "test_invoke_dynamodb",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_docker_sdk_retries_on_init",
+ "test": "test_docker_sdk_retries_on_init",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_container_port_can_be_bound[SdkDockerClient-udp]",
+ "test": "test_container_port_can_be_bound[SdkDockerClient-udp]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10761,8 +10645,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_sns_sqs_integration_using_edge_port",
- "test": "test_invoke_sns_sqs_integration_using_edge_port",
+ "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_http2_relay_traffic",
+ "test": "test_http2_relay_traffic",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10771,8 +10655,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/integration/test_security.py::TestCSRF::test_cors_s3_override",
- "test": "test_cors_s3_override",
+ "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodb",
+ "test": "test_invoke_dynamodb",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10781,8 +10665,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/integration/test_security.py::TestCSRF::test_internal_route_cors_headers[/health]",
- "test": "test_internal_route_cors_headers[/health]",
+ "node_id": "LocalStack Community: tests/integration/test_edge.py::TestEdgeAPI::test_invoke_dynamodbstreams",
+ "test": "test_invoke_dynamodbstreams",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10802,6 +10686,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
"test": "test_dynamodb_resolvers",
@@ -10843,8 +10737,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_qldb.py::test_create_ledgers",
- "test": "test_create_ledgers",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_msk.py::test_create_cluster",
+ "test": "test_create_cluster",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -10852,6 +10746,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment",
+ "test": "test_db_instance_deployment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..DbAddress']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
"test": "test_db_proxy",
@@ -10863,11 +10767,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_with_comment",
- "test": "test_hostedzone_with_comment",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
+ "test": "test_secretsmanager_target_attachment_maridab",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HostedZone.CallerReference', '$..DelegationSet.Id', '$..HostedZone.Id']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -10882,6 +10786,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
"test": "test_cdk_trail_cw_logs",
@@ -10893,15 +10807,25 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_s3_trails",
- "test": "test_s3_trails",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started_and_stopped",
+ "test": "test_get_trail_status_of_started_and_stopped",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestID', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.resources', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources', '$..NextToken']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_start_stop_updates",
+ "test": "test_start_stop_updates",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
"test": "test_admin_no_srp_auth_flow",
@@ -10912,6 +10836,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_invalid_srp_raises_error[COFFEEG]",
+ "test": "test_invalid_srp_raises_error[COFFEEG]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_invalid_srp_raises_error[None]",
+ "test": "test_invalid_srp_raises_error[None]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_srp_custom_auth_flow",
"test": "test_srp_custom_auth_flow",
@@ -10993,8 +10937,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}]",
- "test": "test_change_password[user-{short_uid}]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}@example.com]",
+ "test": "test_change_password[user-{short_uid}@example.com]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11003,8 +10947,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_cognito_identity_pool_roles",
- "test": "test_create_cognito_identity_pool_roles",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_check_message_action_suppress",
+ "test": "test_check_message_action_suppress",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11013,18 +10957,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_custom_scopes",
- "test": "test_custom_scopes",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_admin_user_with_duplicate_email",
+ "test": "test_create_admin_user_with_duplicate_email",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_invalid_expiration_unit[invalid-invalid-hours]",
- "test": "test_invalid_expiration_unit[invalid-invalid-hours]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_pool_mfa_off",
+ "test": "test_create_pool_mfa_off",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11033,78 +10977,208 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username_attr_change",
- "test": "test_login_with_preferred_username_attr_change",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_create_user_group_in_pool",
+ "test": "test_create_user_group_in_pool",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_mfa_sms_config",
- "test": "test_mfa_sms_config",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_custom_scopes",
+ "test": "test_custom_scopes",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_password_policy",
- "test": "test_password_policy",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_describe_user_pool",
+ "test": "test_describe_user_pool",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp",
- "test": "test_signup_case_insensitive_and_auth_using_srp",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
+ "test": "test_force_alias_creation",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-body]",
- "test": "test_token_endpoint[client_credentials-body]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_invalid_expiration_unit[invalid-invalid-hours]",
+ "test": "test_invalid_expiration_unit[invalid-invalid-hours]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username",
+ "test": "test_login_with_preferred_username",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_error_messages",
- "test": "test_user_pool_error_messages",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_mfa_sms_authentication",
+ "test": "test_mfa_sms_authentication",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognitoIdentity::test_cognito_identity_get_id_region_matches",
- "test": "test_cognito_identity_get_id_region_matches",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_mfa_sms_config",
+ "test": "test_mfa_sms_config",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_password_policy",
+ "test": "test_password_policy",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp",
+ "test": "test_signup_case_insensitive_and_auth_using_srp",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_tags",
+ "test": "test_tags",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-body]",
+ "test": "test_token_endpoint[code-body]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_update_user_mfa_preferences",
+ "test": "test_update_user_mfa_preferences",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_group_deletion_with_non_existing_group",
+ "test": "test_user_group_deletion_with_non_existing_group",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_group_deletion_with_non_existing_pool",
+ "test": "test_user_group_deletion_with_non_existing_pool",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_groups",
+ "test": "test_user_groups",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_login_before_confirmation",
+ "test": "test_user_login_before_confirmation",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_error_messages",
+ "test": "test_user_pool_error_messages",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pools_and_clients",
+ "test": "test_user_pools_and_clients",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_well_known_paths",
+ "test": "test_well_known_paths",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognitoIdentity::test_cognito_identity_get_id_region_matches",
+ "test": "test_cognito_identity_get_id_region_matches",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11272,16 +11346,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/dms/test_dms.py::test_dms_rds_kinesis",
- "test": "test_dms_rds_kinesis",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
"test": "test_create_query_db",
@@ -11392,6 +11456,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_run_stop_start_terminate_instances[cmd-docker]",
+ "test": "test_run_stop_start_terminate_instances[cmd-docker]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_ssh_key_pairs",
"test": "test_ssh_key_pairs",
@@ -11622,26 +11696,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECREndpoints::test_ecr_custom_localstack_hostname_endpoint",
- "test": "test_ecr_custom_localstack_hostname_endpoint",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestClustersCrud::test_cluster_capacity_providers",
- "test": "test_cluster_capacity_providers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestClustersCrud::test_delete_cluster_status",
"test": "test_delete_cluster_status",
@@ -11833,18 +11887,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition",
- "test": "test_create_task_definition",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[invalid name-invalid image]",
+ "test": "test_create_task_definition_err[invalid name-invalid image]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition..networkMode', '$..taskDefinition..registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[invalid name-invalid image]",
- "test": "test_create_task_definition_err[invalid name-invalid image]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[invalid name-valid_image]",
+ "test": "test_create_task_definition_err[invalid name-valid_image]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
@@ -11853,8 +11907,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[invalid name-valid_image]",
- "test": "test_create_task_definition_err[invalid name-valid_image]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[valid_name-invalid image]",
+ "test": "test_create_task_definition_err[valid_name-invalid image]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
@@ -11863,8 +11917,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_err[valid_name-invalid image]",
- "test": "test_create_task_definition_err[valid_name-invalid image]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[$test-container-alpine-False]",
+ "test": "test_create_task_definition_validation[$test-container-alpine-False]",
"response": "200",
"error": "",
"snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
@@ -11877,117 +11931,117 @@
"test": "test_create_task_definition_validation[@test-container-alpine-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True]",
- "test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine 3.12.0-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine 3.12.0-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-False]",
- "test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test container-alpine-False]",
- "test": "test_create_task_definition_validation[test container-alpine-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:3.12-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine:3.12-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-@library/alpine:latest-False]",
- "test": "test_create_task_definition_validation[test-container-@library/alpine:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:latest-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine:latest-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine-True]",
- "test": "test_create_task_definition_validation[test-container-alpine-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:3.12-True]",
- "test": "test_create_task_definition_validation[test-container-alpine:3.12-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
- "test": "test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@3.12.0-False]",
- "test": "test_create_task_definition_validation[test-container-alpine@3.12.0-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
- "test": "test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
- "test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@s-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@s-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-docker.io/nginx-True]",
- "test": "test_create_task_definition_validation[test-container-docker.io/nginx-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -11997,17 +12051,17 @@
"test": "test_create_task_definition_validation[test-container-library/@alpine:latest-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine@latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/alpine@latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine-True]",
+ "test": "test_create_task_definition_validation[test-container-library/alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -12017,27 +12071,27 @@
"test": "test_create_task_definition_validation[test-container-library/image@name-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name:latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/image@name:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
- "test": "test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -12047,7 +12101,7 @@
"test": "test_create_task_definition_validation[test@container-alpine-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -12063,8 +12117,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_list_services_no_default_cluster",
- "test": "test_list_services_no_default_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_undefined_task_definition",
+ "test": "test_describe_undefined_task_definition",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -12073,2284 +12127,228 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_access_point",
- "test": "test_access_point",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_fargate_task_definition_optional_container_memory",
+ "test": "test_fargate_task_definition_optional_container_memory",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "snapshot_skipped": "['$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_create_filesystem",
- "test": "test_create_filesystem",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_list_services_no_default_cluster",
+ "test": "test_list_services_no_default_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_lifecycle_configuration",
- "test": "test_lifecycle_configuration",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "test": "test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_mount_target",
- "test": "test_mount_target",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
+ "test": "test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_additional_amis_present",
- "test": "test_additional_amis_present",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4]",
+ "test": "test_loose_image_name_regex[4]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.19]",
- "test": "test_get_parameters_eks_amis[1.19]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
+ "test": "test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.20]",
- "test": "test_get_parameters_eks_amis[1.20]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
+ "test": "test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.21]",
- "test": "test_get_parameters_eks_amis[1.21]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
+ "test": "test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.22]",
- "test": "test_get_parameters_eks_amis[1.22]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "test": "test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.23]",
- "test": "test_get_parameters_eks_amis[1.23]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "test": "test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_mocked_responses",
- "test": "test_mocked_responses",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "test": "test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_cluster_default_version",
- "test": "test_cluster_default_version",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..certificateAuthority', '$..endpoint', '$..identity', '$..kubernetesNetworkConfig', '$..logging', '$..resourcesVpcConfig', '$..roleArn', '$..tags']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
- "test": "test_create_app_in_k3s_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration",
- "test": "test_ecr_eks_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_eks_pod_exec",
- "test": "test_eks_pod_exec",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_localstack_communication_from_pod",
- "test": "test_localstack_communication_from_pod",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_volume_mount",
- "test": "test_volume_mount",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_cluster_custom_port",
- "test": "test_cache_cluster_custom_port",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_subnet_groups",
- "test": "test_cache_subnet_groups",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
- "test": "test_cluster_no_engine",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
- "test": "test_create_delete_multiple_clusters",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1]",
- "test": "test_redis_cluster_mode[0-1]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2]",
- "test": "test_redis_cluster_mode[0-2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4]",
- "test": "test_redis_cluster_mode[0-4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-1]",
- "test": "test_redis_cluster_mode[1-1]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2]",
- "test": "test_redis_cluster_mode[1-2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4]",
- "test": "test_redis_cluster_mode[1-4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone",
- "test": "test_redis_standalone",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
- "test": "test_replication_group",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_applications",
- "test": "test_manage_applications",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_environments",
- "test": "test_manage_environments",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
- "test": "test_alb_modify_attributes",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
- "test": "test_alb_set_ip_address_type",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
- "test": "test_create_load_balancer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
- "test": "test_create_loadbalancer_rule",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
- "test": "test_describe_load_balancers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_create_load_balancer",
- "test": "test_failing_create_load_balancer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
- "test": "test_failing_describe_load_balancers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
- "test": "test_route53_elb_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[GENEVE]",
- "test": "test_target_group_protocol_default_values[GENEVE]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTPS]",
- "test": "test_target_group_protocol_default_values[HTTPS]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTP]",
- "test": "test_target_group_protocol_default_values[HTTP]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP]",
- "test": "test_target_group_protocol_default_values[TCP]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP_UDP]",
- "test": "test_target_group_protocol_default_values[TCP_UDP]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TLS]",
- "test": "test_target_group_protocol_default_values[TLS]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[UDP]",
- "test": "test_target_group_protocol_default_values[UDP]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
- "test": "test_target_group_target_type_default_values[alb]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[instance]",
- "test": "test_target_group_target_type_default_values[instance]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[ip]",
- "test": "test_target_group_target_type_default_values[ip]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
- "test": "test_target_group_target_type_default_values[lambda]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrCrud::test_auto_termination_policies",
- "test": "test_auto_termination_policies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrCrud::test_instance_fleets",
- "test": "test_instance_fleets",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrJobs::test_run_spark_submit_job[python]",
- "test": "test_run_spark_submit_job[python]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_action_rds_reboot_db_instances",
- "test": "test_action_rds_reboot_db_instances",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_fault_action",
- "test": "test_api_injection_fault_action",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_exception",
- "test": "test_api_injection_parametrized_exception",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_operation",
- "test": "test_api_injection_parametrized_operation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_region",
- "test": "test_api_injection_parametrized_region",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_create_experiment_template",
- "test": "test_create_experiment_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_list_experiment_templates",
- "test": "test_list_experiment_templates",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_list_experiments",
- "test": "test_list_experiments",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_start_experiment",
- "test": "test_start_experiment",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_inventory_retrieval",
- "test": "test_inventory_retrieval",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..location']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item",
- "test": "test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item",
- "test": "test_topic_rule_triggers_dynamodb_v2_put_item",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output",
- "test": "test_application_output",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration",
- "test": "test_input_processing_configuration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications",
- "test": "test_list_and_update_applications",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource",
- "test": "test_tag_list_tag_untag_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output",
- "test": "test_application_output",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration",
- "test": "test_input_processing_configuration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications",
- "test": "test_list_and_update_applications",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource",
- "test": "test_tag_list_tag_untag_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lakeformation/test_lakeformation.py::TestLakeFormation::test_manage_permissions",
- "test": "test_manage_permissions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_download",
- "test": "test_external_layer_download",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_exceptions",
- "test": "test_external_layer_exceptions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation",
- "test": "test_container_image_lambda_chained_invocation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config",
- "test": "test_container_image_lambda_with_image_config",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LogResult']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node]",
- "test": "test_lambda_from_image[node]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python]",
- "test": "test_lambda_from_image[python]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_cross_account_layer",
- "test": "test_cross_account_layer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_multiple_layers_override",
- "test": "test_function_multiple_layers_override",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LogResult']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLayerHotReloading::test_layer_and_function_hot_reloading",
- "test": "test_layer_and_function_hot_reloading",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLayerHotReloading::test_layer_only_hot_reloading",
- "test": "test_layer_only_hot_reloading",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java11]",
- "test": "test_calling_localstack_from_lambda[java11]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java17]",
- "test": "test_calling_localstack_from_lambda[java17]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8.al2]",
- "test": "test_calling_localstack_from_lambda[java8.al2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8]",
- "test": "test_calling_localstack_from_lambda[java8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs14.x]",
- "test": "test_calling_localstack_from_lambda[nodejs14.x]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs18.x]",
- "test": "test_calling_localstack_from_lambda[nodejs18.x]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.10]",
- "test": "test_calling_localstack_from_lambda[python3.10]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.11]",
- "test": "test_calling_localstack_from_lambda[python3.11]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.7]",
- "test": "test_calling_localstack_from_lambda[python3.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby2.7]",
- "test": "test_calling_localstack_from_lambda[ruby2.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_extensions_api.py::TestExtensionsApi::test_generic_extension_full_lifecycle",
- "test": "test_generic_extension_full_lifecycle",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..shutdownReason', \"$..['Content-Type']\", '$..env']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_put_subscription_filter_kinesis_with_filter_pattern",
- "test": "test_put_subscription_filter_kinesis_with_filter_pattern",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_create_broker",
- "test": "test_create_broker",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_delete_tags",
- "test": "test_delete_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_describe_broker",
- "test": "test_describe_broker",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..body', '$..BrokerState', '$..MaintenanceWindowStartTime', '$..Users', '$..AuthenticationStrategy', '$..AutoMinorVersionUpgrade', '$..BrokerInstances', '$..EncryptionOptions', '$..Logs', '$..Configurations', '$..EngineVersion', '$..PubliclyAccessible', '$..SecurityGroups', '$..StorageType', '$..SubnetIds']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_send_to_activemq_curl",
- "test": "test_send_to_activemq_curl",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_cluster_with_tags",
- "test": "test_create_cluster_with_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.2.0.1-3.5.2]",
- "test": "test_create_query_db[1.2.0.1-3.5.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.2.1.0-3.6.2]",
- "test": "test_create_query_db[1.2.1.0-3.6.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[None-3.4.13]",
- "test": "test_create_query_db[None-3.4.13]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db_tags",
- "test": "test_create_query_db_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
- "test": "test_describe",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
- "test": "test_query",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_list_tables",
- "test": "test_list_tables",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal",
- "test": "test_stream_journal",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_cluster_endpoint_address[False]",
- "test": "test_cluster_endpoint_address[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMssql::test_create_mssql",
- "test": "test_create_mssql",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_create_mysql[False-5.7.39-MariaDB]",
- "test": "test_create_mysql[False-5.7.39-MariaDB]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_create_mysql[True-8.0.30-MySQL Community Server]",
- "test": "test_create_mysql[True-8.0.30-MySQL Community Server]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_data_api[True]",
- "test": "test_data_api[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..columnMetadata..precision']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_add_role_to_db_instance",
- "test": "test_add_role_to_db_instance",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_postgres",
- "test": "test_create_aurora_postgres",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_v2_cluster_delete_instances",
- "test": "test_create_aurora_v2_cluster_delete_instances",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_db_custom_port",
- "test": "test_create_db_custom_port",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_postgres",
- "test": "test_create_postgres",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_snapshot_cluster",
- "test": "test_create_snapshot_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_cluster_endpoints",
- "test": "test_db_cluster_endpoints",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_instance_already_exists",
- "test": "test_db_instance_already_exists",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..DBName']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_proxies",
- "test": "test_db_proxies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_generate_db_auth_token",
- "test": "test_generate_db_auth_token",
- "response": "200",
- "error": "",
- "snapshot_skipped": "all",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_modify_db_cluster",
- "test": "test_modify_db_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_modify_db_instance_with_db_parameter_group",
- "test": "test_modify_db_instance_with_db_parameter_group",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_db_parametergroup_named_default",
- "test": "test_postgres_db_parametergroup_named_default",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[11.15]",
- "test": "test_postgres_versions[11.15]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[12.9]",
- "test": "test_postgres_versions[12.9]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[13.4]",
- "test": "test_postgres_versions[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_serverless_no_custom_cluster_endpoint",
- "test": "test_serverless_no_custom_cluster_endpoint",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[10.23]",
- "test": "test_lambda_extensions[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[11.16]",
- "test": "test_lambda_extensions[11.16]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[12.8]",
- "test": "test_lambda_extensions[12.8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[13.4]",
- "test": "test_lambda_extensions[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[14.7]",
- "test": "test_lambda_extensions[14.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[10.23]",
- "test": "test_postgres_extension_query_export_to_s3[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[11.16]",
- "test": "test_postgres_extension_query_export_to_s3[11.16]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[12.8]",
- "test": "test_postgres_extension_query_export_to_s3[12.8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[13.4]",
- "test": "test_postgres_extension_query_export_to_s3[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[14.7]",
- "test": "test_postgres_extension_query_export_to_s3[14.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[15.2]",
- "test": "test_postgres_extension_query_export_to_s3[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[10.23]",
- "test": "test_postgres_extension_table_import_from_s3[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[11.16]",
- "test": "test_postgres_extension_table_import_from_s3[11.16]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[13.4]",
- "test": "test_postgres_extension_table_import_from_s3[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[15.2]",
- "test": "test_postgres_extension_table_import_from_s3[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[10.23]",
- "test": "test_postgres_s3_extension_helpers[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[13.4]",
- "test": "test_postgres_s3_extension_helpers[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[14.7]",
- "test": "test_postgres_s3_extension_helpers[14.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_cluster_with_instances",
- "test": "test_reset_cluster_with_instances",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[mysql]",
- "test": "test_reset_db_instance[mysql]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[sqlserver-se]",
- "test": "test_reset_db_instance[sqlserver-se]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_remove_instances_from_cluster",
- "test": "test_global_cluster_remove_instances_from_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
- "test": "test_failover",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_promote_secondary_headless",
- "test": "test_promote_secondary_headless",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
- "test": "test_validate_initial_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_create_cluster",
- "test": "test_create_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_redshift_connector",
- "test": "test_redshift_connector",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/route53/test_route53.py::TestRoute53::test_dns_failover_based_on_health_check",
- "test": "test_dns_failover_based_on_health_check",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..CallerReference', '$..HealthCheckConfig.EnableSNI', '$..HealthCheckConfig.FullyQualifiedDomainName', '$..HealthCheckConfig.IPAddress', '$..HealthCheckConfig.Port', '$..HealthCheckConfig.Type', '$..ttl']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/servicediscovery/test_servicediscovery.py::test_dns_namespace_with_and_without_dot[private-invalid name]",
- "test": "test_dns_namespace_with_and_without_dot[private-invalid name]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_cancel_command",
- "test": "test_cancel_command",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_describe_instance_information",
- "test": "test_describe_instance_information",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_send_command",
- "test": "test_send_command",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_insert_different_data_types",
- "test": "test_insert_different_data_types",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_interpolation_function[True]",
- "test": "test_interpolation_function[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ColumnInfo..Name']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_basic_transfer_api",
- "test": "test_basic_transfer_api",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_ftp_ssl_transfer",
- "test": "test_ftp_ssl_transfer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
- }
- },
- "TagResource": {
- "ResourceArn, Tags": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource",
- "test": "test_list_tags_of_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ]
- }
- },
- "TransactGetItems": {
- "TransactItems": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items",
- "test": "test_transact_get_items",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ]
- }
- },
- "TransactWriteItems": {
- "ClientRequestToken, TransactItems": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing",
- "test": "test_dynamodb_idempotent_writing",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data",
- "test": "test_transaction_write_binary_data",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items",
- "test": "test_transaction_write_items",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
- "test": "test_lambda_streams_batch_and_transactions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_existing_table",
- "test": "test_batch_write_not_existing_table",
- "response": "400",
- "error": "ResourceNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled",
- "test": "test_transaction_write_canceled",
- "response": "400",
- "error": "TransactionCanceledException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ],
- "ls_pro": [
- {
- "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
- "test": "test_dynamodb_resolvers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
- }
- },
- "UntagResource": {
- "ResourceArn, TagKeys": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource",
- "test": "test_list_tags_of_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ]
- }
- },
- "UpdateContinuousBackups": {
- "PointInTimeRecoverySpecification, TableName": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update",
- "test": "test_continuous_backup_update",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..PointInTimeRecoveryDescription..EarliestRestorableDateTime', '$..PointInTimeRecoveryDescription..LatestRestorableDateTime']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ]
- }
- },
- "UpdateGlobalTable": {
- "GlobalTableName, ReplicaUpdates": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables",
- "test": "test_global_tables",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ]
- }
- },
- "UpdateItem": {
- "AttributeUpdates, Expected, Key, TableName": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
- "test": "test_firehose_stack_with_kinesis_as_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Destinations']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source",
- "test": "test_delivery_stream_with_kinesis_as_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup",
- "test": "test_kinesis_firehose_elasticsearch_s3_backup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain]",
- "test": "test_kinesis_firehose_opensearch_s3_backup[domain]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path]",
- "test": "test_kinesis_firehose_opensearch_s3_backup[path]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port]",
- "test": "test_kinesis_firehose_opensearch_s3_backup[port]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl",
- "test": "test_run_kcl",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy",
- "test": "test_filter_policy",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_for_batch",
- "test": "test_filter_policy_for_batch",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[False]",
- "test": "test_filter_policy_on_message_body[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body[True]",
- "test": "test_filter_policy_on_message_body[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionCrud::test_list_subscriptions",
- "test": "test_list_subscriptions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$.list-subscriptions.Subscriptions']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_python_lambda_subscribe_sns_topic",
- "test": "test_python_lambda_subscribe_sns_topic",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_sns_topic_as_lambda_dead_letter_queue",
- "test": "test_sns_topic_as_lambda_dead_letter_queue",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_publish_sqs_from_sns",
- "test": "test_publish_sqs_from_sns",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQS::test_subscription_after_failure_to_deliver",
- "test": "test_subscription_after_failure_to_deliver",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_message_to_fifo_sqs[False]",
- "test": "test_message_to_fifo_sqs[False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
+ "test": "test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False]",
- "test": "test_publish_batch_messages_from_fifo_topic_to_fifo_queue[False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
+ "test": "test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action', '$.republish-batch-response-fifo.Successful..MessageId', '$.republish-batch-response-fifo.Successful..SequenceNumber']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True]",
- "test": "test_publish_batch_messages_from_fifo_topic_to_fifo_queue[True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
+ "test": "test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action', '$.republish-batch-response-fifo.Successful..MessageId', '$.republish-batch-response-fifo.Successful..SequenceNumber']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_fifo_messages_to_dlq[False]",
- "test": "test_publish_fifo_messages_to_dlq[False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
+ "test": "test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.topic-attrs.Attributes.DeliveryPolicy', '$.topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.topic-attrs.Attributes.Policy.Statement..Action']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionSQSFifo::test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[True]",
- "test": "test_publish_to_fifo_topic_to_sqs_queue_no_content_dedup[True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "test": "test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSTopicCrud::test_create_topic_with_attributes",
- "test": "test_create_topic_with_attributes",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "test": "test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3",
- "test": "test_firehose_kinesis_to_s3",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
- "test": "test_lambda_streams_batch_and_transactions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_kinesis_stream_handler_deployed",
- "test": "test_kinesis_stream_handler_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
- "test": "test_s3_bucket_deployed",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_tag_task_definition",
+ "test": "test_tag_task_definition",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute",
- "test": "test_filter_policy_on_message_body_dot_attribute",
- "response": "400",
- "error": "ConditionalCheckFailedException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ],
- "ls_pro": [
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
- "test": "test_application_with_output_and_reference",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
- "test": "test_lambda_layer_python",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_msk.py::test_create_cluster",
- "test": "test_create_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_qldb.py::test_create_ledgers",
- "test": "test_create_ledgers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_cluster_deployment",
- "test": "test_db_cluster_deployment",
+ "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_access_point",
+ "test": "test_access_point",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment",
- "test": "test_db_instance_deployment",
+ "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_create_filesystem",
+ "test": "test_create_filesystem",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DbAddress']",
+ "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
- "test": "test_db_proxy",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[with_trailing_dot]",
- "test": "test_hostedzone_optionaltrailingdot[with_trailing_dot]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[without_trailing_dot]",
- "test": "test_hostedzone_optionaltrailingdot[without_trailing_dot]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_with_comment",
- "test": "test_hostedzone_with_comment",
+ "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_lifecycle_configuration",
+ "test": "test_lifecycle_configuration",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HostedZone.CallerReference', '$..DelegationSet.Id', '$..HostedZone.Id']",
+ "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
- "test": "test_secretsmanager_target_attachment_maridab",
+ "node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_mount_target",
+ "test": "test_mount_target",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$.create-fs.LifeCycleState', '$.create-fs.Name', '$.create-fs.SizeInBytes.Timestamp', '$..FileSystems..SizeInBytes', '$..FileSystems..Name', '$..ErrorCode']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules",
- "test": "test_create_receiptrules",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_additional_amis_present",
+ "test": "test_additional_amis_present",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14359,18 +12357,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_timestream.py::test_create_db_tables",
- "test": "test_create_db_tables",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.19]",
+ "test": "test_get_parameters_eks_amis[1.19]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
- "test": "test_cdk_trail_cw_logs",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.20]",
+ "test": "test_get_parameters_eks_amis[1.20]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14379,48 +12377,48 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_create_trail",
- "test": "test_create_trail",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.21]",
+ "test": "test_get_parameters_eks_amis[1.21]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_not_started",
- "test": "test_get_trail_status_of_not_started",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.22]",
+ "test": "test_get_parameters_eks_amis[1.22]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_s3_trails",
- "test": "test_s3_trails",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.23]",
+ "test": "test_get_parameters_eks_amis[1.23]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestID', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.resources', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources', '$..NextToken']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_start_stop_updates",
- "test": "test_start_stop_updates",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_cluster_default_version",
+ "test": "test_cluster_default_version",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..certificateAuthority', '$..endpoint', '$..identity', '$..kubernetesNetworkConfig', '$..logging', '$..resourcesVpcConfig', '$..roleArn', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_commit",
- "test": "test_create_commit",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
+ "test": "test_create_app_in_k3s_cluster",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14429,8 +12427,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_repository",
- "test": "test_create_repository",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration",
+ "test": "test_ecr_eks_integration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14439,8 +12437,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_folder",
- "test": "test_get_folder",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_eks_pod_exec",
+ "test": "test_eks_pod_exec",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14449,8 +12447,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_non_existing_branch",
- "test": "test_get_non_existing_branch",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_localstack_communication_from_pod",
+ "test": "test_localstack_communication_from_pod",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14459,8 +12457,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_list_pull_requests",
- "test": "test_list_pull_requests",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_volume_mount",
+ "test": "test_volume_mount",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14469,58 +12467,58 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_change_password",
- "test": "test_admin_change_password",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_cache_type",
+ "test": "test_cluster_no_cache_type",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..UserAttributes', '$..User.Attributes', '$.respond-to-auth-challenge.AuthenticationResult', '$.respond-to-auth-challenge.ChallengeParameters', '$.respond-to-auth-challenge.Session', '$.init-auth.AuthenticationResult']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_set_permanent_invalid_password",
- "test": "test_admin_set_permanent_invalid_password",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
+ "test": "test_cluster_no_engine",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Error.Message', '$..message', '$..UserAttributes..Value', '$..Username']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer",
- "test": "test_api_gateway_cognito_pool_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_redis_num_nodes_greater_than_one",
+ "test": "test_cluster_redis_num_nodes_greater_than_one",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
- "test": "test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group_no_cache_type",
+ "test": "test_replication_group_no_cache_type",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AuthSessionValidity', '$..ExplicitAuthFlows', '$..DeletionProtection', '$..AdminCreateUserConfig.UnusedAccountValidityDays', '$..AliasAttributes', '$..EstimatedNumberOfUsers', '$..LambdaConfig', '$..MfaConfiguration', '$..SchemaAttributes', '$..body', '$..headers.Accept', '$..headers.Accept-Encoding', '$..headers.Authorization', '$..headers.CloudFront-Forwarded-Proto', '$..headers.CloudFront-Is-Desktop-Viewer', '$..headers.CloudFront-Is-Mobile-Viewer', '$..headers.CloudFront-Is-SmartTV-Viewer', '$..headers.CloudFront-Is-Tablet-Viewer', '$..headers.CloudFront-Viewer-ASN', '$..headers.CloudFront-Viewer-Country', '$..headers.Connection', '$..headers.Host', '$..headers.User-Agent', '$..headers.Via', '$..headers.X-Amz-Cf-Id', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Forwarded-For', '$..headers.X-Forwarded-Port', '$..headers.X-Forwarded-Proto', '$..headers.accept', '$..headers.accept-encoding', '$..headers.authorization', '$..headers.connection', '$..headers.host', '$..headers.user-agent', '$..headers.x-localstack-edge', '$..headers.x-localstack-request-url', '$..headers.x-localstack-tgt-api', '$..multiValueHeaders.Accept', '$..multiValueHeaders.Accept-Encoding', '$..multiValueHeaders.Authorization', '$..multiValueHeaders.CloudFront-Forwarded-Proto', '$..multiValueHeaders.CloudFront-Is-Desktop-Viewer', '$..multiValueHeaders.CloudFront-Is-Mobile-Viewer', '$..multiValueHeaders.CloudFront-Is-SmartTV-Viewer', '$..multiValueHeaders.CloudFront-Is-Tablet-Viewer', '$..multiValueHeaders.CloudFront-Viewer-ASN', '$..multiValueHeaders.CloudFront-Viewer-Country', '$..multiValueHeaders.Connection', '$..multiValueHeaders.Host', '$..multiValueHeaders.User-Agent', '$..multiValueHeaders.Via', '$..multiValueHeaders.X-Amz-Cf-Id', '$..multiValueHeaders.X-Amzn-Trace-Id', '$..multiValueHeaders.X-Forwarded-For', '$..multiValueHeaders.X-Forwarded-Port', '$..multiValueHeaders.X-Forwarded-Proto', '$..multiValueHeaders.accept', '$..multiValueHeaders.accept-encoding', '$..multiValueHeaders.authorization', '$..multiValueHeaders.connection', '$..multiValueHeaders.host', '$..multiValueHeaders.user-agent', '$..multiValueHeaders.x-localstack-edge', '$..multiValueHeaders.x-localstack-request-url', '$..multiValueHeaders.x-localstack-tgt-api', '$..pathParameters', '$..requestContext.authorizer.claims', '$..requestContext.domainName', '$..requestContext.extendedRequestId', '$..requestContext.identity.accessKey', '$..requestContext.identity.accountId', '$..requestContext.identity.caller', '$..requestContext.identity.cognitoAuthenticationProvider', '$..requestContext.identity.cognitoAuthenticationType', '$..requestContext.identity.principalOrgId', '$..requestContext.identity.user', '$..requestContext.identity.userArn', '$..stageVariables']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_auth_not_authorized_user",
- "test": "test_auth_not_authorized_user",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group_no_engine",
+ "test": "test_replication_group_no_engine",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AuthenticationResult', '$..Session']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}@example.com]",
- "test": "test_change_password[user-{short_uid}@example.com]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_cluster_custom_port",
+ "test": "test_cache_cluster_custom_port",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14529,8 +12527,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_change_password[user-{short_uid}]",
- "test": "test_change_password[user-{short_uid}]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_parameter_groups",
+ "test": "test_cache_parameter_groups",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14539,8 +12537,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_subnet_groups",
+ "test": "test_cache_subnet_groups",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14549,18 +12547,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_invalid_pool_client_parameters",
- "test": "test_invalid_pool_client_parameters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
+ "test": "test_create_delete_multiple_clusters",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_via_web_form",
- "test": "test_login_via_web_form",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-1]",
+ "test": "test_redis_cluster_mode[0-1]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14569,8 +12567,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username",
- "test": "test_login_with_preferred_username",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-2]",
+ "test": "test_redis_cluster_mode[0-2]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14579,68 +12577,68 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username_attr_change",
- "test": "test_login_with_preferred_username_attr_change",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-4]",
+ "test": "test_redis_cluster_mode[0-4]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_password_policy",
- "test": "test_password_policy",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-1]",
+ "test": "test_redis_cluster_mode[1-1]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_restore_forgotten_password",
- "test": "test_restore_forgotten_password",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-2]",
+ "test": "test_redis_cluster_mode[1-2]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp",
- "test": "test_signup_case_insensitive_and_auth_using_srp",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-4]",
+ "test": "test_redis_cluster_mode[1-4]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_with_email_phone_aliases",
- "test": "test_signup_with_email_phone_aliases",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_standalone",
+ "test": "test_redis_standalone",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login",
- "test": "test_srp_login",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
+ "test": "test_replication_group",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AccountRecoverySetting']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login_after_password_update",
- "test": "test_srp_login_after_password_update",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14649,158 +12647,98 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-body]",
- "test": "test_token_endpoint[client_credentials-body]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_application_versions",
+ "test": "test_manage_application_versions",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[client_credentials-query_params]",
- "test": "test_token_endpoint[client_credentials-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_applications",
+ "test": "test_manage_applications",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-body]",
- "test": "test_token_endpoint[code-body]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
+ "test": "test_alb_modify_attributes",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
+ "test": "test_alb_set_ip_address_type",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_attributes_upon_creation[name-True-True]",
- "test": "test_user_attributes_upon_creation[name-True-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_custom_id",
- "test": "test_user_pool_custom_id",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_error_messages",
- "test": "test_user_pool_error_messages",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
+ "test": "test_create_load_balancer",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output",
- "test": "test_application_output",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration",
- "test": "test_input_processing_configuration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications",
- "test": "test_list_and_update_applications",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource",
- "test": "test_tag_list_tag_untag_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output",
- "test": "test_application_output",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration",
- "test": "test_input_processing_configuration",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
+ "test": "test_create_loadbalancer_rule",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications",
- "test": "test_list_and_update_applications",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
+ "test": "test_describe_load_balancers",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource",
- "test": "test_tag_list_tag_untag_resource",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_create_load_balancer",
+ "test": "test_failing_create_load_balancer",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_download",
- "test": "test_external_layer_download",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
+ "test": "test_failing_describe_load_balancers",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14809,8 +12747,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_exceptions",
- "test": "test_external_layer_exceptions",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
+ "test": "test_route53_elb_integration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14819,8 +12757,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_multiple_versions",
- "test": "test_external_layer_multiple_versions",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14829,18 +12767,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_specific",
- "test": "test_external_layer_specific",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LogResult']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation",
- "test": "test_container_image_lambda_chained_invocation",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14849,18 +12787,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config",
- "test": "test_container_image_lambda_with_image_config",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LogResult']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node]",
- "test": "test_lambda_from_image[node]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14869,8 +12807,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python]",
- "test": "test_lambda_from_image[python]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14879,28 +12817,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_multiple_layers_override",
- "test": "test_function_multiple_layers_override",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LogResult']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_using_layer",
- "test": "test_function_using_layer",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LogResult', '$..Payload.layer']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_using_layer_overriding_runtime",
- "test": "test_function_using_layer_overriding_runtime",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-False-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14909,8 +12847,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLayerHotReloading::test_layer_and_function_hot_reloading",
- "test": "test_layer_and_function_hot_reloading",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14919,8 +12857,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLayerHotReloading::test_layer_only_hot_reloading",
- "test": "test_layer_only_hot_reloading",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -14929,178 +12867,178 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java11]",
- "test": "test_calling_localstack_from_lambda[java11]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java17]",
- "test": "test_calling_localstack_from_lambda[java17]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8.al2]",
- "test": "test_calling_localstack_from_lambda[java8.al2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8]",
- "test": "test_calling_localstack_from_lambda[java8]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-False-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs14.x]",
- "test": "test_calling_localstack_from_lambda[nodejs14.x]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs16.x]",
- "test": "test_calling_localstack_from_lambda[nodejs16.x]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs18.x]",
- "test": "test_calling_localstack_from_lambda[nodejs18.x]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTP-True]",
+ "test": "test_target_group_healthcheck_interval[HTTP-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.10]",
- "test": "test_calling_localstack_from_lambda[python3.10]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTPS-True]",
+ "test": "test_target_group_healthcheck_interval[HTTPS-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.11]",
- "test": "test_calling_localstack_from_lambda[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.7]",
- "test": "test_calling_localstack_from_lambda[python3.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP_UDP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.8]",
- "test": "test_calling_localstack_from_lambda[python3.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TLS-False]",
+ "test": "test_target_group_healthcheck_interval[TLS-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.9]",
- "test": "test_calling_localstack_from_lambda[python3.9]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[UDP-False]",
+ "test": "test_target_group_healthcheck_interval[UDP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby2.7]",
- "test": "test_calling_localstack_from_lambda[ruby2.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[GENEVE]",
+ "test": "test_target_group_protocol_default_values[GENEVE]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_extensions_api.py::TestExtensionsApi::test_generic_extension_full_lifecycle",
- "test": "test_generic_extension_full_lifecycle",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTPS]",
+ "test": "test_target_group_protocol_default_values[HTTPS]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..shutdownReason', \"$..['Content-Type']\", '$..env']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_xray.py::TestLambdaXrayIntegration::test_basic_xray_integration",
- "test": "test_basic_xray_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTP]",
+ "test": "test_target_group_protocol_default_values[HTTP]",
"response": "200",
"error": "",
- "snapshot_skipped": "all",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_put_subscription_filter_kinesis_with_filter_pattern",
- "test": "test_put_subscription_filter_kinesis_with_filter_pattern",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP]",
+ "test": "test_target_group_protocol_default_values[TCP]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mediastore/test_mediastore.py::TestMediastore::test_basic_mediastore_api",
- "test": "test_basic_mediastore_api",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP_UDP]",
+ "test": "test_target_group_protocol_default_values[TCP_UDP]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_create_broker",
- "test": "test_create_broker",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TLS]",
+ "test": "test_target_group_protocol_default_values[TLS]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15109,8 +13047,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_create_tags",
- "test": "test_create_tags",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[UDP]",
+ "test": "test_target_group_protocol_default_values[UDP]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15119,8 +13057,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_delete_broker",
- "test": "test_delete_broker",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
+ "test": "test_target_group_target_type_default_values[alb]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15129,8 +13067,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_delete_tags",
- "test": "test_delete_tags",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[instance]",
+ "test": "test_target_group_target_type_default_values[instance]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15139,28 +13077,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_describe_broker",
- "test": "test_describe_broker",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[ip]",
+ "test": "test_target_group_target_type_default_values[ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..body', '$..BrokerState', '$..MaintenanceWindowStartTime', '$..Users', '$..AuthenticationStrategy', '$..AutoMinorVersionUpgrade', '$..BrokerInstances', '$..EncryptionOptions', '$..Logs', '$..Configurations', '$..EngineVersion', '$..PubliclyAccessible', '$..SecurityGroups', '$..StorageType', '$..SubnetIds']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_list_brokers",
- "test": "test_list_brokers",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
+ "test": "test_target_group_target_type_default_values[lambda]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..BrokerState', '$..EngineType']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_send_to_active_mq",
- "test": "test_send_to_active_mq",
+ "node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item",
+ "test": "test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15169,8 +13107,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_send_to_activemq_curl",
- "test": "test_send_to_activemq_curl",
+ "node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_topic_rule_triggers_dynamodb_v2_put_item",
+ "test": "test_topic_rule_triggers_dynamodb_v2_put_item",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15179,8 +13117,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_cluster_with_tags",
- "test": "test_create_cluster_with_tags",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output",
+ "test": "test_application_output",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15189,8 +13127,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_neo4j_cluster",
- "test": "test_create_neo4j_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration",
+ "test": "test_input_processing_configuration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15199,8 +13137,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.1.0.0-3.4.11]",
- "test": "test_create_query_db[1.1.0.0-3.4.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications",
+ "test": "test_list_and_update_applications",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15209,8 +13147,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.2.0.1-3.5.2]",
- "test": "test_create_query_db[1.2.0.1-3.5.2]",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource",
+ "test": "test_tag_list_tag_untag_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15219,8 +13157,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.2.1.0-3.6.2]",
- "test": "test_create_query_db[1.2.1.0-3.6.2]",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output",
+ "test": "test_application_output",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15229,8 +13167,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[None-3.4.13]",
- "test": "test_create_query_db[None-3.4.13]",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration",
+ "test": "test_input_processing_configuration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15239,8 +13177,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db_tags",
- "test": "test_create_query_db_tags",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications",
+ "test": "test_list_and_update_applications",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15249,58 +13187,66 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
- "test": "test_describe",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
- "test": "test_query",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource",
+ "test": "test_tag_list_tag_untag_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/organizations/test_organizations.py::TestOrganizations::test_organization",
- "test": "test_organization",
+ "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal",
+ "test": "test_stream_journal",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "TagResource": {
+ "ResourceArn, Tags": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_by_metadata",
- "test": "test_query_by_metadata",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource",
+ "test": "test_list_tags_of_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "TransactGetItems": {
+ "TransactItems": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_committed_views",
- "test": "test_query_committed_views",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transact_get_items",
+ "test": "test_transact_get_items",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "TransactWriteItems": {
+ "ClientRequestToken, TransactItems": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_history_with_start_end_timestamps",
- "test": "test_query_history_with_start_end_timestamps",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_idempotent_writing",
+ "test": "test_dynamodb_idempotent_writing",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15309,38 +13255,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_join_tables",
- "test": "test_query_join_tables",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_with_parameters",
- "test": "test_query_with_parameters",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal",
- "test": "test_stream_journal",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_update_query_response",
- "test": "test_update_query_response",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_binary_data",
+ "test": "test_transaction_write_binary_data",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15349,28 +13265,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_cluster_endpoint_address[False]",
- "test": "test_cluster_endpoint_address[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_cluster_endpoint_address[True]",
- "test": "test_cluster_endpoint_address[True]",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_items",
+ "test": "test_transaction_write_items",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_subnet_group",
- "test": "test_db_subnet_group",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
+ "test": "test_lambda_streams_batch_and_transactions",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15379,88 +13285,104 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMariaDB::test_create_mariadb",
- "test": "test_create_mariadb",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_not_existing_table",
+ "test": "test_batch_write_not_existing_table",
+ "response": "400",
+ "error": "ResourceNotFoundException",
+ "snapshot_skipped": "['$..Error.Message', '$..message']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMssql::test_create_mssql",
- "test": "test_create_mssql",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_transaction_write_canceled",
+ "test": "test_transaction_write_canceled",
+ "response": "400",
+ "error": "TransactionCanceledException",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
- },
+ }
+ ],
+ "ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_create_mysql[False-5.7.39-MariaDB]",
- "test": "test_create_mysql[False-5.7.39-MariaDB]",
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolvers",
+ "test": "test_dynamodb_resolvers",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "UntagResource": {
+ "ResourceArn, TagKeys": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_create_mysql[True-8.0.30-MySQL Community Server]",
- "test": "test_create_mysql[True-8.0.30-MySQL Community Server]",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_list_tags_of_resource",
+ "test": "test_list_tags_of_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_data_api[False]",
- "test": "test_data_api[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..columnMetadata..precision']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "UpdateContinuousBackups": {
+ "PointInTimeRecoverySpecification, TableName": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_data_api[True]",
- "test": "test_data_api[True]",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_continuous_backup_update",
+ "test": "test_continuous_backup_update",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..columnMetadata..precision']",
+ "snapshot_skipped": "['$..PointInTimeRecoveryDescription..EarliestRestorableDateTime', '$..PointInTimeRecoveryDescription..LatestRestorableDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "UpdateGlobalTable": {
+ "GlobalTableName, ReplicaUpdates": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_add_role_to_db_cluster",
- "test": "test_add_role_to_db_cluster",
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_global_tables",
+ "test": "test_global_tables",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "UpdateItem": {
+ "AttributeUpdates, Expected, Key, TableName": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_add_role_to_db_instance",
- "test": "test_add_role_to_db_instance",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
+ "test": "test_cdk_bootstrap[10]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_postgres",
- "test": "test_create_aurora_postgres",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
+ "test": "test_cdk_bootstrap[11]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15469,8 +13391,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_postgres_instance",
- "test": "test_create_aurora_postgres_instance",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
+ "test": "test_cdk_bootstrap[12]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15479,28 +13401,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_v2_cluster",
- "test": "test_create_aurora_v2_cluster",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
+ "test": "test_cdk_bootstrap_redeploy",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_v2_cluster_delete_instances",
- "test": "test_create_aurora_v2_cluster_delete_instances",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
+ "test": "test_firehose_stack_with_kinesis_as_source",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_db_custom_port",
- "test": "test_create_db_custom_port",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source",
+ "test": "test_delivery_stream_with_kinesis_as_source",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15509,8 +13431,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_postgres",
- "test": "test_create_postgres",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup",
+ "test": "test_kinesis_firehose_elasticsearch_s3_backup",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15519,8 +13441,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_snapshot_cluster",
- "test": "test_create_snapshot_cluster",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain]",
+ "test": "test_kinesis_firehose_opensearch_s3_backup[domain]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15529,8 +13451,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_snapshot_instance",
- "test": "test_create_snapshot_instance",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[path]",
+ "test": "test_kinesis_firehose_opensearch_s3_backup[path]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15539,18 +13461,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_data_api",
- "test": "test_data_api",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[port]",
+ "test": "test_kinesis_firehose_opensearch_s3_backup[port]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..columnMetadata[8].precision', '$..records[0].[14].stringValue', '$..records[0].[15].stringValue']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_cluster_already_exists",
- "test": "test_db_cluster_already_exists",
+ "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesisPythonClient::test_run_kcl",
+ "test": "test_run_kcl",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15559,18 +13481,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_cluster_endpoints",
- "test": "test_db_cluster_endpoints",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_kinesis_to_s3",
+ "test": "test_firehose_kinesis_to_s3",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_cluster_scaling",
- "test": "test_db_cluster_scaling",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
+ "test": "test_lambda_streams_batch_and_transactions",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15579,18 +13501,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_instance_already_exists",
- "test": "test_db_instance_already_exists",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_container_lifecycle_commands[SdkDockerClient]",
+ "test": "test_container_lifecycle_commands[SdkDockerClient]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..DBName']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_proxies",
- "test": "test_db_proxies",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_directory_content_into_container[SdkDockerClient]",
+ "test": "test_copy_directory_content_into_container[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15599,18 +13521,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_generate_db_auth_token",
- "test": "test_generate_db_auth_token",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_from_container[SdkDockerClient]",
+ "test": "test_copy_from_container[SdkDockerClient]",
"response": "200",
"error": "",
- "snapshot_skipped": "all",
- "aws_validated": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_iam_db_token_auth_from_lambda",
- "test": "test_iam_db_token_auth_from_lambda",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_copy_from_container_to_different_file[SdkDockerClient]",
+ "test": "test_copy_from_container_to_different_file[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15619,8 +13541,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_modify_db_cluster",
- "test": "test_modify_db_cluster",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_container_remove_removes_container[SdkDockerClient]",
+ "test": "test_create_container_remove_removes_container[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15629,8 +13551,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_modify_db_instance_with_db_parameter_group",
- "test": "test_modify_db_instance_with_db_parameter_group",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_container_with_max_env_vars[SdkDockerClient]",
+ "test": "test_create_container_with_max_env_vars[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15639,8 +13561,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_db_parametergroup_named_default",
- "test": "test_postgres_db_parametergroup_named_default",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_create_start_container_with_stdin_to_stdout[SdkDockerClient-True]",
+ "test": "test_create_start_container_with_stdin_to_stdout[SdkDockerClient-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15649,8 +13571,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[11.15]",
- "test": "test_postgres_versions[11.15]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_container_ip_for_network_non_existent_network[SdkDockerClient]",
+ "test": "test_get_container_ip_for_network_non_existent_network[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15659,8 +13581,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[12.9]",
- "test": "test_postgres_versions[12.9]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_get_logs[SdkDockerClient]",
+ "test": "test_get_logs[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15669,8 +13591,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[13.4]",
- "test": "test_postgres_versions[13.4]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_is_container_running[SdkDockerClient]",
+ "test": "test_is_container_running[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15679,8 +13601,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_query_from_s3",
- "test": "test_query_from_s3",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_push_access_denied[SdkDockerClient]",
+ "test": "test_push_access_denied[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15689,18 +13611,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_serverless_no_custom_cluster_endpoint",
- "test": "test_serverless_no_custom_cluster_endpoint",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerClient::test_running_container_names[SdkDockerClient]",
+ "test": "test_running_container_names[SdkDockerClient]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[10.23]",
- "test": "test_lambda_extensions[10.23]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerImages::test_commit_creates_image_from_running_container[SdkDockerClient]",
+ "test": "test_commit_creates_image_from_running_container[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15709,8 +13631,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[11.16]",
- "test": "test_lambda_extensions[11.16]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_connect_nonexistent_container_to_network[SdkDockerClient]",
+ "test": "test_connect_nonexistent_container_to_network[SdkDockerClient]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15719,8 +13641,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[12.8]",
- "test": "test_lambda_extensions[12.8]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerNetworking::test_docker_sdk_retries_after_init",
+ "test": "test_docker_sdk_retries_after_init",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15729,8 +13651,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[13.4]",
- "test": "test_lambda_extensions[13.4]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_container_port_can_be_bound[SdkDockerClient-tcp]",
+ "test": "test_container_port_can_be_bound[SdkDockerClient-tcp]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15739,8 +13661,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[14.7]",
- "test": "test_lambda_extensions[14.7]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_reserve_container_port[SdkDockerClient-None]",
+ "test": "test_reserve_container_port[SdkDockerClient-None]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15749,8 +13671,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_reserve_container_port[SdkDockerClient-tcp]",
+ "test": "test_reserve_container_port[SdkDockerClient-tcp]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15759,8 +13681,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
+ "node_id": "LocalStack Community: tests/integration/docker_utils/test_docker.py::TestDockerPorts::test_reserve_container_port[SdkDockerClient-udp]",
+ "test": "test_reserve_container_port[SdkDockerClient-udp]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15769,118 +13691,120 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[10.23]",
- "test": "test_postgres_extension_query_export_to_s3[10.23]",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
+ "test": "test_cdk_bootstrap_redeploy",
+ "response": "400",
+ "error": "ConditionalCheckFailedException",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
+ }
+ ],
+ "ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[11.16]",
- "test": "test_postgres_extension_query_export_to_s3[11.16]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
+ "test": "test_application_with_output_and_reference",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[12.8]",
- "test": "test_postgres_extension_query_export_to_s3[12.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
+ "test": "test_lambda_layer_python",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[13.4]",
- "test": "test_postgres_extension_query_export_to_s3[13.4]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_msk.py::test_create_cluster",
+ "test": "test_create_cluster",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[14.7]",
- "test": "test_postgres_extension_query_export_to_s3[14.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_qldb.py::test_create_ledgers",
+ "test": "test_create_ledgers",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[15.2]",
- "test": "test_postgres_extension_query_export_to_s3[15.2]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_cluster_deployment",
+ "test": "test_db_cluster_deployment",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[10.23]",
- "test": "test_postgres_extension_table_import_from_s3[10.23]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_instance_deployment",
+ "test": "test_db_instance_deployment",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..DbAddress']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[11.16]",
- "test": "test_postgres_extension_table_import_from_s3[11.16]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
+ "test": "test_db_proxy",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[12.8]",
- "test": "test_postgres_extension_table_import_from_s3[12.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[with_trailing_dot]",
+ "test": "test_hostedzone_optionaltrailingdot[with_trailing_dot]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[13.4]",
- "test": "test_postgres_extension_table_import_from_s3[13.4]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_optionaltrailingdot[without_trailing_dot]",
+ "test": "test_hostedzone_optionaltrailingdot[without_trailing_dot]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[14.7]",
- "test": "test_postgres_extension_table_import_from_s3[14.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_route53.py::test_hostedzone_with_comment",
+ "test": "test_hostedzone_with_comment",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..HostedZone.CallerReference', '$..DelegationSet.Id', '$..HostedZone.Id']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[15.2]",
- "test": "test_postgres_extension_table_import_from_s3[15.2]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
+ "test": "test_secretsmanager_target_attachment_maridab",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15889,8 +13813,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[10.23]",
- "test": "test_postgres_s3_extension_helpers[10.23]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ses.py::test_create_receiptrules",
+ "test": "test_create_receiptrules",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15899,8 +13823,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[11.16]",
- "test": "test_postgres_s3_extension_helpers[11.16]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_timestream.py::test_create_db_tables",
+ "test": "test_create_db_tables",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15909,8 +13833,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[12.8]",
- "test": "test_postgres_s3_extension_helpers[12.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15919,28 +13843,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[13.4]",
- "test": "test_postgres_s3_extension_helpers[13.4]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[14.7]",
- "test": "test_postgres_s3_extension_helpers[14.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
+ "test": "test_cdk_trail_cw_logs",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[15.2]",
- "test": "test_postgres_s3_extension_helpers[15.2]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_create_trail",
+ "test": "test_create_trail",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15949,8 +13873,38 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_cluster_with_instances",
- "test": "test_reset_cluster_with_instances",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_not_started",
+ "test": "test_get_trail_status_of_not_started",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started_and_stopped",
+ "test": "test_get_trail_status_of_started_and_stopped",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_record_events",
+ "test": "test_record_events",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_start_stop_updates",
+ "test": "test_start_stop_updates",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15959,8 +13913,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[mariadb]",
- "test": "test_reset_db_instance[mariadb]",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_commit",
+ "test": "test_create_commit",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15969,8 +13923,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[mysql]",
- "test": "test_reset_db_instance[mysql]",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_repository",
+ "test": "test_create_repository",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15979,8 +13933,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[sqlserver-se]",
- "test": "test_reset_db_instance[sqlserver-se]",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_file",
+ "test": "test_get_file",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15989,8 +13943,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_read_write",
- "test": "test_global_cluster_read_write",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_get_non_existing_branch",
+ "test": "test_get_non_existing_branch",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -15999,8 +13953,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_remove_instances_from_cluster",
- "test": "test_global_cluster_remove_instances_from_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_list_pull_requests",
+ "test": "test_list_pull_requests",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16009,48 +13963,48 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
- "test": "test_failover",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_admin_set_permanent_invalid_password",
+ "test": "test_admin_set_permanent_invalid_password",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..Error.Message', '$..message', '$..UserAttributes..Value', '$..Username']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_invalid_secondary_cluster",
- "test": "test_invalid_secondary_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer",
+ "test": "test_api_gateway_cognito_pool_authorizer",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_promote_secondary_headless",
- "test": "test_promote_secondary_headless",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
+ "test": "test_api_gateway_cognito_pool_authorizer_oauth_client_credentials_token",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..AuthSessionValidity', '$..ExplicitAuthFlows', '$..DeletionProtection', '$..AdminCreateUserConfig.UnusedAccountValidityDays', '$..AliasAttributes', '$..EstimatedNumberOfUsers', '$..LambdaConfig', '$..MfaConfiguration', '$..SchemaAttributes', '$..body', '$..headers.Accept', '$..headers.Accept-Encoding', '$..headers.Authorization', '$..headers.CloudFront-Forwarded-Proto', '$..headers.CloudFront-Is-Desktop-Viewer', '$..headers.CloudFront-Is-Mobile-Viewer', '$..headers.CloudFront-Is-SmartTV-Viewer', '$..headers.CloudFront-Is-Tablet-Viewer', '$..headers.CloudFront-Viewer-ASN', '$..headers.CloudFront-Viewer-Country', '$..headers.Connection', '$..headers.Host', '$..headers.User-Agent', '$..headers.Via', '$..headers.X-Amz-Cf-Id', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Forwarded-For', '$..headers.X-Forwarded-Port', '$..headers.X-Forwarded-Proto', '$..headers.accept', '$..headers.accept-encoding', '$..headers.authorization', '$..headers.connection', '$..headers.host', '$..headers.user-agent', '$..headers.x-localstack-edge', '$..headers.x-localstack-request-url', '$..headers.x-localstack-tgt-api', '$..multiValueHeaders.Accept', '$..multiValueHeaders.Accept-Encoding', '$..multiValueHeaders.Authorization', '$..multiValueHeaders.CloudFront-Forwarded-Proto', '$..multiValueHeaders.CloudFront-Is-Desktop-Viewer', '$..multiValueHeaders.CloudFront-Is-Mobile-Viewer', '$..multiValueHeaders.CloudFront-Is-SmartTV-Viewer', '$..multiValueHeaders.CloudFront-Is-Tablet-Viewer', '$..multiValueHeaders.CloudFront-Viewer-ASN', '$..multiValueHeaders.CloudFront-Viewer-Country', '$..multiValueHeaders.Connection', '$..multiValueHeaders.Host', '$..multiValueHeaders.User-Agent', '$..multiValueHeaders.Via', '$..multiValueHeaders.X-Amz-Cf-Id', '$..multiValueHeaders.X-Amzn-Trace-Id', '$..multiValueHeaders.X-Forwarded-For', '$..multiValueHeaders.X-Forwarded-Port', '$..multiValueHeaders.X-Forwarded-Proto', '$..multiValueHeaders.accept', '$..multiValueHeaders.accept-encoding', '$..multiValueHeaders.authorization', '$..multiValueHeaders.connection', '$..multiValueHeaders.host', '$..multiValueHeaders.user-agent', '$..multiValueHeaders.x-localstack-edge', '$..multiValueHeaders.x-localstack-request-url', '$..multiValueHeaders.x-localstack-tgt-api', '$..pathParameters', '$..requestContext.authorizer.claims', '$..requestContext.domainName', '$..requestContext.extendedRequestId', '$..requestContext.identity.accessKey', '$..requestContext.identity.accountId', '$..requestContext.identity.caller', '$..requestContext.identity.cognitoAuthenticationProvider', '$..requestContext.identity.cognitoAuthenticationType', '$..requestContext.identity.principalOrgId', '$..requestContext.identity.user', '$..requestContext.identity.userArn', '$..stageVariables']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
- "test": "test_validate_initial_setup",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_auth_not_authorized_user",
+ "test": "test_auth_not_authorized_user",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..AuthenticationResult', '$..Session']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_create_cluster",
- "test": "test_create_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
+ "test": "test_force_alias_creation",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16059,8 +14013,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_parameter_group",
- "test": "test_parameter_group",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username",
+ "test": "test_login_with_preferred_username",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16069,48 +14023,38 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_redshift_connector",
- "test": "test_redshift_connector",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_login_with_preferred_username_attr_change",
+ "test": "test_login_with_preferred_username_attr_change",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/route53/test_route53.py::TestRoute53::test_dns_failover_based_on_health_check",
- "test": "test_dns_failover_based_on_health_check",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_password_policy",
+ "test": "test_password_policy",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CallerReference', '$..HealthCheckConfig.EnableSNI', '$..HealthCheckConfig.FullyQualifiedDomainName', '$..HealthCheckConfig.IPAddress', '$..HealthCheckConfig.Port', '$..HealthCheckConfig.Type', '$..ttl']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/route53/test_route53.py::TestRoute53::test_dns_resolution[True]",
- "test": "test_dns_resolution[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/serverlessrepo/test_serverlessrepo.py::TestServerlessRepo::test_crud_applications",
- "test": "test_crud_applications",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_case_insensitive_and_auth_using_srp",
+ "test": "test_signup_case_insensitive_and_auth_using_srp",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/servicediscovery/test_servicediscovery.py::test_dns_namespace_with_and_without_dot[private-test-.com]",
- "test": "test_dns_namespace_with_and_without_dot[private-test-.com]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_signup_with_email_phone_aliases",
+ "test": "test_signup_with_email_phone_aliases",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16119,18 +14063,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/servicediscovery/test_servicediscovery.py::test_dns_namespace_with_and_without_dot[public-test-.com]",
- "test": "test_dns_namespace_with_and_without_dot[public-test-.com]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login",
+ "test": "test_srp_login",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..AccountRecoverySetting']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_cancel_command",
- "test": "test_cancel_command",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_srp_login_after_password_update",
+ "test": "test_srp_login_after_password_update",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16139,28 +14083,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_describe_instance_information",
- "test": "test_describe_instance_information",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_attributes_upon_creation[name-False-True]",
+ "test": "test_user_attributes_upon_creation[name-False-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_send_command",
- "test": "test_send_command",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_attributes_upon_creation[phone_number-False-True]",
+ "test": "test_user_attributes_upon_creation[phone_number-False-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/sso_admin/test_sso_admin.py::TestSsoAdmin::test_list_permission_sets",
- "test": "test_list_permission_sets",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_custom_id",
+ "test": "test_user_pool_custom_id",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16169,58 +14113,58 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_interpolation_function[True]",
- "test": "test_interpolation_function[True]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_user_pool_error_messages",
+ "test": "test_user_pool_error_messages",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ColumnInfo..Name']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_multi_records",
- "test": "test_multi_records",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output",
+ "test": "test_application_output",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_query_pagination",
- "test": "test_query_pagination",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_input_processing_configuration",
+ "test": "test_input_processing_configuration",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_timestream_query[db-{short_uid}-table{short_uid}]",
- "test": "test_timestream_query[db-{short_uid}-table{short_uid}]",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_list_and_update_applications",
+ "test": "test_list_and_update_applications",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_unnest_function",
- "test": "test_unnest_function",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_tag_list_tag_untag_resource",
+ "test": "test_tag_list_tag_untag_resource",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ColumnInfo..Name']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_basic_transfer_api",
- "test": "test_basic_transfer_api",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_application_output",
+ "test": "test_application_output",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16229,8 +14173,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_ftp_ssl_transfer",
- "test": "test_ftp_ssl_transfer",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_input_processing_configuration",
+ "test": "test_input_processing_configuration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16239,8 +14183,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_ftp_transfer",
- "test": "test_ftp_transfer",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_list_and_update_applications",
+ "test": "test_list_and_update_applications",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16249,8 +14193,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/xray/test_xray.py::TestXRay::test_put_and_get_trace_segments",
- "test": "test_put_and_get_trace_segments",
+ "node_id": "LocalStack Pro: tests/aws/services/kinesisanalyticsv2/test_kinesisanalyticsv2.py::TestKinesisAnalyticsV2Provider::test_tag_list_tag_untag_resource",
+ "test": "test_tag_list_tag_untag_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16259,8 +14203,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/integration/test_crypto.py::test_encrypt_via_aws_encryption_sdk",
- "test": "test_encrypt_via_aws_encryption_sdk",
+ "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal",
+ "test": "test_stream_journal",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -16269,13 +14213,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
+ "test": "test_force_alias_creation",
"response": "400",
"error": "ConditionalCheckFailedException",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
}
]
@@ -16297,7 +14241,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
diff --git a/data/coverage/dynamodbstreams.json b/data/coverage/dynamodbstreams.json
index 5945d436b9..53436024cd 100644
--- a/data/coverage/dynamodbstreams.json
+++ b/data/coverage/dynamodbstreams.json
@@ -119,6 +119,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency",
"test": "test_data_encoding_consistency",
@@ -144,7 +154,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -329,16 +339,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_dynamodb_stream_handler_deployed",
- "test": "test_dynamodb_stream_handler_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
"test": "test_event_rules_deployed",
@@ -359,16 +359,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_queue_handler_deployed",
- "test": "test_queue_handler_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
"test": "test_s3_bucket_deployed",
@@ -420,26 +410,6 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
- "response": "500",
- "error": "InternalError",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "500",
- "error": "InternalError",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
}
]
}
@@ -627,16 +597,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_dynamodb_stream_handler_deployed",
- "test": "test_dynamodb_stream_handler_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
"test": "test_event_rules_deployed",
@@ -658,8 +618,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_queue_handler_deployed",
- "test": "test_queue_handler_deployed",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_lambda_with_configs_deployed",
+ "test": "test_lambda_with_configs_deployed",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -678,21 +638,21 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
- "test": "test_opensearch_crud",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
+ "test": "test_cfn_lambda_dynamodb_source",
"response": "500",
"error": "InternalError",
- "snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
+ "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
- "test": "test_cfn_lambda_dynamodb_source",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb",
+ "test": "test_deletion_event_source_mapping_with_dynamodb",
"response": "500",
"error": "InternalError",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -778,13 +738,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config",
- "test": "test_dynamodb_event_source_mapping_with_on_failure_destination_config",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
+ "test": "test_s3_bucket_deployed",
"response": "500",
"error": "InternalError",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
}
],
@@ -813,6 +773,16 @@
},
"ShardIterator": {
"ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_data_encoding_consistency",
"test": "test_data_encoding_consistency",
@@ -828,7 +798,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -874,7 +844,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -903,6 +873,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator",
"test": "test_dynamodb_stream_shard_iterator",
diff --git a/data/coverage/ec2.json b/data/coverage/ec2.json
index e8724f406c..e8b30ee34d 100644
--- a/data/coverage/ec2.json
+++ b/data/coverage/ec2.json
@@ -152,7 +152,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -596,7 +596,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -774,11 +774,11 @@
"CreateDhcpOptions": {
"implemented": true,
"availability": "community",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -1400,7 +1400,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1436,7 +1436,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1448,7 +1448,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1710,11 +1710,11 @@
"DeleteDhcpOptions": {
"implemented": true,
"availability": "community",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -2288,7 +2288,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2324,7 +2324,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2336,7 +2336,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2862,11 +2862,11 @@
"DescribeDhcpOptions": {
"implemented": true,
"availability": "community",
- "internal_test_suite": false,
+ "internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -4004,7 +4004,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -4040,7 +4040,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -4478,6 +4478,18 @@
"snapshot_skipped": ""
}
},
+ {
+ "DisableImage": {
+ "implemented": false,
+ "availability": "",
+ "internal_test_suite": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "snapshot_skipped": ""
+ }
+ },
{
"DisableImageBlockPublicAccess": {
"implemented": false,
@@ -4532,7 +4544,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -4712,7 +4724,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -4802,6 +4814,18 @@
"snapshot_skipped": ""
}
},
+ {
+ "EnableImage": {
+ "implemented": false,
+ "availability": "",
+ "internal_test_suite": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "snapshot_skipped": ""
+ }
+ },
{
"EnableImageBlockPublicAccess": {
"implemented": false,
@@ -6080,7 +6104,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -6980,7 +7004,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -7075,8 +7099,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -7088,7 +7112,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -7100,7 +7124,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -7167,7 +7191,7 @@
}
},
{
- "DisableImage": {
+ "DescribeCapacityBlockOfferings": {
"implemented": true,
"availability": "community",
"internal_test_suite": false,
@@ -7179,7 +7203,7 @@
}
},
{
- "EnableImage": {
+ "PurchaseCapacityBlock": {
"implemented": true,
"availability": "community",
"internal_test_suite": false,
@@ -7261,6 +7285,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -7326,7 +7360,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7336,7 +7370,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7355,7 +7389,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -7365,7 +7399,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_route_table_association",
@@ -7387,7 +7421,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -7397,7 +7431,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -7407,7 +7441,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -7417,7 +7451,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -7427,7 +7461,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -7437,7 +7471,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -7447,7 +7491,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -7457,7 +7501,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -7467,7 +7511,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -7514,20 +7558,20 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -7543,7 +7587,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_associate_and_disassociate_vpc_cidr_block",
@@ -7667,6 +7711,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -7742,7 +7796,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7752,7 +7806,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7824,7 +7878,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7866,6 +7920,16 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -8122,6 +8186,22 @@
]
}
},
+ "CreateDhcpOptions": {
+ "DhcpConfigurations, TagSpecifications": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"CreateInternetGateway": {
"- (without any parameters)": {
"ls_community": [
@@ -8133,7 +8213,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
@@ -8143,7 +8223,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -8155,7 +8235,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -8209,7 +8289,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -8221,7 +8301,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -8231,7 +8311,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
@@ -8241,7 +8321,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -8251,7 +8331,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -8261,7 +8341,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -8271,7 +8361,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -8281,7 +8371,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -8291,27 +8381,27 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -8425,7 +8515,17 @@
"snapshot_skipped": "['$..CreatedBy', '$..LaunchTemplateId', '$..LaunchTemplateName', '$..PhysicalResourceId', '$..Tags', '$..StackId', '$..StackName']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -8471,7 +8571,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -8525,7 +8625,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -8535,7 +8635,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -8545,7 +8645,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -8555,7 +8655,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -8565,7 +8675,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -8575,27 +8685,27 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -8816,52 +8926,52 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
+ "test": "test_servicediscovery_ecs_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
+ "test": "test_servicediscovery_ecs_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
+ "test": "test_servicediscovery_ecs_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
+ "test": "test_servicediscovery_ecs_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
+ "test": "test_servicediscovery_ecs_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
@@ -8946,132 +9056,102 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
}
@@ -9231,7 +9311,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -9241,7 +9321,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table",
@@ -9251,7 +9331,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -9263,7 +9343,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -9273,7 +9353,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -9283,7 +9363,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -9293,7 +9373,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -9303,7 +9383,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -9313,7 +9403,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -9323,7 +9413,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -9333,27 +9423,27 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -9369,7 +9459,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables",
@@ -9379,7 +9469,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -9389,7 +9479,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table",
@@ -9399,7 +9489,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -9411,7 +9501,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -9421,7 +9511,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -9431,7 +9521,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -9441,7 +9531,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -9451,7 +9541,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -9461,7 +9561,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -9471,27 +9571,27 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -9527,7 +9627,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -9537,7 +9637,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -9715,7 +9815,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -9725,7 +9825,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -9735,7 +9835,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_deploy_duplicate_security_group",
@@ -9745,7 +9845,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_security_group_ingress_creation",
@@ -9755,7 +9855,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -9765,7 +9865,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -9775,7 +9875,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
@@ -9785,7 +9895,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -9795,7 +9905,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -9805,7 +9915,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -9815,7 +9925,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -9825,7 +9935,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -9952,20 +10062,20 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_appsync_deployed",
@@ -9991,7 +10101,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -10003,7 +10113,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -10013,7 +10123,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
@@ -10023,7 +10133,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -10033,7 +10143,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -10043,7 +10153,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -10053,7 +10163,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
@@ -10063,7 +10183,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -10073,7 +10193,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -10083,27 +10203,27 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -10117,7 +10237,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -10129,7 +10249,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -10139,7 +10259,7 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -10149,7 +10269,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -10159,17 +10279,17 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -10179,7 +10299,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -10325,7 +10445,7 @@
"snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -10421,7 +10541,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_table_associations",
@@ -10431,7 +10551,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables",
@@ -10441,7 +10561,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
@@ -10451,7 +10571,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table",
@@ -10461,7 +10581,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -10471,7 +10591,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_route_table_association",
@@ -10549,8 +10669,8 @@
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
@@ -10673,7 +10793,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
@@ -10683,7 +10803,7 @@
"snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_deploy_duplicate_security_group",
@@ -10693,7 +10813,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_security_group_ingress_creation",
@@ -10703,7 +10823,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_cidr_block_configurations",
@@ -10713,7 +10833,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -10723,7 +10843,7 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -10733,17 +10853,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_associate_and_disassociate_vpc_cidr_block",
@@ -10763,7 +10883,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -10827,7 +10947,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -10841,7 +10961,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -10853,7 +10973,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -10863,7 +10983,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -10873,7 +10993,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -10883,7 +11003,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -10893,7 +11013,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -10903,27 +11023,27 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -10937,7 +11057,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
@@ -10947,7 +11077,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -10963,7 +11093,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -11033,7 +11163,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -11049,7 +11179,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -11086,15 +11216,31 @@
]
}
},
+ "DeleteDhcpOptions": {
+ "DhcpOptionsId": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"DeleteInternetGateway": {
"InternetGatewayId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -11155,7 +11301,17 @@
"snapshot_skipped": "['$..CreatedBy', '$..LaunchTemplateId', '$..LaunchTemplateName', '$..PhysicalResourceId', '$..Tags', '$..StackId', '$..StackName']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -11171,7 +11327,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -11181,7 +11337,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -11191,7 +11347,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -11201,7 +11357,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -11211,7 +11367,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -11221,7 +11387,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -11231,14 +11397,24 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -11251,17 +11427,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -11270,11 +11446,11 @@
"NetworkAclId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -11293,7 +11469,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -11303,7 +11479,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -11313,7 +11489,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table",
@@ -11323,10 +11499,20 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
"test": "test_rds_lambda",
@@ -11335,7 +11521,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -11345,7 +11531,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -11355,7 +11541,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -11365,7 +11551,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -11375,7 +11561,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -11385,7 +11571,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -11395,7 +11581,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -11405,7 +11591,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -11415,7 +11601,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -11425,7 +11611,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -11435,7 +11621,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -11445,7 +11631,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -11455,7 +11641,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -11465,7 +11651,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -11475,7 +11661,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -11485,7 +11671,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -11495,7 +11681,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -11505,7 +11691,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -11515,7 +11701,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -11525,7 +11711,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -11535,7 +11721,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -11545,7 +11731,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -11555,7 +11741,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -11565,7 +11751,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -11575,7 +11761,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -11585,7 +11771,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -11595,7 +11781,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -11605,7 +11791,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -11615,7 +11801,47 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -11625,7 +11851,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -11635,7 +11861,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -11645,7 +11871,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -11655,47 +11881,47 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -11771,7 +11997,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables",
@@ -11781,7 +12007,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables",
@@ -11791,7 +12017,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables",
@@ -11801,7 +12027,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -11811,7 +12037,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -11821,7 +12047,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -11831,7 +12057,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -11841,7 +12067,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table",
@@ -11851,7 +12077,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -11915,6 +12141,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -11946,18 +12182,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
- "test": "test_query",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
+ "test": "test_query",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -11970,7 +12216,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -11983,7 +12229,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -11993,7 +12239,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -12003,7 +12249,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -12013,7 +12259,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -12023,7 +12269,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -12033,7 +12279,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -12043,7 +12289,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -12053,7 +12299,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -12063,7 +12309,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -12073,7 +12319,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -12083,7 +12329,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -12093,7 +12339,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -12103,7 +12349,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -12113,7 +12359,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -12123,7 +12369,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -12133,7 +12379,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -12143,7 +12389,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -12153,7 +12399,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -12163,7 +12409,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -12173,7 +12419,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -12183,7 +12429,67 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -12193,7 +12499,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -12203,7 +12509,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -12213,7 +12519,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -12223,7 +12529,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -12233,7 +12539,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -12243,7 +12549,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -12253,7 +12559,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -12263,7 +12569,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -12273,7 +12579,47 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -12283,7 +12629,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -12293,7 +12639,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -12303,7 +12649,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -12313,47 +12659,47 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -12491,7 +12837,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -12501,7 +12847,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -12511,7 +12857,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_deploy_duplicate_security_group",
@@ -12521,7 +12867,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_security_group_ingress_creation",
@@ -12531,7 +12877,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -12541,7 +12887,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -12551,7 +12897,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
@@ -12561,7 +12917,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -12571,7 +12927,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -12581,7 +12937,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -12591,7 +12947,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -12601,7 +12957,17 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
@@ -12684,11 +13050,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -12701,17 +13067,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_glacier_deployed",
@@ -12737,7 +13103,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -12747,7 +13113,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_route_table_association",
@@ -12889,7 +13255,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -12899,7 +13265,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
@@ -12909,7 +13275,7 @@
"snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -12919,7 +13285,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
@@ -12929,7 +13295,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -12939,7 +13305,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -12949,7 +13315,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -12959,7 +13325,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
@@ -12969,7 +13345,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -12979,7 +13355,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -12989,7 +13365,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -12999,7 +13375,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -13009,17 +13385,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -13029,14 +13405,24 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13049,7 +13435,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_subnet_group",
@@ -13066,10 +13452,10 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -13085,7 +13471,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_table_associations",
@@ -13095,7 +13481,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_tables",
@@ -13105,7 +13491,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
@@ -13115,7 +13501,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -13125,7 +13511,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_route_table",
@@ -13135,7 +13521,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -13145,7 +13531,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_route_table_association",
@@ -13223,8 +13609,8 @@
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
@@ -13337,7 +13723,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -13347,7 +13733,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
@@ -13357,7 +13743,7 @@
"snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -13367,7 +13753,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_deploy_duplicate_security_group",
@@ -13377,7 +13763,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_security_group_ingress_creation",
@@ -13387,7 +13773,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_cidr_block_configurations",
@@ -13397,7 +13783,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
@@ -13407,7 +13793,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -13417,7 +13803,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -13427,7 +13813,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -13437,7 +13823,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
@@ -13447,7 +13843,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -13457,7 +13853,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -13467,7 +13863,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -13477,7 +13873,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -13487,17 +13883,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_associate_and_disassociate_vpc_cidr_block",
@@ -13517,14 +13913,24 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13537,7 +13943,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_subnet_group",
@@ -13554,10 +13960,10 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_glacier_deployed",
@@ -13583,7 +13989,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -13664,8 +14070,8 @@
"AttributeNames": {
"ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/opensearch/test_opensearch.py::TestOpensearchProvider::test_list_versions",
- "test": "test_list_versions",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_firehose_extended_s3",
+ "test": "test_firehose_extended_s3",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -13676,6 +14082,22 @@
]
}
},
+ "DescribeDhcpOptions": {
+ "DhcpOptionsIds": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_dhcp_options",
+ "test": "test_dhcp_options",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Tags', '$..OwnerId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"DescribeImages": {
"- (without any parameters)": {
"ls_pro": [
@@ -13881,6 +14303,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -13916,7 +14348,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13926,7 +14358,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14027,6 +14459,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -14062,7 +14504,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14072,7 +14514,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14113,16 +14555,6 @@
"DescribeLaunchTemplates": {
"LaunchTemplateIds": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[id]",
- "test": "test_modify_launch_template[id]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[id]",
"test": "test_modify_launch_template[id]",
@@ -14133,16 +14565,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[name]",
- "test": "test_modify_launch_template[name]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_modify_launch_template[name]",
"test": "test_modify_launch_template[name]",
@@ -14178,6 +14600,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -14235,6 +14667,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -14260,7 +14702,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14270,7 +14712,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14320,11 +14762,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14517,6 +14959,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -14572,7 +15024,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14592,7 +15044,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14602,7 +15054,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14797,6 +15249,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -14832,7 +15294,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -14842,7 +15304,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -15033,6 +15495,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -15088,7 +15560,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -15103,6 +15575,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
"test": "test_query",
@@ -15118,7 +15600,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -15249,6 +15731,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -15284,7 +15776,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -15294,7 +15786,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -15631,6 +16123,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -15716,7 +16218,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -15726,7 +16228,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -15846,7 +16348,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -15856,7 +16358,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -15986,7 +16488,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -15996,7 +16498,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -16196,7 +16698,7 @@
"test": "test_serverless_no_custom_cluster_endpoint",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -16261,16 +16763,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[10.23]",
"test": "test_postgres_extension_query_export_to_s3[10.23]",
@@ -16516,7 +17008,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -16536,7 +17028,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -16546,7 +17038,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -16556,7 +17048,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -16667,6 +17159,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -16722,7 +17224,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -16732,7 +17234,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -17059,6 +17561,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -17114,7 +17626,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -17234,7 +17746,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -17244,7 +17756,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -17261,7 +17773,7 @@
"snapshot_skipped": "['$..endpointConfiguration.types', '$..policy.Statement..Resource']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_vpc_config",
@@ -17271,7 +17783,7 @@
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -17283,17 +17795,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -17791,6 +18303,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -17862,8 +18384,428 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
- "test": "test_secretsmanager_target_attachment_maridab",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
+ "test": "test_secretsmanager_target_attachment_maridab",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
+ "test": "test_create_misc_resources",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
+ "test": "test_create_misc_resources",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
+ "test": "test_create_query_db",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db_with_port",
+ "test": "test_create_query_db_with_port",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
+ "test": "test_create_app_in_k3s_cluster",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
+ "test": "test_alb_modify_attributes",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
+ "test": "test_alb_set_ip_address_type",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
+ "test": "test_describe_load_balancers",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
+ "test": "test_route53_elb_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -17872,108 +18814,108 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
- "test": "test_create_misc_resources",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-False-source_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/test_api.py::TestAPI::test_create_misc_resources",
- "test": "test_create_misc_resources",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
- "test": "test_create_query_db",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db_with_port",
- "test": "test_create_query_db_with_port",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
- "test": "test_create_app_in_k3s_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
- "test": "test_alb_modify_attributes",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTP-True]",
+ "test": "test_target_group_healthcheck_interval[HTTP-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
- "test": "test_alb_set_ip_address_type",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTPS-True]",
+ "test": "test_target_group_healthcheck_interval[HTTPS-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
- "test": "test_describe_load_balancers",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP_UDP-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
- "test": "test_route53_elb_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TLS-False]",
+ "test": "test_target_group_healthcheck_interval[TLS-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -17982,8 +18924,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[UDP-False]",
+ "test": "test_target_group_healthcheck_interval[UDP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -18186,7 +19128,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -18196,7 +19138,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -18326,7 +19268,7 @@
"test": "test_create_aurora_v2_cluster",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -18336,7 +19278,7 @@
"test": "test_create_aurora_v2_cluster_delete_instances",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -18536,7 +19478,7 @@
"test": "test_serverless_no_custom_cluster_endpoint",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
+ "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -18601,16 +19543,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[10.23]",
"test": "test_postgres_extension_query_export_to_s3[10.23]",
@@ -18856,7 +19788,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -18876,7 +19808,7 @@
"test": "test_promote_secondary_headless",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -18886,7 +19818,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -18896,7 +19828,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -19010,11 +19942,11 @@
"InternetGatewayId, VpcId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -19079,7 +20011,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_cfn_with_multiple_route_table_associations",
@@ -19089,7 +20021,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -19099,7 +20031,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -19109,7 +20041,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -19119,7 +20051,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_creates_default_sg",
@@ -19129,7 +20061,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/ec2/test_ec2.py::TestEc2Integrations::test_create_route_table_association",
@@ -19203,6 +20135,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -19234,11 +20176,21 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -19258,7 +20210,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -19271,7 +20223,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19281,7 +20233,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19291,7 +20243,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19301,7 +20253,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -19311,7 +20263,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -19321,7 +20273,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -19331,7 +20283,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -19341,7 +20293,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -19351,7 +20303,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -19361,7 +20313,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -19371,7 +20323,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -19381,7 +20333,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -19391,7 +20343,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -19401,7 +20353,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19411,7 +20363,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19421,7 +20373,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19431,7 +20383,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19441,7 +20393,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -19451,7 +20403,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -19461,7 +20413,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -19471,7 +20423,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -19481,7 +20433,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -19491,7 +20443,7 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -19501,7 +20453,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -19511,7 +20463,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -19521,7 +20473,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -19531,7 +20483,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -19541,7 +20493,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -19551,7 +20503,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -19561,7 +20513,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -19571,7 +20523,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -19581,7 +20533,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -19591,7 +20543,47 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -19601,7 +20593,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -19611,7 +20603,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -19621,7 +20613,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -19631,47 +20623,47 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "400",
"error": "CommonServiceException",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -19697,7 +20689,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -19877,6 +20869,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
"test": "test_cluster_with_replication",
@@ -19922,7 +20924,7 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -19942,7 +20944,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -19952,7 +20954,7 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -19994,11 +20996,11 @@
"AllocationId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -20015,7 +21017,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -20025,7 +21027,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -20035,7 +21037,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -20045,7 +21047,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20055,7 +21057,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -20065,7 +21077,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -20075,7 +21087,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
@@ -20085,17 +21107,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/ecr.json b/data/coverage/ecr.json
index 5f275abb13..70c7e98bfe 100644
--- a/data/coverage/ecr.json
+++ b/data/coverage/ecr.json
@@ -40,10 +40,10 @@
},
{
"BatchGetRepositoryScanningConfiguration": {
- "implemented": false,
- "availability": "",
+ "implemented": true,
+ "availability": "pro",
"internal_test_suite": false,
- "external_test_suite": false,
+ "external_test_suite": true,
"terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
@@ -400,11 +400,11 @@
},
{
"PutRegistryScanningConfiguration": {
- "implemented": false,
- "availability": "",
+ "implemented": true,
+ "availability": "pro",
"internal_test_suite": false,
- "external_test_suite": false,
- "terraform_test_suite": false,
+ "external_test_suite": true,
+ "terraform_test_suite": true,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -743,7 +743,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -753,7 +753,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1063,7 +1063,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecr/test_ecr.py::TestECR::test_auth_token_in_different_regions",
@@ -1233,7 +1233,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_ecr_eks_integration",
diff --git a/data/coverage/ecs.json b/data/coverage/ecs.json
index 76692fe085..45b6dafd87 100644
--- a/data/coverage/ecs.json
+++ b/data/coverage/ecs.json
@@ -687,7 +687,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -717,7 +717,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -727,7 +727,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -737,7 +737,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestClustersCrud::test_cluster_capacity_providers",
@@ -777,7 +777,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -973,7 +973,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -987,7 +987,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1001,7 +1001,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1111,7 +1111,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1127,7 +1127,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -1137,7 +1137,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -1147,7 +1147,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestClustersCrud::test_cluster_capacity_providers",
@@ -1177,7 +1177,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -1388,6 +1388,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1403,7 +1413,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -1413,7 +1423,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestServiceCrud::test_create_delete_service",
@@ -1433,7 +1443,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -1590,7 +1600,7 @@
"test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1600,7 +1610,7 @@
"test": "test_create_task_definition_validation[test-container-alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1610,7 +1620,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:3.12-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1620,7 +1630,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:latest-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1630,7 +1640,27 @@
"test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1640,7 +1670,7 @@
"test": "test_create_task_definition_validation[test-container-docker.io/nginx-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1650,7 +1680,7 @@
"test": "test_create_task_definition_validation[test-container-library/alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1660,7 +1690,27 @@
"test": "test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1695,6 +1745,166 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "test": "test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
+ "test": "test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4]",
+ "test": "test_loose_image_name_regex[4]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
+ "test": "test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[Bj1O3Eca4TbwL0rDcG3ygAf7McQ3gt_tg_R-qX1H1yDB71b35wABQsegTXbQ5qrkPM7Tr0ygOXgK6ZNDOAf4wREWc91mJQyxTab-GfSkorRKiA7NU21nSOnc4KmJhjFsHBZijJQ-6]",
+ "test": "test_loose_image_name_regex[Bj1O3Eca4TbwL0rDcG3ygAf7McQ3gt_tg_R-qX1H1yDB71b35wABQsegTXbQ5qrkPM7Tr0ygOXgK6ZNDOAf4wREWc91mJQyxTab-GfSkorRKiA7NU21nSOnc4KmJhjFsHBZijJQ-6]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
+ "test": "test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
+ "test": "test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "test": "test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "test": "test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "test": "test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
+ "test": "test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
+ "test": "test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
+ "test": "test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
+ "test": "test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "test": "test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "test": "test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_tag_task_definition",
"test": "test_tag_task_definition",
@@ -2905,7 +3115,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestClustersCrud::test_cluster_capacity_providers",
@@ -2947,7 +3157,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2961,7 +3171,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -3083,7 +3293,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3198,7 +3408,7 @@
"test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3208,7 +3418,7 @@
"test": "test_create_task_definition_validation[test-container-alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3218,7 +3428,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:3.12-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3228,7 +3438,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:latest-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3238,7 +3448,27 @@
"test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3248,7 +3478,7 @@
"test": "test_create_task_definition_validation[test-container-docker.io/nginx-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3258,7 +3488,7 @@
"test": "test_create_task_definition_validation[test-container-library/alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3268,7 +3498,27 @@
"test": "test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3293,6 +3543,166 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "test": "test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
+ "test": "test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4]",
+ "test": "test_loose_image_name_regex[4]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
+ "test": "test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[Bj1O3Eca4TbwL0rDcG3ygAf7McQ3gt_tg_R-qX1H1yDB71b35wABQsegTXbQ5qrkPM7Tr0ygOXgK6ZNDOAf4wREWc91mJQyxTab-GfSkorRKiA7NU21nSOnc4KmJhjFsHBZijJQ-6]",
+ "test": "test_loose_image_name_regex[Bj1O3Eca4TbwL0rDcG3ygAf7McQ3gt_tg_R-qX1H1yDB71b35wABQsegTXbQ5qrkPM7Tr0ygOXgK6ZNDOAf4wREWc91mJQyxTab-GfSkorRKiA7NU21nSOnc4KmJhjFsHBZijJQ-6]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
+ "test": "test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
+ "test": "test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "test": "test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "test": "test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "test": "test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
+ "test": "test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
+ "test": "test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
+ "test": "test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
+ "test": "test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "test": "test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "test": "test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_tag_task_definition",
"test": "test_tag_task_definition",
@@ -3348,7 +3758,7 @@
"test": "test_create_task_definition_validation[$test-container-alpine-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3358,7 +3768,7 @@
"test": "test_create_task_definition_validation[@test-container-alpine-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3368,7 +3778,7 @@
"test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3378,7 +3788,7 @@
"test": "test_create_task_definition_validation[test container-alpine-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3388,7 +3798,7 @@
"test": "test_create_task_definition_validation[test-container-@library/alpine:latest-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3398,7 +3808,7 @@
"test": "test_create_task_definition_validation[test-container-alpin e:3.12.0-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3408,7 +3818,7 @@
"test": "test_create_task_definition_validation[test-container-alpine 3.12.0-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3418,7 +3828,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3428,7 +3838,7 @@
"test": "test_create_task_definition_validation[test-container-alpine@3.12.0-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3438,7 +3848,47 @@
"test": "test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@s-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@s-False]",
+ "response": "400",
+ "error": "ClientException",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "response": "400",
+ "error": "ClientException",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "response": "400",
+ "error": "ClientException",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha512:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha512:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "response": "400",
+ "error": "ClientException",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3448,7 +3898,7 @@
"test": "test_create_task_definition_validation[test-container-library/@alpine:latest-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3458,7 +3908,7 @@
"test": "test_create_task_definition_validation[test-container-library/alpine@latest-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3468,7 +3918,7 @@
"test": "test_create_task_definition_validation[test-container-library/image@name-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3478,7 +3928,7 @@
"test": "test_create_task_definition_validation[test-container-library/image@name:latest-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3488,7 +3938,7 @@
"test": "test_create_task_definition_validation[test@container-alpine-False]",
"response": "400",
"error": "ClientException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3649,16 +4099,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "ClusterNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
"test": "test_servicediscovery_ecs_integration",
@@ -3678,16 +4118,6 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "500",
- "error": "InternalError",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
}
]
},
@@ -3996,16 +4426,6 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_ecs_task_multiple",
- "test": "test_ecs_task_multiple",
- "response": "500",
- "error": "InternalError",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
}
]
}
@@ -4055,6 +4475,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
"test": "test_servicediscovery_ecs_integration",
@@ -4114,36 +4544,6 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "ServerException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "ServerException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "ClusterNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
}
]
},
diff --git a/data/coverage/efs.json b/data/coverage/efs.json
index 030fe55d22..9157f79929 100644
--- a/data/coverage/efs.json
+++ b/data/coverage/efs.json
@@ -391,7 +391,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -497,7 +497,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/efs/test_efs.py::TestEfsFileSystemCrud::test_access_point",
diff --git a/data/coverage/eks.json b/data/coverage/eks.json
index f9d79ce133..4767fba35e 100644
--- a/data/coverage/eks.json
+++ b/data/coverage/eks.json
@@ -55,8 +55,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -66,11 +66,11 @@
"CreateNodegroup": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "internal_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -91,8 +91,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -103,8 +103,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -114,11 +114,11 @@
"DeleteNodegroup": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "internal_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -187,8 +187,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -210,11 +210,11 @@
"DescribeNodegroup": {
"implemented": true,
"availability": "pro",
- "internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "internal_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -259,8 +259,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -295,8 +295,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -379,8 +379,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -403,8 +403,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -435,7 +435,7 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
@@ -448,6 +448,20 @@
"origin": "external"
}
]
+ },
+ "clientRequestToken, name, resourcesVpcConfig, roleArn, tags, version": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
}
},
"CreateFargateProfile": {
@@ -461,7 +475,23 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "CreateNodegroup": {
+ "clientRequestToken, clusterName, labels, launchTemplate, nodeRole, nodegroupName, scalingConfig, subnets": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -477,7 +507,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_cluster_default_version",
@@ -503,7 +543,23 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DeleteNodegroup": {
+ "clusterName, nodegroupName": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -521,6 +577,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
"test": "test_create_app_in_k3s_cluster",
@@ -560,6 +626,32 @@
]
}
},
+ "DescribeNodegroup": {
+ "clusterName, nodegroupName": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "404",
+ "error": "ResourceNotFoundException",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"ListClusters": {
"include": {
"ls_pro": [
diff --git a/data/coverage/elasticache.json b/data/coverage/elasticache.json
index 55794a7c74..bb9127041f 100644
--- a/data/coverage/elasticache.json
+++ b/data/coverage/elasticache.json
@@ -807,7 +807,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -835,14 +835,14 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
"CacheClusterId, CacheNodeType, Engine": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
"test": "test_create_delete_multiple_clusters",
"response": "200",
"error": "",
@@ -852,7 +852,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_standalone",
"test": "test_redis_standalone",
"response": "200",
"error": "",
@@ -880,7 +880,7 @@
"CacheClusterId, CacheNodeType, Engine, Port": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_cluster_custom_port",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_cluster_custom_port",
"test": "test_cache_cluster_custom_port",
"response": "200",
"error": "",
@@ -894,7 +894,7 @@
"CacheClusterId, CacheNodeType, Engine, ReplicationGroupId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
"test": "test_replication_group",
"response": "404",
"error": "ReplicationGroupNotFoundFault",
@@ -924,7 +924,7 @@
"CacheParameterGroupFamily, CacheParameterGroupName, Description": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_parameter_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_parameter_groups",
"test": "test_cache_parameter_groups",
"response": "200",
"error": "",
@@ -945,7 +945,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -961,7 +961,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -977,10 +977,10 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_subnet_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_subnet_groups",
"test": "test_cache_subnet_groups",
"response": "200",
"error": "",
@@ -1001,7 +1001,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1017,14 +1017,14 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
"CacheNodeType, Engine, GlobalReplicationGroupId, ReplicationGroupDescription, ReplicationGroupId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
"test": "test_replication_group",
"response": "200",
"error": "",
@@ -1038,7 +1038,7 @@
"CacheNodeType, Engine, NumCacheClusters, NumNodeGroups, ReplicationGroupDescription, ReplicationGroupId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-1]",
"test": "test_redis_cluster_mode[0-1]",
"response": "200",
"error": "",
@@ -1048,7 +1048,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-1]",
"test": "test_redis_cluster_mode[1-1]",
"response": "200",
"error": "",
@@ -1062,7 +1062,7 @@
"CacheNodeType, Engine, NumNodeGroups, ReplicasPerNodeGroup, ReplicationGroupDescription, ReplicationGroupId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-2]",
"test": "test_redis_cluster_mode[0-2]",
"response": "200",
"error": "",
@@ -1072,7 +1072,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-4]",
"test": "test_redis_cluster_mode[0-4]",
"response": "200",
"error": "",
@@ -1082,7 +1082,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-2]",
"test": "test_redis_cluster_mode[1-2]",
"response": "200",
"error": "",
@@ -1092,7 +1092,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-4]",
"test": "test_redis_cluster_mode[1-4]",
"response": "200",
"error": "",
@@ -1143,7 +1143,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -1153,10 +1153,10 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_cluster_custom_port",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_cluster_custom_port",
"test": "test_cache_cluster_custom_port",
"response": "200",
"error": "",
@@ -1166,7 +1166,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
"test": "test_create_delete_multiple_clusters",
"response": "200",
"error": "",
@@ -1176,7 +1176,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_standalone",
"test": "test_redis_standalone",
"response": "200",
"error": "",
@@ -1186,7 +1186,17 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
"test": "test_create_delete_multiple_clusters",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1196,7 +1206,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
"test": "test_create_delete_multiple_clusters",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1206,7 +1216,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
"test": "test_create_delete_multiple_clusters",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1216,7 +1226,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
"test": "test_create_delete_multiple_clusters",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1226,7 +1236,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-1]",
"test": "test_redis_cluster_mode[0-1]",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1236,7 +1246,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-2]",
"test": "test_redis_cluster_mode[0-2]",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1246,7 +1256,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-4]",
"test": "test_redis_cluster_mode[0-4]",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1256,7 +1266,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-1]",
"test": "test_redis_cluster_mode[1-1]",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1266,7 +1276,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-2]",
"test": "test_redis_cluster_mode[1-2]",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1276,7 +1286,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-4]",
"test": "test_redis_cluster_mode[1-4]",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1286,7 +1296,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_standalone",
"test": "test_redis_standalone",
"response": "404",
"error": "CacheClusterNotFoundFault",
@@ -1309,10 +1319,10 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_parameter_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_parameter_groups",
"test": "test_cache_parameter_groups",
"response": "200",
"error": "",
@@ -1335,7 +1345,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1351,7 +1361,7 @@
"snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
@@ -1361,10 +1371,10 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_subnet_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_subnet_groups",
"test": "test_cache_subnet_groups",
"response": "200",
"error": "",
@@ -1372,6 +1382,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -1387,10 +1407,10 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-1]",
"test": "test_redis_cluster_mode[0-1]",
"response": "200",
"error": "",
@@ -1400,7 +1420,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-2]",
"test": "test_redis_cluster_mode[0-2]",
"response": "200",
"error": "",
@@ -1410,7 +1430,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-4]",
"test": "test_redis_cluster_mode[0-4]",
"response": "200",
"error": "",
@@ -1420,7 +1440,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-1]",
"test": "test_redis_cluster_mode[1-1]",
"response": "200",
"error": "",
@@ -1430,7 +1450,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-2]",
"test": "test_redis_cluster_mode[1-2]",
"response": "200",
"error": "",
@@ -1440,7 +1460,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-4]",
"test": "test_redis_cluster_mode[1-4]",
"response": "200",
"error": "",
@@ -1450,7 +1470,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
"test": "test_replication_group",
"response": "200",
"error": "",
@@ -1490,7 +1510,17 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
+ "test": "test_cluster_with_replication",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_standalone",
"test": "test_redis_standalone",
"response": "200",
"error": "",
@@ -1501,7 +1531,31 @@
}
]
},
- "MaxRecords": {
+ "CacheClusterId, ShowCacheNodeInfo": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
+ "test": "test_cache_cluster[redis]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..PhysicalResourceId', '$..CacheClusters']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
+ "test": "test_cluster_with_replication",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
+ "MaxRecords, ShowCacheNodeInfo": {
"ls_pro": [
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
@@ -1544,7 +1598,7 @@
"CacheParameterGroupName": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_parameter_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_parameter_groups",
"test": "test_cache_parameter_groups",
"response": "200",
"error": "",
@@ -1560,7 +1614,7 @@
"CacheParameterGroupName": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_parameter_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_parameter_groups",
"test": "test_cache_parameter_groups",
"response": "200",
"error": "",
@@ -1616,7 +1670,7 @@
"CacheSubnetGroupName": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_subnet_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_subnet_groups",
"test": "test_cache_subnet_groups",
"response": "200",
"error": "",
@@ -1646,7 +1700,17 @@
"ReplicationGroupId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cluster_with_replication",
+ "test": "test_cluster_with_replication",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-1]",
"test": "test_redis_cluster_mode[0-1]",
"response": "200",
"error": "",
@@ -1656,7 +1720,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-2]",
"test": "test_redis_cluster_mode[0-2]",
"response": "200",
"error": "",
@@ -1666,7 +1730,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-4]",
"test": "test_redis_cluster_mode[0-4]",
"response": "200",
"error": "",
@@ -1676,7 +1740,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-1]",
"test": "test_redis_cluster_mode[1-1]",
"response": "200",
"error": "",
@@ -1686,7 +1750,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-2]",
"test": "test_redis_cluster_mode[1-2]",
"response": "200",
"error": "",
@@ -1696,7 +1760,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-4]",
"test": "test_redis_cluster_mode[1-4]",
"response": "200",
"error": "",
@@ -1706,7 +1770,7 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
"test": "test_replication_group",
"response": "200",
"error": "",
@@ -1722,7 +1786,7 @@
"CacheClusterId, NumCacheNodes": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_standalone",
"test": "test_redis_standalone",
"response": "200",
"error": "",
@@ -1745,10 +1809,10 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_parameter_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_parameter_groups",
"test": "test_cache_parameter_groups",
"response": "200",
"error": "",
@@ -1764,7 +1828,7 @@
"CacheSubnetGroupDescription, CacheSubnetGroupName": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_subnet_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_subnet_groups",
"test": "test_cache_subnet_groups",
"response": "200",
"error": "",
@@ -1780,7 +1844,7 @@
"ReplicationGroupDescription, ReplicationGroupId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
"test": "test_replication_group",
"response": "200",
"error": "",
diff --git a/data/coverage/elasticbeanstalk.json b/data/coverage/elasticbeanstalk.json
index b8cc4683fa..c1e99ddd36 100644
--- a/data/coverage/elasticbeanstalk.json
+++ b/data/coverage/elasticbeanstalk.json
@@ -69,8 +69,8 @@
"internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -81,20 +81,20 @@
"internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
{
"CreateConfigurationTemplate": {
- "implemented": false,
- "availability": "",
- "internal_test_suite": false,
+ "implemented": true,
+ "availability": "pro",
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -105,8 +105,8 @@
"internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -141,8 +141,8 @@
"internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -153,20 +153,20 @@
"internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
{
"DeleteConfigurationTemplate": {
- "implemented": false,
- "availability": "",
- "internal_test_suite": false,
+ "implemented": true,
+ "availability": "pro",
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -213,8 +213,8 @@
"internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -225,8 +225,8 @@
"internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -244,13 +244,13 @@
},
{
"DescribeConfigurationSettings": {
- "implemented": false,
- "availability": "",
- "internal_test_suite": false,
+ "implemented": true,
+ "availability": "pro",
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -309,8 +309,8 @@
"internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -472,13 +472,13 @@
},
{
"TerminateEnvironment": {
- "implemented": false,
- "availability": "",
- "internal_test_suite": false,
+ "implemented": true,
+ "availability": "pro",
+ "internal_test_suite": true,
"external_test_suite": false,
"terraform_test_suite": false,
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -602,9 +602,37 @@
"origin": "external"
}
]
+ },
+ "ApplicationName, Description": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
}
},
"CreateApplicationVersion": {
+ "ApplicationName, Description, SourceBundle, VersionLabel": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
"ApplicationName, VersionLabel": {
"ls_pro": [
{
@@ -620,7 +648,37 @@
]
}
},
+ "CreateConfigurationTemplate": {
+ "ApplicationName, Description, SolutionStackName, TemplateName": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"CreateEnvironment": {
+ "ApplicationName, CNAMEPrefix, Description, EnvironmentName, OptionSettings, SolutionStackName, VersionLabel": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
"ApplicationName, EnvironmentName": {
"ls_pro": [
{
@@ -639,6 +697,16 @@
"DeleteApplication": {
"ApplicationName": {
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_application_versions",
"test": "test_manage_application_versions",
@@ -675,6 +743,16 @@
"DeleteApplicationVersion": {
"ApplicationName, VersionLabel": {
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_application_versions",
"test": "test_manage_application_versions",
@@ -688,6 +766,22 @@
]
}
},
+ "DeleteConfigurationTemplate": {
+ "ApplicationName, TemplateName": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"DeleteEnvironmentConfiguration": {
"ApplicationName, EnvironmentName": {
"ls_pro": [
@@ -718,11 +812,35 @@
"origin": "external"
}
]
+ },
+ "ApplicationName, VersionLabels": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
}
},
"DescribeApplications": {
"ApplicationNames": {
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_applications",
"test": "test_manage_applications",
@@ -736,9 +854,35 @@
]
}
},
+ "DescribeConfigurationSettings": {
+ "ApplicationName, TemplateName": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
"DescribeEnvironments": {
"ApplicationName, EnvironmentNames": {
"ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_environments",
"test": "test_manage_environments",
@@ -750,6 +894,36 @@
"origin": "external"
}
]
+ },
+ "EnvironmentNames": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "TerminateEnvironment": {
+ "EnvironmentName": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "501",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
}
},
"UpdateApplication": {
diff --git a/data/coverage/elb.json b/data/coverage/elb.json
index b4f5ba9978..fe148ed408 100644
--- a/data/coverage/elb.json
+++ b/data/coverage/elb.json
@@ -247,8 +247,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
diff --git a/data/coverage/elbv2.json b/data/coverage/elbv2.json
index 5bf1cc6250..1d1073b462 100644
--- a/data/coverage/elbv2.json
+++ b/data/coverage/elbv2.json
@@ -260,7 +260,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -272,7 +272,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -295,8 +295,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -322,7 +322,7 @@
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"snapshot_skipped": ""
}
},
@@ -423,7 +423,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -433,7 +433,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
@@ -493,7 +493,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -531,7 +531,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
@@ -555,7 +555,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
@@ -565,7 +565,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -647,7 +647,7 @@
"snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
@@ -673,7 +673,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
@@ -775,7 +775,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -789,7 +789,47 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TLS-False]",
+ "test": "test_target_group_healthcheck_interval[TLS-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[UDP-False]",
+ "test": "test_target_group_healthcheck_interval[UDP-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
@@ -800,11 +840,7 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "HealthCheckPath, HealthCheckProtocol, HealthCheckTimeoutSeconds, HealthyThresholdCount, Name, Port, Protocol, UnhealthyThresholdCount, VpcId": {
- "ls_pro": [
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
"test": "test_target_group_crud",
@@ -814,6 +850,86 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTP-True]",
+ "test": "test_target_group_healthcheck_interval[HTTP-True]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTP-True]",
+ "test": "test_target_group_healthcheck_interval[HTTP-True]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTPS-True]",
+ "test": "test_target_group_healthcheck_interval[HTTPS-True]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTPS-True]",
+ "test": "test_target_group_healthcheck_interval[HTTPS-True]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TLS-False]",
+ "test": "test_target_group_healthcheck_interval[TLS-False]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[UDP-False]",
+ "test": "test_target_group_healthcheck_interval[UDP-False]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -879,7 +995,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
@@ -926,8 +1042,8 @@
"Name, Port, Protocol, VpcId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -936,8 +1052,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[GENEVE]",
- "test": "test_target_group_protocol_default_values[GENEVE]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -946,8 +1062,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTPS]",
- "test": "test_target_group_protocol_default_values[HTTPS]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -956,8 +1072,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTP]",
- "test": "test_target_group_protocol_default_values[HTTP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -966,8 +1082,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP]",
- "test": "test_target_group_protocol_default_values[TCP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -976,8 +1092,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP_UDP]",
- "test": "test_target_group_protocol_default_values[TCP_UDP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -986,8 +1102,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TLS]",
- "test": "test_target_group_protocol_default_values[TLS]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -996,8 +1112,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[UDP]",
- "test": "test_target_group_protocol_default_values[UDP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1006,84 +1122,68 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
- "response": "400",
- "error": "CommonServiceException",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "response": "200",
+ "error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Name, Port, TargetType": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Name, Protocol": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
- "response": "400",
- "error": "CommonServiceException",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Name, Protocol, TargetType": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
- "response": "400",
- "error": "CommonServiceException",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "response": "200",
+ "error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Name, TargetType": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1092,8 +1192,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
- "test": "test_target_group_target_type_default_values[lambda]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1102,58 +1202,48 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
- "response": "400",
- "error": "CommonServiceException",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "response": "200",
+ "error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Name, TargetType, VpcId": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- }
- },
- "DeleteListener": {
- "ListenerArn": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
- "test": "test_create_loadbalancer_rule",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
- "test": "test_route53_elb_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1162,209 +1252,151 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "400",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- }
- ]
- }
- },
- "DeleteLoadBalancer": {
- "LoadBalancerArn": {
- "ls_pro": [
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
- "test": "test_vpc_link",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
- "test": "test_vpc_endpoint_service_configurations",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
+ "snapshot_tested": true,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
- "test": "test_elbv2_loadbalancer_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
- "aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
- "test": "test_alb_modify_attributes",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
- "test": "test_alb_set_ip_address_type",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
- "test": "test_create_load_balancer",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
- "test": "test_create_loadbalancer_rule",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
- "test": "test_describe_load_balancers",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
- "test": "test_route53_elb_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- }
- },
- "DeleteRule": {
- "RuleArn": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
- "test": "test_load_balancing",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-False-source_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
- "test": "test_create_loadbalancer_rule",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- }
- },
- "DeleteTargetGroup": {
- "TargetGroupArn": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
- "test": "test_create_loadbalancer_rule",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1450,45 +1482,47 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
- "test": "test_target_group_target_type_default_values[alb]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[instance]",
- "test": "test_target_group_target_type_default_values[instance]",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
+ "response": "400",
+ "error": "CommonServiceException",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Name, Port, TargetType": {
+ "ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[ip]",
- "test": "test_target_group_target_type_default_values[ip]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Name, Protocol": {
+ "ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
- "test": "test_target_group_target_type_default_values[lambda]",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
+ "response": "400",
+ "error": "CommonServiceException",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Name, Protocol, TargetType": {
+ "ls_pro": [
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
"test": "test_load_balancing",
@@ -1510,8 +1544,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
- "test": "test_route53_elb_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
"response": "400",
"error": "CommonServiceException",
"snapshot_skipped": "",
@@ -1520,69 +1554,59 @@
"origin": "external"
}
]
- }
- },
- "DeregisterTargets": {
- "TargetGroupArn, Targets": {
+ },
+ "Name, TargetType": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
- }
- ]
- }
- },
- "DescribeListeners": {
- "LoadBalancerArn": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
+ "test": "test_target_group_target_type_default_values[lambda]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
+ "response": "400",
+ "error": "CommonServiceException",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
}
]
- }
- },
- "DescribeLoadBalancerAttributes": {
- "LoadBalancerArn": {
+ },
+ "Name, TargetType, VpcId": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
- "test": "test_alb_modify_attributes",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1590,23 +1614,79 @@
]
}
},
- "DescribeLoadBalancers": {
- "- (without any parameters)": {
+ "DeleteListener": {
+ "ListenerArn": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
- "test": "test_vpc_link",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
- "test": "test_vpc_endpoint_service_configurations",
- "response": "200",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
+ "test": "test_create_loadbalancer_rule",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
+ "test": "test_route53_elb_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DeleteLoadBalancer": {
+ "LoadBalancerArn": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
+ "test": "test_vpc_link",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
+ "test": "test_vpc_endpoint_service_configurations",
+ "response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
@@ -1642,69 +1722,57 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- }
- ]
- },
- "LoadBalancerArns": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
- "test": "test_elbv2_loadbalancer_resource",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
+ "test": "test_alb_modify_attributes",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
- "test": "test_describe_load_balancers",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_set_ip_address_type",
+ "test": "test_alb_set_ip_address_type",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Error.Type']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
- "test": "test_failing_describe_load_balancers",
- "response": "400",
- "error": "ValidationError",
- "snapshot_skipped": "",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
- "test": "test_failing_describe_load_balancers",
- "response": "400",
- "error": "ValidationError",
- "snapshot_skipped": "",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_load_balancer",
+ "test": "test_create_load_balancer",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "LoadBalancerArns, Names": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
- "test": "test_failing_describe_load_balancers",
- "response": "400",
- "error": "ValidationError",
- "snapshot_skipped": "",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
+ "test": "test_create_loadbalancer_rule",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Names": {
- "ls_pro": [
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
"test": "test_describe_load_balancers",
@@ -1716,20 +1784,10 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
- "test": "test_failing_describe_load_balancers",
- "response": "400",
- "error": "LoadBalancerNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
- "test": "test_failing_describe_load_balancers",
- "response": "400",
- "error": "LoadBalancerNotFoundException",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
+ "test": "test_route53_elb_integration",
+ "response": "200",
+ "error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
@@ -1738,24 +1796,34 @@
]
}
},
- "DescribeRules": {
- "ListenerArn": {
+ "DeleteRule": {
+ "RuleArn": {
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
+ "test": "test_create_loadbalancer_rule",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
}
]
}
},
- "DescribeTargetGroups": {
- "- (without any parameters)": {
+ "DeleteTargetGroup": {
+ "TargetGroupArn": {
"ls_pro": [
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -1776,36 +1844,40 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- }
- ]
- }
- },
- "DescribeTargetHealth": {
- "TargetGroupArn": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_create_loadbalancer_rule",
+ "test": "test_create_loadbalancer_rule",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..Rules..Actions..TargetGroupArn', '$..Rules..Conditions..Values', '$..LoadBalancers..AvailabilityZones..LoadBalancerAddresses', '$..LoadBalancers..IpAddressType', '$..Listeners..AlpnPolicy', '$..Listeners..DefaultActions..FixedResponseConfig.MessageBody', '$..Listeners..Port', '$..Listeners..SslPolicy', '$..TargetGroups..IpAddressType', '$..TargetGroups..ProtocolVersion']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
- "test": "test_route53_elb_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -1814,95 +1886,1289 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- }
- },
- "ModifyLoadBalancerAttributes": {
- "Attributes, LoadBalancerArn": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
- "test": "test_vpc_link",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
- "test": "test_vpc_endpoint_service_configurations",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
+ "snapshot_tested": true,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
+ "snapshot_tested": true,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
- "test": "test_elbv2_loadbalancer_resource",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
- "test": "test_create_service_run_task",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
- "test": "test_alb_modify_attributes",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- }
- },
- "ModifyTargetGroupAttributes": {
- "Attributes, TargetGroupArn": {
- "ls_pro": [
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
- "test": "test_ecs_alb_apigateway_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TLS-False]",
+ "test": "test_target_group_healthcheck_interval[TLS-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[UDP-False]",
+ "test": "test_target_group_healthcheck_interval[UDP-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[GENEVE]",
+ "test": "test_target_group_protocol_default_values[GENEVE]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTPS]",
+ "test": "test_target_group_protocol_default_values[HTTPS]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTP]",
+ "test": "test_target_group_protocol_default_values[HTTP]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP]",
+ "test": "test_target_group_protocol_default_values[TCP]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP_UDP]",
+ "test": "test_target_group_protocol_default_values[TCP_UDP]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TLS]",
+ "test": "test_target_group_protocol_default_values[TLS]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[UDP]",
+ "test": "test_target_group_protocol_default_values[UDP]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
+ "test": "test_target_group_target_type_default_values[alb]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[instance]",
+ "test": "test_target_group_target_type_default_values[instance]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[ip]",
+ "test": "test_target_group_target_type_default_values[ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
+ "test": "test_target_group_target_type_default_values[lambda]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
+ "test": "test_load_balancing",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..headers.host', '$..headers.user-agent', '$..headers.x-amzn-trace-id', '$..headers.x-forwarded-for', '$..headers.x-forwarded-port', '$..headers.x-forwarded-proto']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
+ "test": "test_route53_elb_integration",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DeregisterTargets": {
+ "TargetGroupArn, Targets": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DescribeListeners": {
+ "LoadBalancerArn": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DescribeLoadBalancerAttributes": {
+ "LoadBalancerArn": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
+ "test": "test_alb_modify_attributes",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DescribeLoadBalancers": {
+ "- (without any parameters)": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
+ "test": "test_vpc_link",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
+ "test": "test_vpc_endpoint_service_configurations",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
+ "test": "test_elbv2_loadbalancer_resource",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ },
+ "LoadBalancerArns": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
+ "test": "test_elbv2_loadbalancer_resource",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
+ "test": "test_describe_load_balancers",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
+ "test": "test_failing_describe_load_balancers",
+ "response": "400",
+ "error": "ValidationError",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
+ "test": "test_failing_describe_load_balancers",
+ "response": "400",
+ "error": "ValidationError",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
+ "LoadBalancerArns, Names": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
+ "test": "test_failing_describe_load_balancers",
+ "response": "400",
+ "error": "ValidationError",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
+ "Names": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_describe_load_balancers",
+ "test": "test_describe_load_balancers",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..LoadBalancers..State.Code']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
+ "test": "test_failing_describe_load_balancers",
+ "response": "400",
+ "error": "LoadBalancerNotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestLoadBalancer::test_failing_describe_load_balancers",
+ "test": "test_failing_describe_load_balancers",
+ "response": "400",
+ "error": "LoadBalancerNotFoundException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DescribeRules": {
+ "ListenerArn": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DescribeTargetGroups": {
+ "- (without any parameters)": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "DescribeTargetHealth": {
+ "TargetGroupArn": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestRoute53Integrations::test_route53_elb_integration",
+ "test": "test_route53_elb_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "ModifyLoadBalancerAttributes": {
+ "Attributes, LoadBalancerArn": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_apigateway.py::test_vpc_link",
+ "test": "test_vpc_link",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..StackId', '$..DriftInformation', '$..Metadata', '$..description', '$..name', '$..statusMessage', '$..tags', '$..targetArns']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ec2.py::test_vpc_endpoint_service_configurations",
+ "test": "test_vpc_endpoint_service_configurations",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
+ "test": "test_elbv2_loadbalancer_resource",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..LoadBalancerAddresses', '$..DNSName', '$..SecurityGroupsOutput']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
+ "test": "test_create_service_run_task",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_alb_modify_attributes",
+ "test": "test_alb_modify_attributes",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..LoadBalancers[0].AvailabilityZones', '$..LoadBalancers[0].IpAddressType', '$..LoadBalancers[0].Scheme', '$..Attributes', \"$.._AttributesDict.'access_logs.s3.enabled'\", \"$.._AttributesDict.'idle_timeout.timeout_seconds'\", \"$.._AttributesDict.'routing.http.x_amzn_tls_version_and_cipher_suite.enabled'\", \"$.._AttributesDict.'routing.http.xff_client_port.enabled'\", \"$.._AttributesDict.'routing.http.xff_header_processing.mode'\", \"$.._AttributesDict.'waf.fail_open.enabled'\"]",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ }
+ },
+ "ModifyTargetGroupAttributes": {
+ "Attributes, TargetGroupArn": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
+ "test": "test_ecs_alb_apigateway_integration",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-False-source_ip_dest_ip_proto]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-app_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-app_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip_dest_ip_proto]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip_dest_ip_proto]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-app_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-source_ip_dest_ip_proto]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-app_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-source_ip_dest_ip_proto]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-app_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip_dest_ip_proto]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-app_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-source_ip_dest_ip_proto]",
+ "response": "400",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
}
]
diff --git a/data/coverage/emr.json b/data/coverage/emr.json
index 489535acd0..6d71a9d04b 100644
--- a/data/coverage/emr.json
+++ b/data/coverage/emr.json
@@ -20,7 +20,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -31,7 +31,7 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
+ "external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
@@ -140,7 +140,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -199,7 +199,7 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
+ "external_test_suite": false,
"terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
@@ -223,8 +223,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -284,7 +284,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -307,8 +307,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -320,7 +320,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -379,8 +379,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -452,7 +452,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -560,7 +560,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -620,7 +620,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
diff --git a/data/coverage/es.json b/data/coverage/es.json
index b70b18ef2b..4ea339bc60 100644
--- a/data/coverage/es.json
+++ b/data/coverage/es.json
@@ -117,8 +117,8 @@
"internal_test_suite": true,
"external_test_suite": true,
"terraform_test_suite": false,
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"snapshot_skipped": ""
}
},
@@ -615,7 +615,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -655,7 +655,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -664,8 +664,8 @@
"DomainName": {
"ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup",
- "test": "test_kinesis_firehose_elasticsearch_s3_backup",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_elasticsearch.py::test_cfn_handle_elasticsearch_domain",
+ "test": "test_cfn_handle_elasticsearch_domain",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -674,24 +674,14 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "409",
- "error": "ResourceNotFoundException",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
- "response": "500",
- "error": "InternalError",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_elasticsearch_s3_backup",
+ "test": "test_kinesis_firehose_elasticsearch_s3_backup",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
diff --git a/data/coverage/events.json b/data/coverage/events.json
index e645e619b9..5fc83fd164 100644
--- a/data/coverage/events.json
+++ b/data/coverage/events.json
@@ -234,10 +234,10 @@
"DescribeConnection": {
"implemented": true,
"availability": "community",
- "internal_test_suite": true,
+ "internal_test_suite": false,
"external_test_suite": true,
"terraform_test_suite": true,
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
}
@@ -310,7 +310,7 @@
"external_test_suite": true,
"terraform_test_suite": true,
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"snapshot_skipped": ""
}
},
@@ -723,7 +723,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -783,7 +783,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
@@ -793,7 +793,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs",
@@ -803,7 +803,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policies",
@@ -813,7 +813,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policy_statement",
@@ -823,7 +823,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -833,7 +833,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_event_with_content_base_rule_in_pattern",
@@ -865,6 +865,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
"test": "test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -955,6 +965,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -1003,7 +1023,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_events_state_machine",
@@ -1023,7 +1043,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -1177,7 +1197,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_api_destinations[auth0]",
@@ -1223,7 +1243,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
@@ -1233,7 +1253,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs",
@@ -1243,7 +1263,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policies",
@@ -1253,7 +1273,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policy_statement",
@@ -1263,7 +1283,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -1273,7 +1293,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_event_with_content_base_rule_in_pattern",
@@ -1305,6 +1325,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
"test": "test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -1385,6 +1415,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -1423,7 +1463,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_events_state_machine",
@@ -1443,7 +1483,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -1573,6 +1613,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_input_path",
"test": "test_put_events_with_input_path",
@@ -1643,6 +1693,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -1719,16 +1779,6 @@
},
"EventBusName, Name": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_logs.py::test_scheduled_rule_logs",
- "test": "test_scheduled_rule_logs",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..eventId', '$..uploadSequenceToken', '$..storedBytes']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_sqs.py::test_scheduled_rule_sqs",
"test": "test_scheduled_rule_sqs",
@@ -1789,6 +1839,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
"test": "test_object_put_acl",
@@ -1964,6 +2024,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_trigger_event_on_ssm_change[standard]",
+ "test": "test_trigger_event_on_ssm_change[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
},
@@ -2100,55 +2170,9 @@
]
}
},
- "DescribeConnection": {
- "Name": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
- "test": "test_cfn_event_bus_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
- }
- },
"DescribeEventBus": {
"Name": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_stacks.py::TestStacksApi::test_list_stack_resources_for_removed_resource",
- "test": "test_list_stack_resources_for_removed_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
- "test": "test_cfn_event_bus_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs",
- "test": "test_event_rule_to_logs",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_eventbus_policies",
"test": "test_eventbus_policies",
@@ -2169,36 +2193,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
- "test": "test_events_sqs_sns_lambda",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
- "test": "test_invoke_lambda_eventbridge",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_nonexistent_event_bus",
"test": "test_put_events_nonexistent_event_bus",
@@ -2276,52 +2270,72 @@
},
"DescribeRule": {
"EventBusName, Name": {
- "ls_community": [
+ "ls_pro": [
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_to_logs",
- "test": "test_event_rule_to_logs",
+ "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestInterServiceCommunicationEnforcement::test_events_sns",
+ "test": "test_events_sns",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Name": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
- "test": "test_events_sqs_sns_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_creation_without_target",
+ "test": "test_event_rule_creation_without_target",
"response": "200",
"error": "",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "DisableRule": {
+ "Name": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
- "test": "test_invoke_lambda_eventbridge",
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_rule_disable",
+ "test": "test_rule_disable",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
- },
+ }
+ ]
+ }
+ },
+ "ListConnections": {
+ "- (without any parameters)": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
+ "test": "test_cfn_event_bus_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
}
- ],
- "ls_pro": [
+ ]
+ }
+ },
+ "ListEventBuses": {
+ "- (without any parameters)": {
+ "ls_community": [
{
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestInterServiceCommunicationEnforcement::test_events_sns",
- "test": "test_events_sns",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
+ "test": "test_cfn_event_bus_resource",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2330,118 +2344,14 @@
"origin": "external"
}
]
- },
- "Name": {
+ }
+ },
+ "ListRules": {
+ "- (without any parameters)": {
"ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule",
- "test": "test_cfn_handle_events_rule",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name",
- "test": "test_cfn_handle_events_rule_without_name",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_event_rule_creation_without_target",
- "test": "test_event_rule_creation_without_target",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- }
- ],
- "ls_pro": [
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
- "test": "test_cdk_trail_cw_logs",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
- }
- },
- "DisableRule": {
- "Name": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_rule_disable",
- "test": "test_rule_disable",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
- }
- },
- "ListConnections": {
- "- (without any parameters)": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
- "test": "test_cfn_event_bus_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
- }
- },
- "ListEventBuses": {
- "- (without any parameters)": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_event_bus_resource",
- "test": "test_cfn_event_bus_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- }
- ]
- }
- },
- "ListRules": {
- "- (without any parameters)": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name",
- "test": "test_cfn_handle_events_rule_without_name",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name",
+ "test": "test_cfn_handle_events_rule_without_name",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -2539,16 +2449,6 @@
"ListTargetsByRule": {
"EventBusName, Rule": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_logs.py::test_scheduled_rule_logs",
- "test": "test_scheduled_rule_logs",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..eventId', '$..uploadSequenceToken', '$..storedBytes']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_sqs.py::test_scheduled_rule_sqs",
"test": "test_scheduled_rule_sqs",
@@ -2609,6 +2509,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
"test": "test_object_put_acl",
@@ -2851,6 +2761,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[create]",
+ "test": "test_conditional_att_to_conditional_resources[create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_att_to_conditional_resources[no-create]",
+ "test": "test_conditional_att_to_conditional_resources[no-create]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/engine/test_conditions.py::TestCloudFormationConditions::test_conditional_in_conditional[dev-us-west-2]",
"test": "test_conditional_in_conditional[dev-us-west-2]",
@@ -3261,6 +3191,26 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_nonexistent_event_bus",
"test": "test_put_events_nonexistent_event_bus",
@@ -3371,6 +3321,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -3441,6 +3401,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_trigger_event_on_ssm_change[standard]",
+ "test": "test_trigger_event_on_ssm_change[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
"test": "test_invoke_lambda_eventbridge",
@@ -3461,6 +3431,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
"test": "test_object_put_acl",
@@ -3933,6 +3913,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticache.py::test_cache_cluster[redis]",
"test": "test_cache_cluster[redis]",
@@ -3953,6 +3943,16 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticloadbalancingv2.py::test_elbv2_loadbalancer_resource",
"test": "test_elbv2_loadbalancer_resource",
@@ -4168,24 +4168,24 @@
"test": "test_create_misc_resources",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
- "test": "test_cdk_trail_cw_logs",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_from_cloudformation",
+ "test": "test_create_from_cloudformation",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_create_trail",
- "test": "test_create_trail",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_function",
+ "test": "test_create_function",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4194,48 +4194,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_filter_lookup_attributes",
- "test": "test_filter_lookup_attributes",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity.accountId', '$..CloudTrailEvent.userIdentity.arn', '$..CloudTrailEvent.userIdentity.type', '$..CloudTrailEvent.userIdentity.userName']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_not_started",
- "test": "test_get_trail_status_of_not_started",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started",
- "test": "test_get_trail_status_of_started",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_invalidation",
+ "test": "test_create_invalidation",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started_and_stopped",
- "test": "test_get_trail_status_of_started_and_stopped",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_access_identity",
+ "test": "test_create_origin_access_identity",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_no_logging_if_no_startup",
- "test": "test_no_logging_if_no_startup",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_origin_request_policy",
+ "test": "test_create_origin_request_policy",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4244,28 +4224,28 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_record_events",
- "test": "test_record_events",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_create_response_headers_policy",
+ "test": "test_create_response_headers_policy",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources']",
+ "snapshot_skipped": "['$..ETag', '$..Error.Message', '$..Message']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_s3_trails",
- "test": "test_s3_trails",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[False]",
+ "test": "test_custom_errors[False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestID', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.resources', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources', '$..NextToken']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_start_stop_updates",
- "test": "test_start_stop_updates",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_custom_errors[True]",
+ "test": "test_custom_errors[True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4274,8 +4254,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_commit_to_non_existing_repository_raises_error",
- "test": "test_commit_to_non_existing_repository_raises_error",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_distribution_with_tags",
+ "test": "test_distribution_with_tags",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4284,8 +4264,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_branch",
- "test": "test_create_branch",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_get_distributions",
+ "test": "test_get_distributions",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4294,8 +4274,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_branch_on_non_existing_repository_raises_error",
- "test": "test_create_branch_on_non_existing_repository_raises_error",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_invalidation_waiter",
+ "test": "test_invalidation_waiter",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4304,8 +4284,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_commit",
- "test": "test_create_commit",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_invoke_distribution",
+ "test": "test_invoke_distribution",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4314,12 +4294,182 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_pull_request",
- "test": "test_create_pull_request",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_origin_access_control",
+ "test": "test_origin_access_control",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_update_distribution",
+ "test": "test_update_distribution",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
+ "test": "test_cdk_trail_cw_logs",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_create_trail",
+ "test": "test_create_trail",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_filter_lookup_attributes",
+ "test": "test_filter_lookup_attributes",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity.accountId', '$..CloudTrailEvent.userIdentity.arn', '$..CloudTrailEvent.userIdentity.type', '$..CloudTrailEvent.userIdentity.userName']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_not_started",
+ "test": "test_get_trail_status_of_not_started",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started",
+ "test": "test_get_trail_status_of_started",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_get_trail_status_of_started_and_stopped",
+ "test": "test_get_trail_status_of_started_and_stopped",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_no_logging_if_no_startup",
+ "test": "test_no_logging_if_no_startup",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_record_events",
+ "test": "test_record_events",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_s3_trails",
+ "test": "test_s3_trails",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..CloudTrailEvent.additionalEventData', '$..CloudTrailEvent.apiVersion', '$..CloudTrailEvent.recipientAccountId', '$..CloudTrailEvent.requestID', '$..CloudTrailEvent.requestParameters.Host', '$..CloudTrailEvent.resources', '$..CloudTrailEvent.tlsDetails', '$..CloudTrailEvent.userIdentity', '$..Resources', '$..NextToken']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_start_stop_updates",
+ "test": "test_start_stop_updates",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_commit_to_non_existing_repository_raises_error",
+ "test": "test_commit_to_non_existing_repository_raises_error",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_branch",
+ "test": "test_create_branch",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_branch_on_non_existing_repository_raises_error",
+ "test": "test_create_branch_on_non_existing_repository_raises_error",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_commit",
+ "test": "test_create_commit",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/codecommit/test_codecommit.py::TestCodeCommit::test_create_pull_request",
+ "test": "test_create_pull_request",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "internal"
},
@@ -4743,16 +4893,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
- "test": "test_force_alias_creation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_get_signing_certificate",
"test": "test_get_signing_certificate",
@@ -5433,16 +5573,6 @@
"snapshot_tested": true,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/dms/test_dms.py::test_dms_rds_kinesis",
- "test": "test_dms_rds_kinesis",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/docdb/test_docdb.py::TestDocDB::test_create_query_db",
"test": "test_create_query_db",
@@ -5543,6 +5673,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_run_stop_start_terminate_instances[cmd-mock]",
+ "test": "test_run_stop_start_terminate_instances[cmd-mock]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_ssh_key_pairs",
"test": "test_ssh_key_pairs",
@@ -6078,7 +6218,7 @@
"test": "test_create_task_definition_validation[$test-container-alpine-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6088,7 +6228,7 @@
"test": "test_create_task_definition_validation[@test-container-alpine-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6098,7 +6238,7 @@
"test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6108,7 +6248,7 @@
"test": "test_create_task_definition_validation[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-alpine-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6118,7 +6258,7 @@
"test": "test_create_task_definition_validation[test container-alpine-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6128,7 +6268,7 @@
"test": "test_create_task_definition_validation[test-container-@library/alpine:latest-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6138,7 +6278,7 @@
"test": "test_create_task_definition_validation[test-container-alpin e:3.12.0-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6148,7 +6288,7 @@
"test": "test_create_task_definition_validation[test-container-alpine 3.12.0-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6158,7 +6298,7 @@
"test": "test_create_task_definition_validation[test-container-alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6168,7 +6308,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:3.12-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6178,7 +6318,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:latest-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6188,7 +6328,7 @@
"test": "test_create_task_definition_validation[test-container-alpine:latest@sha256:1234567890-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6198,7 +6338,7 @@
"test": "test_create_task_definition_validation[test-container-alpine@3.12.0-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6208,7 +6348,7 @@
"test": "test_create_task_definition_validation[test-container-alpine@sha256:1234567890-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -6218,114 +6358,194 @@
"test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-docker.io/nginx-True]",
- "test": "test_create_task_definition_validation[test-container-docker.io/nginx-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/@alpine:latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/@alpine:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine-True]",
- "test": "test_create_task_definition_validation[test-container-library/alpine-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@s-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@s-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine@latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/alpine@latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name-False]",
- "test": "test_create_task_definition_validation[test-container-library/image@name-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha384:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name:latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/image@name:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha512:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha512:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
- "test": "test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-docker.io/nginx-True]",
+ "test": "test_create_task_definition_validation[test-container-docker.io/nginx-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test@container-alpine-False]",
- "test": "test_create_task_definition_validation[test@container-alpine-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/@alpine:latest-False]",
+ "test": "test_create_task_definition_validation[test-container-library/@alpine:latest-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_tasks_list_tasks",
- "test": "test_describe_tasks_list_tasks",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine-True]",
+ "test": "test_create_task_definition_validation[test-container-library/alpine-True]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_undefined_task_definition",
- "test": "test_describe_undefined_task_definition",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/alpine@latest-False]",
+ "test": "test_create_task_definition_validation[test-container-library/alpine@latest-False]",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_fargate_task_definition_optional_container_memory",
- "test": "test_fargate_task_definition_optional_container_memory",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name-False]",
+ "test": "test_create_task_definition_validation[test-container-library/image@name-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name:latest-False]",
+ "test": "test_create_task_definition_validation[test-container-library/image@name:latest-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
+ "test": "test_create_task_definition_validation[test-container-localhost.localstack.cloud:4510/cdk-hnb659fds-container-assets-111111111111-us-east-1:5f423786c2e2f4ca36a670185bfd1e7f44f59942e3f5ad1994fcf1a1d1d66ba0-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:3.x-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "test": "test_create_task_definition_validation[test-container-public.ecr.aws/xray/aws-xray-daemon:v3.0.0-True]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test@container-alpine-False]",
+ "test": "test_create_task_definition_validation[test@container-alpine-False]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_tasks_list_tasks",
+ "test": "test_describe_tasks_list_tasks",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_describe_undefined_task_definition",
+ "test": "test_describe_undefined_task_definition",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_fargate_task_definition_optional_container_memory",
+ "test": "test_fargate_task_definition_optional_container_memory",
"response": "200",
"error": "",
"snapshot_skipped": "['$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes']",
@@ -6343,6 +6563,166 @@
"snapshot_tested": true,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "test": "test_loose_image_name_regex[---//##@sha256:9F86D081884C7D659A2FEAA0C55AD015A3BF4F1B2B0B822CD15D6C15B0F00A08]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
+ "test": "test_loose_image_name_regex[4XgV944vEl7DEI_0u-V5Iefh34/n/tBH1LB9mQwcKrU8d46z9O5HSanNKePtt-7]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[4]",
+ "test": "test_loose_image_name_regex[4]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
+ "test": "test_loose_image_name_regex[:::///__55::::://---:1abc::/]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[Bj1O3Eca4TbwL0rDcG3ygAf7McQ3gt_tg_R-qX1H1yDB71b35wABQsegTXbQ5qrkPM7Tr0ygOXgK6ZNDOAf4wREWc91mJQyxTab-GfSkorRKiA7NU21nSOnc4KmJhjFsHBZijJQ-6]",
+ "test": "test_loose_image_name_regex[Bj1O3Eca4TbwL0rDcG3ygAf7McQ3gt_tg_R-qX1H1yDB71b35wABQsegTXbQ5qrkPM7Tr0ygOXgK6ZNDOAf4wREWc91mJQyxTab-GfSkorRKiA7NU21nSOnc4KmJhjFsHBZijJQ-6]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
+ "test": "test_loose_image_name_regex[GgzXW5Aeul2NyL-U]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
+ "test": "test_loose_image_name_regex[Tvx:JfmMbtmTUK0jUOIgqGh2G2hhU/XkTqJ16Q8m2o9PW6ujNuCHR47JpNg/kfOB9dI_18IVC7EiJzFpG9aqhbkDvyhxy77jEoy6:Tb03NQdF4NeqdFRbBqJybhk75Ww7fYaHne5wbZ9dy]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "test": "test_loose_image_name_regex[aA9-_:./#--__::..//##----____::::....////####]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "test": "test_loose_image_name_regex[d9pkoMtZEFO8p2CDyH0rTyOj7Spnc4-biWjFiOx703/:t4yM10ps-wD1bpFkSrRo2CJAXHGQP8p_4oo16gh_67U3h5VorSdjqV-Vz6eyJwPepo2Ir55xFaHYRWgO3kK4pbyqO_2ErwmpeHk0Sd0lGssJ4HA2MvEyEu_sp/3]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "test": "test_loose_image_name_regex[f__HiUvwLQCeJZzX-0]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
+ "test": "test_loose_image_name_regex[fe9GzAA4hd/qFI6/sJcKhqlOF6OAXGbD3d]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
+ "test": "test_loose_image_name_regex[hBupzM9E-Ajmao_PTEtKnLEXhlG_ryeYr154XNr]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
+ "test": "test_loose_image_name_regex[hc41/xpz24pgyiYWwnQK8hBghmY5Hgtw-cxD4scBcdi96LO_gSHvY/do6Z3T4IHz_uRrFCMgI_KWZl9hnLlkBRW1UGu0YNEmAY9EFoCOV8RDWnnkCSlBO6vSM6gxmfFBdC6wcC0WCIYSDJA60EK8X2DwGjq/30l]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
+ "test": "test_loose_image_name_regex[oYqqnY9b2K4sit13Wnovcu_GSPZpbeGjuwOb3L56CvxiIOOkXdnbYRpKnDZNoc9w_qQpw7bnM150]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "test": "test_loose_image_name_regex[xeFs8NP5bbAJzMyZQFbimPA2TofLZDNnnISSSOBkQni02E/e9/47M6X39MaOWTd0j/1]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "test": "test_loose_image_name_regex[yLY820GqBFD00C6ahzLb_LBeX-gG:ySaayu29uIp2L7fZaZJOy0q1N0F7JJBI]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_tag_task_definition",
"test": "test_tag_task_definition",
@@ -6453,16 +6833,6 @@
"snapshot_tested": false,
"origin": "internal"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_mocked_responses",
- "test": "test_mocked_responses",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_cluster_default_version",
"test": "test_cluster_default_version",
@@ -6524,38 +6894,38 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_cluster_custom_port",
- "test": "test_cache_cluster_custom_port",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_cache_type",
+ "test": "test_cluster_no_cache_type",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_parameter_groups",
- "test": "test_cache_parameter_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
+ "test": "test_cluster_no_engine",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cache_subnet_groups",
- "test": "test_cache_subnet_groups",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_redis_num_nodes_greater_than_one",
+ "test": "test_cluster_redis_num_nodes_greater_than_one",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_cache_type",
- "test": "test_cluster_no_cache_type",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group_no_cache_type",
+ "test": "test_replication_group_no_cache_type",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6564,8 +6934,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
- "test": "test_cluster_no_engine",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group_no_engine",
+ "test": "test_replication_group_no_engine",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6574,17 +6944,37 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_redis_num_nodes_greater_than_one",
- "test": "test_cluster_redis_num_nodes_greater_than_one",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_cluster_custom_port",
+ "test": "test_cache_cluster_custom_port",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_create_delete_multiple_clusters",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_parameter_groups",
+ "test": "test_cache_parameter_groups",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_cache_subnet_groups",
+ "test": "test_cache_subnet_groups",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_create_delete_multiple_clusters",
"test": "test_create_delete_multiple_clusters",
"response": "200",
"error": "",
@@ -6594,7 +6984,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-1]",
"test": "test_redis_cluster_mode[0-1]",
"response": "200",
"error": "",
@@ -6604,7 +6994,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-2]",
"test": "test_redis_cluster_mode[0-2]",
"response": "200",
"error": "",
@@ -6614,7 +7004,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[0-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[0-4]",
"test": "test_redis_cluster_mode[0-4]",
"response": "200",
"error": "",
@@ -6624,7 +7014,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-1]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-1]",
"test": "test_redis_cluster_mode[1-1]",
"response": "200",
"error": "",
@@ -6634,7 +7024,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-2]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-2]",
"test": "test_redis_cluster_mode[1-2]",
"response": "200",
"error": "",
@@ -6644,7 +7034,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_cluster_mode[1-4]",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_cluster_mode[1-4]",
"test": "test_redis_cluster_mode[1-4]",
"response": "200",
"error": "",
@@ -6654,7 +7044,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_redis_standalone",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_redis_standalone",
"test": "test_redis_standalone",
"response": "200",
"error": "",
@@ -6664,7 +7054,7 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestLegacy::test_replication_group",
"test": "test_replication_group",
"response": "200",
"error": "",
@@ -6674,24 +7064,24 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group_no_cache_type",
- "test": "test_replication_group_no_cache_type",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_replication_group_no_engine",
- "test": "test_replication_group_no_engine",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/elasticbeanstalk/test_elasticbeanstalk.py::TestElasticBeanstalk::test_manage_application_versions",
@@ -6814,8 +7204,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
- "test": "test_target_group_crud",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_deregistration",
+ "test": "test_target_group_attributes_deregistration",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6824,8 +7214,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[GENEVE]",
- "test": "test_target_group_protocol_default_values[GENEVE]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6834,8 +7224,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTPS]",
- "test": "test_target_group_protocol_default_values[HTTPS]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[GENEVE-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6844,8 +7234,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTP]",
- "test": "test_target_group_protocol_default_values[HTTP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6854,8 +7244,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP]",
- "test": "test_target_group_protocol_default_values[TCP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6864,8 +7254,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP_UDP]",
- "test": "test_target_group_protocol_default_values[TCP_UDP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTP-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6874,8 +7264,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TLS]",
- "test": "test_target_group_protocol_default_values[TLS]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-False-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6884,8 +7274,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[UDP]",
- "test": "test_target_group_protocol_default_values[UDP]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[HTTPS-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6894,8 +7284,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
- "test": "test_target_group_target_type_default_values[alb]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP-False-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6904,8 +7294,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[instance]",
- "test": "test_target_group_target_type_default_values[instance]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6914,8 +7304,18 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[ip]",
- "test": "test_target_group_target_type_default_values[ip]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-False-source_ip]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "internal"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TCP_UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6924,8 +7324,8 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
- "test": "test_target_group_target_type_default_values[lambda]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -6934,211 +7334,211 @@
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrCrud::test_auto_termination_policies",
- "test": "test_auto_termination_policies",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[TLS-True-source_ip]",
+ "test": "test_target_group_attributes_stickiness[TLS-True-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrCrud::test_instance_fleets",
- "test": "test_instance_fleets",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-False-source_ip]",
+ "test": "test_target_group_attributes_stickiness[UDP-False-source_ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/emr/test_emr.py::TestEmrJobs::test_create_cluster",
- "test": "test_create_cluster",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
+ "test": "test_target_group_attributes_stickiness[UDP-True-lb_cookie]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_action_rds_reboot_db_instances",
- "test": "test_action_rds_reboot_db_instances",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_crud",
+ "test": "test_target_group_crud",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_fault_action",
- "test": "test_api_injection_fault_action",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTP-True]",
+ "test": "test_target_group_healthcheck_interval[HTTP-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_exception",
- "test": "test_api_injection_parametrized_exception",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[HTTPS-True]",
+ "test": "test_target_group_healthcheck_interval[HTTPS-True]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_operation",
- "test": "test_api_injection_parametrized_operation",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_region",
- "test": "test_api_injection_parametrized_region",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP_UDP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP_UDP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_service",
- "test": "test_api_injection_parametrized_service",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TLS-False]",
+ "test": "test_target_group_healthcheck_interval[TLS-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_create_experiment_template",
- "test": "test_create_experiment_template",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[UDP-False]",
+ "test": "test_target_group_healthcheck_interval[UDP-False]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_delete_experiment_template",
- "test": "test_delete_experiment_template",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[GENEVE]",
+ "test": "test_target_group_protocol_default_values[GENEVE]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_get_experiment",
- "test": "test_get_experiment",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTPS]",
+ "test": "test_target_group_protocol_default_values[HTTPS]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_get_experiment_template",
- "test": "test_get_experiment_template",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[HTTP]",
+ "test": "test_target_group_protocol_default_values[HTTP]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_idempotency_of_create_experiment_template",
- "test": "test_idempotency_of_create_experiment_template",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP]",
+ "test": "test_target_group_protocol_default_values[TCP]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_idempotency_of_start_experiment",
- "test": "test_idempotency_of_start_experiment",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TCP_UDP]",
+ "test": "test_target_group_protocol_default_values[TCP_UDP]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_list_experiment_templates",
- "test": "test_list_experiment_templates",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[TLS]",
+ "test": "test_target_group_protocol_default_values[TLS]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_list_experiments",
- "test": "test_list_experiments",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_protocol_default_values[UDP]",
+ "test": "test_target_group_protocol_default_values[UDP]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_start_experiment",
- "test": "test_start_experiment",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
+ "test": "test_target_group_target_type_default_values[alb]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_stop_experiment",
- "test": "test_stop_experiment",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[instance]",
+ "test": "test_target_group_target_type_default_values[instance]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_inventory_retrieval",
- "test": "test_inventory_retrieval",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[ip]",
+ "test": "test_target_group_target_type_default_values[ip]",
"response": "200",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "internal"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[lambda]",
+ "test": "test_target_group_target_type_default_values[lambda]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "internal"
@@ -7248,7 +7648,7 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7268,7 +7668,7 @@
"test": "test_failover",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7278,31 +7678,11 @@
"test": "test_validate_initial_setup",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_exception",
- "test": "test_api_injection_parametrized_exception",
- "response": "400",
- "error": "SomeVerySpecificException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/fis/test_fis.py::TestFis::test_api_injection_parametrized_region",
- "test": "test_api_injection_parametrized_region",
- "response": "400",
- "error": "InternalError",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_eventbridge_policies",
"test": "test_eventbridge_policies",
@@ -7510,6 +7890,16 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_trigger_event_on_ssm_change[standard]",
+ "test": "test_trigger_event_on_ssm_change[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
},
@@ -7545,6 +7935,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_input_path",
"test": "test_put_events_with_input_path",
@@ -7625,6 +8025,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -7679,6 +8089,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
"test": "test_object_put_acl",
@@ -7711,7 +8131,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -7721,7 +8141,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -7741,7 +8161,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
@@ -7751,7 +8171,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -7953,7 +8373,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -7965,7 +8385,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -7979,16 +8399,6 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_logs.py::test_scheduled_rule_logs",
- "test": "test_scheduled_rule_logs",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..eventId', '$..uploadSequenceToken', '$..storedBytes']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -8253,7 +8663,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_events.py::test_cfn_handle_events_rule_without_name",
@@ -8263,7 +8673,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -8321,6 +8731,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
"test": "test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -8411,6 +8831,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -8567,16 +8997,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_logs.py::test_scheduled_rule_logs",
- "test": "test_scheduled_rule_logs",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..eventId', '$..uploadSequenceToken', '$..storedBytes']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_sqs.py::test_scheduled_rule_sqs",
"test": "test_scheduled_rule_sqs",
@@ -8697,6 +9117,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_trigger_event_on_ssm_change[standard]",
+ "test": "test_trigger_event_on_ssm_change[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put",
"test": "test_object_created_put",
@@ -8707,6 +9137,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
"test": "test_object_put_acl",
@@ -8891,6 +9331,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_into_event_bus[standard]",
+ "test": "test_put_events_into_event_bus[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_input_path",
"test": "test_put_events_with_input_path",
@@ -8961,6 +9411,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sns[standard]",
+ "test": "test_put_events_with_target_sns[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_sqs",
"test": "test_put_events_with_target_sqs",
@@ -9037,16 +9497,6 @@
},
"EventBusName, Ids, Rule": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_logs.py::test_scheduled_rule_logs",
- "test": "test_scheduled_rule_logs",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..eventId', '$..uploadSequenceToken', '$..storedBytes']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/events/scheduled_rules/test_events_scheduled_rules_sqs.py::test_scheduled_rule_sqs",
"test": "test_scheduled_rule_sqs",
@@ -9107,6 +9557,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_created_put_in_different_region",
+ "test": "test_object_created_put_in_different_region",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..detail.object.etag']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_eventbridge.py::TestS3NotificationsToEventBridge::test_object_put_acl",
"test": "test_object_put_acl",
@@ -9243,6 +9703,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_trigger_event_on_ssm_change[standard]",
+ "test": "test_trigger_event_on_ssm_change[standard]",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
"test": "test_s3_bucket_deployed",
diff --git a/data/coverage/firehose.json b/data/coverage/firehose.json
index 530008a8e4..3927f94a3c 100644
--- a/data/coverage/firehose.json
+++ b/data/coverage/firehose.json
@@ -207,7 +207,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_delivery_stream_with_kinesis_as_source",
@@ -245,7 +245,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionFirehose::test_publish_to_firehose_with_s3",
@@ -397,7 +397,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -407,7 +407,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_firehose",
@@ -567,16 +567,6 @@
"DescribeDeliveryStream": {
"DeliveryStreamName": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
- "test": "test_firehose_stack_with_kinesis_as_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Destinations']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
"test": "test_firehose_stack_with_kinesis_as_source",
@@ -587,16 +577,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
- "test": "test_cfn_handle_kinesis_firehose_resources",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
"test": "test_cfn_handle_kinesis_firehose_resources",
@@ -745,7 +725,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -755,7 +735,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
diff --git a/data/coverage/glue.json b/data/coverage/glue.json
index bcbe8863b6..0cd9857c17 100644
--- a/data/coverage/glue.json
+++ b/data/coverage/glue.json
@@ -476,7 +476,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -499,8 +499,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -727,8 +727,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -776,7 +776,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -799,8 +799,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1460,7 +1460,7 @@
"availability": "pro",
"internal_test_suite": true,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1543,8 +1543,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1807,8 +1807,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1879,8 +1879,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2072,7 +2072,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2132,7 +2132,7 @@
"availability": "pro",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2395,8 +2395,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2419,8 +2419,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -2453,7 +2453,7 @@
"snapshot_skipped": "['$..GrokClassifier.Version']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_create_job_with_cloudformation",
@@ -2463,7 +2463,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2495,7 +2495,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2539,7 +2539,7 @@
"snapshot_skipped": "['$..Database.CreateTableDefaultPermissions', '$..Database.Parameters']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_table",
@@ -2549,7 +2549,7 @@
"snapshot_skipped": "['$..CreatedBy', '$..IsRegisteredWithLakeFormation', '$..Retention', '$..VersionId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_create_job_with_cloudformation",
@@ -2559,7 +2559,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2575,7 +2575,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2589,7 +2589,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_job_crud",
@@ -2971,7 +2971,7 @@
"snapshot_skipped": "['$..CreatedBy', '$..IsRegisteredWithLakeFormation', '$..Retention', '$..VersionId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_create_job_with_cloudformation",
@@ -2981,7 +2981,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -2997,7 +2997,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3011,7 +3011,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_trigger_crud",
@@ -3037,7 +3037,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3051,7 +3051,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_workflow_crud",
@@ -3077,7 +3077,7 @@
"snapshot_skipped": "['$..GrokClassifier.Version']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_classifier_crud",
@@ -3195,7 +3195,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_job_crud",
@@ -3671,7 +3671,7 @@
"snapshot_skipped": "['$..CreatedBy', '$..IsRegisteredWithLakeFormation', '$..Retention', '$..VersionId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -3687,7 +3687,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/glue/test_basic.py::TestGlueCrud::test_trigger_crud",
diff --git a/data/coverage/iam.json b/data/coverage/iam.json
index 617077245b..f8d7477ecf 100644
--- a/data/coverage/iam.json
+++ b/data/coverage/iam.json
@@ -140,7 +140,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -248,7 +248,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -259,8 +259,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -380,7 +380,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -403,8 +403,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -439,8 +439,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -488,7 +488,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -511,8 +511,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -523,8 +523,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -536,7 +536,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -583,8 +583,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -752,7 +752,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -859,8 +859,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -931,8 +931,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -991,8 +991,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1268,7 +1268,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1303,8 +1303,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1327,8 +1327,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1363,8 +1363,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1387,8 +1387,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1399,8 +1399,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1556,7 +1556,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1567,8 +1567,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1604,7 +1604,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1652,7 +1652,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1663,8 +1663,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1700,7 +1700,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1783,8 +1783,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1795,8 +1795,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1819,8 +1819,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1856,7 +1856,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1879,8 +1879,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1904,7 +1904,7 @@
"availability": "community",
"internal_test_suite": false,
"external_test_suite": true,
- "terraform_test_suite": true,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
@@ -1923,7 +1923,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -1933,7 +1933,17 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_batch_create_compute_environment",
@@ -1959,7 +1969,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -2007,7 +2017,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -2045,7 +2055,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_infra",
@@ -2055,7 +2065,7 @@
"snapshot_skipped": "['$..Tags', '$..Attributes.DeliveryPolicy', '$..Attributes.EffectiveDeliveryPolicy.defaultHealthyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.guaranteed', '$..Attributes.EffectiveDeliveryPolicy.http', '$..Attributes.EffectiveDeliveryPolicy.sicklyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.throttlePolicy', '$..Attributes.Policy.Statement..Action', '$..Attributes.SubscriptionsConfirmed']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
@@ -2065,7 +2075,7 @@
"snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
@@ -2075,7 +2085,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw",
@@ -2155,7 +2165,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration",
@@ -2185,7 +2195,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -2195,7 +2205,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_account",
@@ -2205,7 +2215,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -2215,7 +2225,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -2225,7 +2235,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -2235,7 +2245,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -2245,7 +2255,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -2255,7 +2265,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -2265,7 +2275,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -2275,7 +2285,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -2285,7 +2295,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -2295,7 +2305,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -2305,7 +2315,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -2315,7 +2325,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions",
@@ -2325,7 +2335,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -2335,7 +2345,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url",
@@ -2345,7 +2355,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config",
@@ -2355,7 +2365,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias",
@@ -2365,7 +2375,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run",
@@ -2375,7 +2385,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version",
@@ -2385,7 +2395,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn",
@@ -2395,7 +2405,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3",
@@ -2405,7 +2415,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -2415,7 +2425,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -2425,7 +2435,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -2435,7 +2445,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -2445,7 +2455,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -2455,7 +2465,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -2465,7 +2475,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -2475,7 +2485,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -2485,7 +2495,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -2495,7 +2505,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
@@ -2505,7 +2515,7 @@
"snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -2538,21 +2548,21 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
- "test": "test_function_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_large_payloads",
+ "test": "test_large_payloads",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.7]",
- "test": "test_echo_invoke[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
+ "test": "test_function_lifecycle",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -2565,16 +2575,6 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
- "test": "test_failing_lambda_retries_after_visibility_timeout",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -2617,6 +2617,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
+ "test": "test_delete_message_batch_from_lambda",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
"test": "test_step_functions_calling_api_gateway",
@@ -2625,7 +2635,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -2635,7 +2645,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
@@ -2687,7 +2697,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
@@ -2937,7 +2947,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
@@ -3117,7 +3127,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -3127,7 +3137,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -3137,7 +3147,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
@@ -3147,7 +3167,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -3157,7 +3177,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -3167,7 +3197,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -3504,10 +3534,10 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -3523,7 +3553,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_attach_iam_role_to_new_iam_user",
@@ -3851,7 +3881,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_user",
@@ -4419,7 +4449,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -4479,7 +4509,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -4489,7 +4519,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_batch_create_compute_environment",
@@ -4502,6 +4532,20 @@
"origin": "external"
}
]
+ },
+ "InstanceProfileName, Path": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
}
},
"CreatePolicy": {
@@ -4641,7 +4685,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource",
@@ -4651,7 +4695,7 @@
"snapshot_skipped": "['$..Policy.Description', '$..Policy.IsAttachable', '$..Policy.PermissionsBoundaryUsageCount', '$..Policy.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports",
@@ -4661,7 +4705,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -4734,41 +4778,41 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
- "test": "test_function_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_large_payloads",
+ "test": "test_large_payloads",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.7]",
- "test": "test_echo_invoke[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
+ "test": "test_function_lifecycle",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
- "test": "test_failing_lambda_retries_after_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishDelivery::test_delivery_lambda",
+ "test": "test_delivery_lambda",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
+ "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishDelivery::test_delivery_lambda",
- "test": "test_delivery_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
+ "test": "test_delete_message_batch_from_lambda",
"response": "200",
"error": "",
- "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5243,7 +5287,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -5843,7 +5887,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -5855,7 +5899,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -5883,7 +5927,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_iam_role_resource_no_role_name",
@@ -5893,7 +5937,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -5903,7 +5947,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_create_describe_role",
@@ -5943,7 +5987,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -5955,7 +5999,17 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
@@ -5965,7 +6019,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
@@ -5975,7 +6029,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -5985,7 +6039,21 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ }
+ ]
+ },
+ "AssumeRolePolicyDocument, Path, RoleName, Tags": {
+ "ls_pro": [
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
},
@@ -6013,7 +6081,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_infra",
@@ -6023,7 +6091,7 @@
"snapshot_skipped": "['$..Tags', '$..Attributes.DeliveryPolicy', '$..Attributes.EffectiveDeliveryPolicy.defaultHealthyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.guaranteed', '$..Attributes.EffectiveDeliveryPolicy.http', '$..Attributes.EffectiveDeliveryPolicy.sicklyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.throttlePolicy', '$..Attributes.Policy.Statement..Action', '$..Attributes.SubscriptionsConfirmed']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
@@ -6033,7 +6101,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]",
@@ -6203,7 +6271,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration",
@@ -6233,7 +6301,7 @@
"snapshot_skipped": "['$..Role.Description', '$..Role.MaxSessionDuration', '$..Role.AssumeRolePolicyDocument..Action']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_delete_role_detaches_role_policy",
@@ -6243,7 +6311,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -6253,7 +6321,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -6263,7 +6331,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group",
@@ -6273,7 +6341,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata', '$..ActionAfterCompletion', '$..ScheduleExpressionTimezone']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -6283,7 +6351,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -6293,7 +6361,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -6303,7 +6371,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -6313,7 +6381,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -6323,7 +6391,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -6333,7 +6401,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -6343,7 +6411,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
@@ -6353,7 +6421,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -6363,7 +6431,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -6373,7 +6441,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -6383,7 +6451,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -6393,7 +6461,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions",
@@ -6403,7 +6471,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -6413,7 +6481,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url",
@@ -6423,7 +6491,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config",
@@ -6433,7 +6501,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias",
@@ -6443,7 +6511,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run",
@@ -6453,7 +6521,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version",
@@ -6463,7 +6531,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn",
@@ -6473,7 +6541,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3",
@@ -6483,7 +6551,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -6493,7 +6561,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -6503,7 +6571,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name",
@@ -6513,7 +6581,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_template",
@@ -6523,7 +6591,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -6533,7 +6601,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -6543,7 +6611,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -6553,7 +6621,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -6563,7 +6631,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_cfn_statemachine_with_dependencies",
@@ -6573,7 +6641,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -6583,7 +6651,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -6593,7 +6661,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
@@ -6603,7 +6671,7 @@
"snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -6666,21 +6734,21 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
- "test": "test_function_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_large_payloads",
+ "test": "test_large_payloads",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_echo_invoke[python3.7]",
- "test": "test_echo_invoke[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
+ "test": "test_function_lifecycle",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6693,7 +6761,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
@@ -6725,16 +6793,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
- "test": "test_failing_lambda_retries_after_visibility_timeout",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_firehose",
"test": "test_put_subscription_filter_firehose",
@@ -6795,6 +6853,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
+ "test": "test_delete_message_batch_from_lambda",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::test_default_logging_configuration",
"test": "test_default_logging_configuration",
@@ -6813,7 +6881,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -6823,7 +6891,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -6833,7 +6901,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/sts/test_sts.py::TestSTSIntegrations::test_get_caller_identity_role_access_key[False]",
@@ -6915,7 +6983,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
@@ -7165,7 +7233,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
@@ -7387,6 +7455,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -7475,7 +7553,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
@@ -7487,6 +7565,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_create_job_default_command",
"test": "test_create_job_default_command",
@@ -7535,7 +7623,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -7545,7 +7633,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -7555,7 +7643,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -7565,7 +7653,7 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_iot.py::test_role_alias",
@@ -7585,7 +7673,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -7595,7 +7683,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -7605,7 +7693,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -7615,7 +7703,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -7825,7 +7913,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_cross_account.py::TestLambdaCrossAccount::test_kms_cross_account_encrypt",
@@ -8262,10 +8350,10 @@
"test": "test_describe",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
+ "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_add_role_to_db_cluster",
@@ -8419,7 +8507,7 @@
"snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -8429,7 +8517,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -8439,7 +8527,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -8449,7 +8537,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -8459,7 +8547,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -8469,7 +8557,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -8479,7 +8567,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -8489,7 +8577,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -8499,7 +8587,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -8511,7 +8599,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -8521,7 +8609,27 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
}
]
}
@@ -8537,7 +8645,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -8593,7 +8701,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -8603,7 +8711,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -8613,7 +8721,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -8623,7 +8731,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -8633,7 +8741,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -8643,7 +8751,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -8653,7 +8761,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -8663,7 +8771,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_add_permission_boundary_afterwards",
@@ -9341,7 +9449,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_user",
@@ -9381,7 +9489,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9391,7 +9499,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9401,7 +9509,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9411,7 +9519,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9421,7 +9529,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9431,7 +9539,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9441,7 +9549,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9451,7 +9559,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9461,7 +9569,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9471,7 +9579,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9481,7 +9589,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9491,7 +9599,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9501,7 +9609,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9511,7 +9619,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9521,7 +9629,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9531,7 +9639,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9541,7 +9649,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9551,7 +9659,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9561,7 +9669,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -9571,7 +9679,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -10099,7 +10207,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -10185,7 +10293,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -10195,7 +10303,17 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -10293,6 +10411,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_extensions_modules.py::TestExtensionsModules::test_module_usage",
+ "test": "test_module_usage",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_extensions_resourcetypes.py::TestExtensionsResourceTypes::test_deploy_resource_type",
"test": "test_deploy_resource_type",
@@ -10311,7 +10439,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_managed_policy_with_empty_resource",
@@ -10321,7 +10449,7 @@
"snapshot_skipped": "['$..Policy.Description', '$..Policy.IsAttachable', '$..Policy.PermissionsBoundaryUsageCount', '$..Policy.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_with_exports",
@@ -10331,7 +10459,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -10424,21 +10552,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_unique_id_generation.py::TestUniqueIdGeneration::test_uuid",
- "test": "test_uuid",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_sfn_task_service.py::TestTaskServiceSfn::test_start_execution_input_json",
- "test": "test_start_execution_input_json",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_sqs_task_service.py::TestTaskServiceSqs::test_send_message_unsupported_parameters",
+ "test": "test_send_message_unsupported_parameters",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId', '$..SdkHttpMetadata', '$..SdkResponseMetadata']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..SdkHttpMetadata', '$..SdkResponseMetadata', '$..cause', '$..Cause']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -10448,7 +10566,7 @@
"test": "test_list_map_runs_and_describe_map_run",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -10923,7 +11041,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -11066,11 +11184,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -11529,7 +11647,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -11539,7 +11657,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -11549,7 +11667,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -11559,7 +11677,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]",
@@ -11729,7 +11847,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration",
@@ -11751,6 +11869,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_extensions_modules.py::TestExtensionsModules::test_module_usage",
+ "test": "test_module_usage",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_extensions_resourcetypes.py::TestExtensionsResourceTypes::test_deploy_resource_type",
"test": "test_deploy_resource_type",
@@ -11769,7 +11897,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -11779,7 +11907,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -11789,7 +11917,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group",
@@ -11799,7 +11927,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata', '$..ActionAfterCompletion', '$..ScheduleExpressionTimezone']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_account",
@@ -11809,7 +11937,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -11819,7 +11947,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -11829,7 +11957,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -11839,7 +11967,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -11849,7 +11977,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -11859,7 +11987,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -11869,7 +11997,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -11879,7 +12007,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -11889,7 +12017,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
@@ -11899,7 +12027,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -11909,7 +12037,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -11919,7 +12047,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -11929,7 +12057,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -11939,7 +12067,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions",
@@ -11949,7 +12077,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -11959,7 +12087,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url",
@@ -11969,7 +12097,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config",
@@ -11979,7 +12107,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias",
@@ -11989,7 +12117,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run",
@@ -11999,7 +12127,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version",
@@ -12009,7 +12137,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn",
@@ -12019,7 +12147,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3",
@@ -12029,7 +12157,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_iam_role_resource_no_role_name",
@@ -12039,7 +12167,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -12049,7 +12177,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -12059,7 +12187,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -12069,7 +12197,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name",
@@ -12079,7 +12207,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -12089,7 +12217,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_template",
@@ -12099,7 +12227,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -12109,7 +12237,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -12119,7 +12247,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -12129,7 +12257,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -12139,7 +12267,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_cfn_statemachine_with_dependencies",
@@ -12149,7 +12277,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -12159,7 +12287,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -12169,7 +12297,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
@@ -12179,7 +12307,7 @@
"snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -12279,7 +12407,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
@@ -12381,16 +12509,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_unique_id_generation.py::TestUniqueIdGeneration::test_uuid",
- "test": "test_uuid",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_path_based_on_data",
"test": "test_path_based_on_data",
@@ -12399,7 +12517,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -12409,7 +12527,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -12419,14 +12537,14 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_sfn_task_service.py::TestTaskServiceSfn::test_start_execution_input_json",
- "test": "test_start_execution_input_json",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_sqs_task_service.py::TestTaskServiceSqs::test_send_message_unsupported_parameters",
+ "test": "test_send_message_unsupported_parameters",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId', '$..SdkHttpMetadata', '$..SdkResponseMetadata']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..SdkHttpMetadata', '$..SdkResponseMetadata', '$..cause', '$..Cause']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -12436,7 +12554,7 @@
"test": "test_list_map_runs_and_describe_map_run",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -12469,7 +12587,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/integration/test_config_service.py::TestConfigService::test_put_configuration_recorder",
@@ -12511,7 +12629,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
@@ -12751,7 +12869,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
@@ -12973,6 +13091,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -13061,7 +13189,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncCrud::test_resolver_with_cache",
@@ -13073,6 +13201,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/batch/test_batch.py::TestBatch::test_environment_with_empty_params",
"test": "test_environment_with_empty_params",
@@ -13091,7 +13229,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_cloudfront_distribution_with_logging",
@@ -13101,7 +13239,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
@@ -13111,7 +13249,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -13121,7 +13259,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -13131,7 +13269,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -13141,7 +13279,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -13151,7 +13289,27 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
@@ -13161,7 +13319,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_iot.py::test_role_alias",
@@ -13181,7 +13339,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
@@ -13191,7 +13349,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -13201,7 +13359,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -13211,7 +13369,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -13221,7 +13389,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -13381,7 +13549,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -13434,11 +13602,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -13881,7 +14049,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_add_role_to_db_cluster",
@@ -14051,7 +14219,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -14061,7 +14229,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementIdentityBasedPolicies::test_batch_create_compute_environment",
@@ -14103,7 +14271,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -14113,7 +14281,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -14123,7 +14291,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -14133,7 +14301,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]",
@@ -14233,7 +14401,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -14243,7 +14411,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group",
@@ -14253,7 +14421,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata', '$..ActionAfterCompletion', '$..ScheduleExpressionTimezone']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -14263,7 +14431,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -14273,7 +14441,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -14283,7 +14451,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -14293,7 +14461,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -14303,7 +14471,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -14313,7 +14481,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
@@ -14323,7 +14491,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -14333,7 +14501,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -14343,7 +14511,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -14353,7 +14521,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -14363,7 +14531,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -14373,7 +14541,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -14383,7 +14551,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name",
@@ -14393,7 +14561,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -14403,7 +14571,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -14413,7 +14581,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -14423,7 +14591,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -14433,7 +14601,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -14443,7 +14611,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -14453,7 +14621,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_role",
@@ -14473,7 +14641,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
@@ -14533,7 +14701,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
@@ -14543,7 +14711,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14553,7 +14721,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14563,7 +14731,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14573,7 +14741,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14583,7 +14751,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14593,7 +14761,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14603,7 +14771,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14613,7 +14781,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14623,7 +14791,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14633,7 +14801,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14643,7 +14811,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14653,7 +14821,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14663,7 +14831,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14673,7 +14841,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14683,7 +14851,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14693,7 +14861,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14703,7 +14871,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14713,7 +14881,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14723,7 +14891,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14733,7 +14901,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14743,7 +14911,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14753,7 +14921,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14763,7 +14931,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14773,7 +14941,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14783,7 +14951,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14793,7 +14961,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14803,7 +14971,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14813,7 +14981,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14823,7 +14991,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14833,7 +15001,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14843,7 +15011,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14853,7 +15021,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14863,7 +15031,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14873,7 +15041,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14883,7 +15051,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14893,7 +15061,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14903,7 +15071,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14913,7 +15081,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14923,7 +15091,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14933,7 +15101,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14943,7 +15111,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14953,7 +15121,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14963,7 +15131,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14973,7 +15141,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14983,7 +15151,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -14993,7 +15161,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15003,7 +15171,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15013,7 +15181,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15023,7 +15191,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15033,7 +15201,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15043,7 +15211,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15053,7 +15221,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15063,7 +15231,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15073,7 +15241,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15083,7 +15251,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15093,7 +15261,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15103,7 +15271,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15113,7 +15281,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15123,7 +15291,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15133,7 +15301,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
@@ -15143,7 +15311,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15153,7 +15321,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15163,7 +15331,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15173,7 +15341,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15183,7 +15351,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15193,7 +15361,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15203,7 +15371,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15213,7 +15381,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15223,7 +15391,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15233,7 +15401,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -15243,7 +15411,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15253,7 +15421,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15263,7 +15431,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15273,7 +15441,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15283,7 +15451,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15293,7 +15461,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15303,7 +15471,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15313,7 +15481,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15323,7 +15491,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15333,7 +15501,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -15343,7 +15511,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15353,7 +15521,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15363,7 +15531,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15373,7 +15541,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15383,7 +15551,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15393,7 +15561,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15403,7 +15571,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15413,7 +15581,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15423,7 +15591,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15433,7 +15601,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15443,7 +15611,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15453,7 +15621,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15463,7 +15631,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15473,7 +15641,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15483,7 +15651,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15493,7 +15661,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15503,7 +15671,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15513,7 +15681,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15523,7 +15691,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15533,7 +15701,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15543,7 +15711,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15553,7 +15721,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15563,7 +15731,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15573,7 +15741,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15583,7 +15751,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15593,7 +15761,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15603,7 +15771,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15613,7 +15781,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15623,7 +15791,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15633,7 +15801,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15643,7 +15811,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15653,7 +15821,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15663,7 +15831,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15673,7 +15841,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15683,7 +15851,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15693,7 +15861,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15703,7 +15871,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15713,7 +15881,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15723,7 +15891,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15733,7 +15901,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15743,7 +15911,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15753,7 +15921,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15763,7 +15931,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15773,7 +15941,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15783,7 +15951,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15793,7 +15961,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15803,7 +15971,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15813,7 +15981,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15823,7 +15991,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15833,7 +16001,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -15843,7 +16011,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15853,7 +16021,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15863,7 +16031,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15873,7 +16041,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15883,7 +16051,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15893,7 +16061,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15903,7 +16071,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15913,7 +16081,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15923,7 +16091,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15933,7 +16101,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -15943,7 +16111,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -15953,7 +16121,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -15963,7 +16131,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -15973,7 +16141,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -15983,7 +16151,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -15993,7 +16161,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16003,7 +16171,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16013,7 +16181,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16023,7 +16191,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16033,7 +16201,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16043,7 +16211,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16053,7 +16221,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16063,7 +16231,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16073,7 +16241,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16083,7 +16251,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16093,7 +16261,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16103,7 +16271,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16113,7 +16281,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16123,7 +16291,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16133,7 +16301,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -16143,7 +16311,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16153,7 +16321,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16163,7 +16331,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16173,7 +16341,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16183,7 +16351,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16193,7 +16361,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16203,7 +16371,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16213,7 +16381,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16223,7 +16391,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16233,7 +16401,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -16243,7 +16411,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16253,7 +16421,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16263,7 +16431,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16273,7 +16441,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16283,7 +16451,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16293,7 +16461,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16303,7 +16471,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16313,7 +16481,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16323,7 +16491,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16333,7 +16501,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16343,7 +16511,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16353,7 +16521,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16363,7 +16531,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16373,7 +16541,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16383,7 +16551,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16393,7 +16561,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16403,7 +16571,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16413,7 +16581,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16423,7 +16591,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16433,7 +16601,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -16443,7 +16611,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16453,7 +16621,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16463,7 +16631,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16473,7 +16641,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16483,7 +16651,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16493,7 +16661,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16503,7 +16671,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16513,7 +16681,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16523,7 +16691,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16533,7 +16701,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16543,7 +16711,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16553,7 +16721,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16563,7 +16731,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16573,7 +16741,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16583,7 +16751,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16593,7 +16761,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16603,7 +16771,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16613,7 +16781,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16623,7 +16791,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16633,7 +16801,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -16643,7 +16811,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16653,7 +16821,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16663,7 +16831,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16673,7 +16841,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16683,7 +16851,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16693,7 +16861,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16703,7 +16871,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16713,7 +16881,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16723,7 +16891,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16733,7 +16901,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16743,7 +16911,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16753,7 +16921,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16763,7 +16931,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16773,7 +16941,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16783,7 +16951,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16793,7 +16961,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16803,7 +16971,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16813,7 +16981,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16823,7 +16991,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16833,7 +17001,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -16843,7 +17011,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16853,7 +17021,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16863,7 +17031,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16873,7 +17041,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16883,7 +17051,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16893,7 +17061,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16903,7 +17071,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16913,7 +17081,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16923,7 +17091,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16933,7 +17101,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16943,7 +17111,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16953,7 +17121,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16963,7 +17131,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16973,7 +17141,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16983,7 +17151,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -16993,7 +17161,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -17003,7 +17171,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -17013,7 +17181,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -17023,7 +17191,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -17033,7 +17201,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -17043,7 +17211,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17053,7 +17221,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17063,7 +17231,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17073,7 +17241,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17083,7 +17251,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17093,7 +17261,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17103,7 +17271,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17113,7 +17281,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17123,7 +17291,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17133,7 +17301,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -17143,7 +17311,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17153,7 +17321,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17163,7 +17331,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17173,7 +17341,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17183,7 +17351,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17193,7 +17361,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17203,7 +17371,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17213,7 +17381,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17223,7 +17391,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17233,7 +17401,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -17243,7 +17411,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17253,7 +17421,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17263,7 +17431,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17273,7 +17441,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17283,7 +17451,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17293,7 +17461,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17303,7 +17471,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17313,7 +17481,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17323,7 +17491,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17333,7 +17501,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17343,7 +17511,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17353,7 +17521,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17363,7 +17531,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17373,7 +17541,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17383,7 +17551,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17393,7 +17561,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17403,7 +17571,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17413,7 +17581,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17423,7 +17591,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17433,7 +17601,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -17443,7 +17611,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17453,7 +17621,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17463,7 +17631,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17473,7 +17641,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17483,7 +17651,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17493,7 +17661,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17503,7 +17671,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17513,7 +17681,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17523,7 +17691,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17533,7 +17701,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17543,7 +17711,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17553,7 +17721,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17563,7 +17731,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17573,7 +17741,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17583,7 +17751,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17593,7 +17761,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17603,7 +17771,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17613,7 +17781,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17623,7 +17791,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17633,7 +17801,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -17643,7 +17811,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17653,7 +17821,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17663,7 +17831,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17673,7 +17841,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17683,7 +17851,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17693,7 +17861,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17703,7 +17871,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17713,7 +17881,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17723,7 +17891,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17733,7 +17901,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17743,7 +17911,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17753,7 +17921,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17763,7 +17931,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17773,7 +17941,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17783,7 +17951,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17793,7 +17961,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17803,7 +17971,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17813,7 +17981,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17823,7 +17991,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17833,7 +18001,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -17843,7 +18011,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17853,7 +18021,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17863,7 +18031,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17873,7 +18041,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17883,7 +18051,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17893,7 +18061,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17903,7 +18071,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17913,7 +18081,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17923,7 +18091,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17933,7 +18101,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -17943,7 +18111,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -17953,7 +18121,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -17963,7 +18131,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -17973,7 +18141,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -17983,7 +18151,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -17993,7 +18161,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -18003,7 +18171,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -18013,7 +18181,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -18023,7 +18191,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -18033,7 +18201,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -18043,7 +18211,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18053,7 +18221,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18063,7 +18231,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18073,7 +18241,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18083,7 +18251,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18093,7 +18261,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18103,7 +18271,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18113,7 +18281,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18123,7 +18291,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18133,7 +18301,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -18143,7 +18311,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18153,7 +18321,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18163,7 +18331,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18173,7 +18341,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18183,7 +18351,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18193,7 +18361,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18203,7 +18371,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18213,7 +18381,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18223,7 +18391,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18233,7 +18401,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -18243,7 +18411,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18253,7 +18421,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18263,7 +18431,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18273,7 +18441,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18283,7 +18451,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18293,7 +18461,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18303,7 +18471,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18313,7 +18481,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18323,7 +18491,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18333,7 +18501,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18343,7 +18511,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18353,7 +18521,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18363,7 +18531,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18373,7 +18541,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18383,7 +18551,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18393,7 +18561,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18403,7 +18571,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18413,7 +18581,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18423,7 +18591,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18433,7 +18601,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -18443,7 +18611,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18453,7 +18621,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18463,7 +18631,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18473,7 +18641,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18483,7 +18651,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18493,7 +18661,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18503,7 +18671,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18513,7 +18681,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18523,7 +18691,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18533,7 +18701,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -18543,7 +18711,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18553,7 +18721,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18563,7 +18731,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18573,7 +18741,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18583,7 +18751,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18593,7 +18761,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18603,7 +18771,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18613,7 +18781,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18623,7 +18791,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18633,7 +18801,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18643,7 +18811,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18653,7 +18821,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18663,7 +18831,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18673,7 +18841,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18683,7 +18851,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18693,7 +18861,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18703,7 +18871,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18713,7 +18881,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18723,7 +18891,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18733,7 +18901,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -18743,7 +18911,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18753,7 +18921,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18763,7 +18931,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18773,7 +18941,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18783,7 +18951,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18793,7 +18961,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18803,7 +18971,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18813,7 +18981,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18823,7 +18991,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18833,7 +19001,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18843,7 +19011,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18853,7 +19021,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18863,7 +19031,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18873,7 +19041,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18883,7 +19051,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18893,7 +19061,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18903,7 +19071,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18913,7 +19081,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18923,7 +19091,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18933,7 +19101,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -18943,7 +19111,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -18955,7 +19123,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -18965,7 +19133,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_specify_resources_by_name",
@@ -19057,6 +19225,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -19117,6 +19295,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
"test": "test_customresource_lambda_backed",
@@ -19125,7 +19313,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19135,7 +19323,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -19145,7 +19333,27 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
@@ -19155,7 +19363,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
@@ -19165,7 +19373,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -19175,7 +19383,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -19185,7 +19393,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -19195,7 +19403,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -19585,7 +19793,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19595,7 +19803,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19605,7 +19813,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19615,7 +19823,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19625,7 +19833,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19635,7 +19843,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19645,7 +19853,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19655,7 +19863,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19665,7 +19873,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/scenario/rds_neptune_docdb/test_rds_neptune_docdb.py::TestRdsNeptuneDocDB::test_rds_lambda",
@@ -19675,7 +19883,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19685,7 +19893,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19695,7 +19903,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19705,7 +19913,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19715,7 +19923,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19725,7 +19933,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19735,7 +19943,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19745,7 +19953,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19755,7 +19963,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19765,7 +19973,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19775,7 +19983,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19785,7 +19993,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19795,7 +20003,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19805,7 +20013,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19815,7 +20023,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19825,7 +20033,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19835,7 +20043,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19845,7 +20053,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19855,7 +20063,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19865,7 +20073,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -19875,7 +20083,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19885,7 +20093,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19895,7 +20103,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19905,7 +20113,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19915,7 +20123,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19925,7 +20133,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19935,7 +20143,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19945,7 +20153,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19955,7 +20163,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19965,7 +20173,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -19975,7 +20183,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -19985,7 +20193,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -19995,7 +20203,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20005,7 +20213,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20015,7 +20223,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20025,7 +20233,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20035,7 +20243,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20045,7 +20253,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20055,7 +20263,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20065,7 +20273,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -20075,7 +20283,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20085,7 +20293,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20095,7 +20303,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20105,7 +20313,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20115,7 +20323,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20125,7 +20333,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20135,7 +20343,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20145,7 +20353,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20155,7 +20363,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20165,7 +20373,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -20175,7 +20383,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -20191,7 +20399,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -20207,7 +20415,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20217,7 +20425,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20227,7 +20435,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20237,7 +20445,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -20247,7 +20455,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -20257,7 +20465,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -20267,7 +20475,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_add_permission_boundary_afterwards",
@@ -20347,7 +20555,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20357,7 +20565,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20367,7 +20575,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20377,7 +20585,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20387,7 +20595,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20397,7 +20605,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20407,7 +20615,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20417,7 +20625,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
@@ -20427,7 +20635,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20437,7 +20645,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20447,7 +20655,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20457,7 +20665,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20467,7 +20675,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20477,7 +20685,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20487,7 +20695,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20497,7 +20705,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20507,7 +20715,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20517,7 +20725,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20527,7 +20735,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20537,7 +20745,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20547,7 +20755,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20557,7 +20765,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20567,7 +20775,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20577,7 +20785,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20587,7 +20795,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20597,7 +20805,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20607,7 +20815,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
@@ -20617,7 +20825,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20627,7 +20835,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20637,7 +20845,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20647,7 +20855,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20657,7 +20865,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20667,7 +20875,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20677,7 +20885,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20687,7 +20895,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20697,7 +20905,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20707,7 +20915,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20717,7 +20925,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20727,7 +20935,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20737,7 +20945,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20747,7 +20955,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20757,7 +20965,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20767,7 +20975,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20777,7 +20985,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20787,7 +20995,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20797,7 +21005,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
@@ -20807,7 +21015,7 @@
"snapshot_skipped": "all",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20817,7 +21025,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20827,7 +21035,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20837,7 +21045,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20847,7 +21055,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20857,7 +21065,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20867,7 +21075,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20877,7 +21085,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20887,7 +21095,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20897,7 +21105,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20907,7 +21115,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20917,7 +21125,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20927,7 +21135,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20937,7 +21145,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20947,7 +21155,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20957,7 +21165,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20967,7 +21175,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20977,7 +21185,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20987,7 +21195,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
@@ -20997,7 +21205,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21007,7 +21215,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21017,7 +21225,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21027,7 +21235,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21037,7 +21245,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21047,7 +21255,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21057,7 +21265,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21067,7 +21275,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21077,7 +21285,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21087,7 +21295,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21097,7 +21305,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21107,7 +21315,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21117,7 +21325,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21127,7 +21335,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21137,7 +21345,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21147,7 +21355,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21157,7 +21365,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21167,7 +21375,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21177,7 +21385,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_user_access_key",
@@ -21187,7 +21395,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21197,7 +21405,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21207,7 +21415,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21217,7 +21425,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21227,7 +21435,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21237,7 +21445,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21247,7 +21455,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21257,7 +21465,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21267,7 +21475,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -21277,7 +21485,7 @@
"snapshot_skipped": "['$..User.Tags']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21287,7 +21495,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21297,7 +21505,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21307,7 +21515,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21317,7 +21525,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21327,7 +21535,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21337,7 +21545,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21347,7 +21555,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21357,7 +21565,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21367,7 +21575,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21377,7 +21585,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21387,7 +21595,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21397,7 +21605,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21407,7 +21615,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21417,7 +21625,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21427,7 +21635,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21437,7 +21645,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21447,7 +21655,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21457,7 +21665,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21467,7 +21675,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21477,7 +21685,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21487,7 +21695,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21497,7 +21705,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21507,7 +21715,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21517,7 +21725,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21527,7 +21735,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21537,7 +21745,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21547,7 +21755,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -21557,7 +21765,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -21567,7 +21775,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMIntegrations::test_user_attach_policy",
@@ -22221,7 +22429,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_user",
@@ -22419,7 +22627,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -22457,7 +22665,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -22467,7 +22675,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -22477,7 +22685,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -22487,7 +22695,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw",
@@ -22567,7 +22775,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration",
@@ -22589,6 +22797,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_extensions_modules.py::TestExtensionsModules::test_module_usage",
+ "test": "test_module_usage",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/api/test_extensions_resourcetypes.py::TestExtensionsResourceTypes::test_deploy_resource_type",
"test": "test_deploy_resource_type",
@@ -22607,7 +22825,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -22617,7 +22835,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_account",
@@ -22627,7 +22845,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -22637,7 +22855,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -22647,7 +22865,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -22657,7 +22875,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -22667,7 +22885,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -22677,7 +22895,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -22687,7 +22905,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -22697,7 +22915,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -22707,7 +22925,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -22717,7 +22935,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -22727,7 +22945,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -22737,7 +22955,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions",
@@ -22747,7 +22965,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -22757,7 +22975,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url",
@@ -22767,7 +22985,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config",
@@ -22777,7 +22995,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias",
@@ -22787,7 +23005,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run",
@@ -22797,7 +23015,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version",
@@ -22807,7 +23025,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn",
@@ -22817,7 +23035,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3",
@@ -22827,7 +23045,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -22837,7 +23055,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -22847,7 +23065,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -22857,7 +23075,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -22867,7 +23085,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -22877,7 +23095,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -22887,7 +23105,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -22897,7 +23115,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -22907,7 +23125,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -22917,7 +23135,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
@@ -22927,7 +23145,7 @@
"snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -22967,7 +23185,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
@@ -23009,16 +23227,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/intrinsic_functions/test_unique_id_generation.py::TestUniqueIdGeneration::test_uuid",
- "test": "test_uuid",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
"test": "test_step_functions_calling_api_gateway",
@@ -23027,7 +23235,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -23037,14 +23245,14 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_sfn_task_service.py::TestTaskServiceSfn::test_start_execution_input_json",
- "test": "test_start_execution_input_json",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/services/test_sqs_task_service.py::TestTaskServiceSqs::test_send_message_unsupported_parameters",
+ "test": "test_send_message_unsupported_parameters",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId', '$..SdkHttpMetadata', '$..SdkResponseMetadata']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..SdkHttpMetadata', '$..SdkResponseMetadata', '$..cause', '$..Cause']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -23054,7 +23262,7 @@
"test": "test_list_map_runs_and_describe_map_run",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration', '$..previousEventId']",
+ "snapshot_skipped": "['$..loggingConfiguration', '$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -23069,7 +23277,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
@@ -23309,7 +23517,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
@@ -23489,7 +23697,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -23499,7 +23707,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -23509,7 +23717,17 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
@@ -23519,7 +23737,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -23529,7 +23747,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -23539,7 +23767,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -23692,11 +23920,11 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/glacier/test_glacier.py::TestGlacier::test_select_query_archive",
- "test": "test_select_query_archive",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
+ "test": "test_target_group_attributes_stickiness[HTTP-False-app_cookie]",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..location']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -23879,7 +24107,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/integration/services/internal/test_stackinfo.py::test_stackinfo_resource",
@@ -24255,7 +24483,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24265,7 +24493,17 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24275,7 +24513,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24285,7 +24523,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24295,7 +24533,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24305,7 +24543,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24315,7 +24553,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24325,7 +24563,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24335,7 +24573,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24345,7 +24583,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24355,7 +24593,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -24365,7 +24603,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24375,7 +24613,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24385,7 +24623,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24395,7 +24633,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24405,7 +24643,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24415,7 +24653,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24425,7 +24663,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24435,7 +24673,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24445,7 +24683,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24455,7 +24693,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -24465,7 +24703,107 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "404",
+ "error": "CommonServiceException",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -24974,16 +25312,6 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
}
]
}
@@ -26148,146 +26476,6 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "404",
- "error": "CommonServiceException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
}
]
}
@@ -26539,16 +26727,6 @@
},
"UserName": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
- "test": "test_autogenerated_values",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_autogenerated_values",
"test": "test_autogenerated_values",
@@ -26559,16 +26737,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
- "test": "test_black_box",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_black_box",
"test": "test_black_box",
@@ -26579,16 +26747,6 @@
"snapshot_tested": true,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
- "test": "test_getatt",
- "response": "200",
- "error": "",
- "snapshot_skipped": "all",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_basic.py::TestBasicCRD::test_getatt",
"test": "test_getatt",
@@ -26599,16 +26757,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
- "test": "test_create_with_full_properties",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/aws_iam_user/test_parity.py::TestParity::test_create_with_full_properties",
"test": "test_create_with_full_properties",
@@ -26627,17 +26775,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
- "test": "test_iam_username_defaultname",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..User.Tags']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_iam_username_defaultname",
@@ -26657,7 +26795,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -26667,7 +26805,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_create_user_add_permission_boundary_afterwards",
@@ -28089,7 +28227,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -28099,7 +28237,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -28109,7 +28247,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -28119,7 +28257,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw",
@@ -28199,7 +28337,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration",
@@ -28231,16 +28369,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_delete_role_detaches_role_policy",
- "test": "test_delete_role_detaches_role_policy",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
"test": "test_policy_attachments",
@@ -28251,16 +28379,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
- "test": "test_policy_attachments",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
"test": "test_update_inline_policy",
@@ -28269,7 +28387,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group",
@@ -28279,7 +28397,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata', '$..ActionAfterCompletion', '$..ScheduleExpressionTimezone']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_account",
@@ -28289,7 +28407,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -28299,7 +28417,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -28309,7 +28427,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -28319,7 +28437,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -28329,7 +28447,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -28339,7 +28457,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -28349,7 +28467,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -28359,7 +28477,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -28369,7 +28487,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
@@ -28379,7 +28497,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -28389,7 +28507,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -28399,16 +28517,6 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
- "test": "test_cfn_lambda_dynamodb_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -28419,16 +28527,6 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
- "test": "test_cfn_lambda_kinesis_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -28439,7 +28537,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions",
@@ -28449,16 +28547,6 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
- "test": "test_cfn_lambda_sqs_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -28469,7 +28557,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url",
@@ -28479,7 +28567,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config",
@@ -28489,7 +28577,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias",
@@ -28499,7 +28587,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run",
@@ -28509,7 +28597,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version",
@@ -28519,7 +28607,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn",
@@ -28529,7 +28617,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3",
@@ -28539,7 +28627,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_iam_role_resource_no_role_name",
@@ -28549,7 +28637,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -28559,7 +28647,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -28569,7 +28657,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -28579,7 +28667,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name",
@@ -28589,16 +28677,6 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
- "test": "test_sam_policies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -28609,7 +28687,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_template",
@@ -28619,7 +28697,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -28629,7 +28707,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -28639,7 +28717,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -28649,7 +28727,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -28659,7 +28737,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_cfn_statemachine_with_dependencies",
@@ -28669,7 +28747,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -28679,7 +28757,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -28689,7 +28767,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
@@ -28699,7 +28777,7 @@
"snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -28779,7 +28857,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
@@ -28829,7 +28907,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -28839,7 +28917,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -28849,7 +28927,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
@@ -28859,7 +28937,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/integration/test_config_service.py::TestConfigService::test_put_configuration_recorder",
@@ -28921,7 +28999,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
@@ -29161,7 +29239,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
@@ -29341,7 +29419,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -29351,7 +29429,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_cloudfront_distribution_with_logging",
@@ -29361,7 +29439,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
@@ -29371,7 +29449,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -29381,7 +29459,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -29391,7 +29469,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -29401,7 +29479,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -29411,7 +29489,27 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
@@ -29421,7 +29519,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_iot.py::test_role_alias",
@@ -29441,7 +29539,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
@@ -29451,7 +29549,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -29461,7 +29559,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -29471,7 +29569,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -29481,7 +29589,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -29641,7 +29749,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -30111,7 +30219,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_appsync_deployed",
@@ -31429,7 +31537,7 @@
"snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_destination_sns",
@@ -31439,7 +31547,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_stepfunctions_input_recipient_list[step_function_input4-FAILED]",
@@ -31449,7 +31557,7 @@
"snapshot_skipped": "['$..traceHeader', '$..cause', '$..error']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_notes_rest_api",
@@ -31459,7 +31567,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw",
@@ -31539,7 +31647,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_sqs.py::test_sqs_aws_integration",
@@ -31579,16 +31687,6 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
- "test": "test_policy_attachments",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
"origin": "external"
},
{
@@ -31599,7 +31697,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -31609,7 +31707,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group",
@@ -31619,7 +31717,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata', '$..ActionAfterCompletion', '$..ScheduleExpressionTimezone']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_account",
@@ -31629,7 +31727,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -31639,7 +31737,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -31649,7 +31747,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_url_output",
@@ -31659,7 +31757,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -31669,7 +31767,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -31679,7 +31777,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -31689,7 +31787,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -31699,7 +31797,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -31709,7 +31807,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
@@ -31719,7 +31817,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -31729,7 +31827,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -31739,16 +31837,6 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
- "test": "test_cfn_lambda_dynamodb_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -31759,16 +31847,6 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
- "test": "test_cfn_lambda_kinesis_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -31779,7 +31857,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions",
@@ -31789,16 +31867,6 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
- "test": "test_cfn_lambda_sqs_source",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
"origin": "external"
},
{
@@ -31809,7 +31877,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url",
@@ -31819,7 +31887,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_event_invoke_config",
@@ -31829,7 +31897,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_alias",
@@ -31839,7 +31907,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_cfn_run",
@@ -31849,7 +31917,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_lambda_version",
@@ -31859,7 +31927,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn",
@@ -31869,7 +31937,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_python_lambda_code_deployed_via_s3",
@@ -31879,7 +31947,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_iam_role_resource_no_role_name",
@@ -31889,7 +31957,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -31899,7 +31967,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -31909,7 +31977,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -31919,7 +31987,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name",
@@ -31929,7 +31997,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -31939,7 +32007,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_template",
@@ -31949,7 +32017,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -31959,7 +32027,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -31969,7 +32037,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -31979,7 +32047,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -31989,7 +32057,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_cfn_statemachine_with_dependencies",
@@ -31999,7 +32067,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -32009,7 +32077,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -32019,7 +32087,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
@@ -32029,7 +32097,7 @@
"snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_to_default_eventbus_for_custom_eventbus",
@@ -32109,7 +32177,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
@@ -32159,7 +32227,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_step_functions_calling_api_gateway",
@@ -32169,7 +32237,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
@@ -32179,7 +32247,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
@@ -32189,7 +32257,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/integration/test_config_service.py::TestConfigService::test_put_configuration_recorder",
@@ -32221,7 +32289,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
@@ -32461,7 +32529,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_step_functions_integration[host_based_url-1.0]",
@@ -32641,7 +32709,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_autoscaling.py::test_autoscaling_group",
@@ -32651,7 +32719,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cloudfront.py::test_cloudfront_distribution_with_logging",
@@ -32661,7 +32729,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_cognito.py::test_cognito_role_attachment",
@@ -32671,7 +32739,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
@@ -32681,7 +32749,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -32691,7 +32759,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -32701,7 +32769,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eks_fargate_cluster",
@@ -32711,7 +32779,27 @@
"snapshot_skipped": "['$..cluster.certificateAuthority', '$..cluster.endpoint', '$..cluster.kubernetesNetworkConfig', '$..cluster.logging', '$..cluster.platformVersion', '$..cluster.resourcesVpcConfig.clusterSecurityGroupId', '$..cluster.resourcesVpcConfig.vpcId', '$..cluster.status', '$..cluster.tags', '$..cluster.version', '$..fargateProfile..labels']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
@@ -32721,7 +32809,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_iot.py::test_role_alias",
@@ -32741,7 +32829,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
@@ -32751,7 +32839,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -32761,7 +32849,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
@@ -32771,7 +32859,17 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -32781,7 +32879,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_admin_no_srp_auth_flow",
@@ -32941,7 +33039,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -33411,7 +33509,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/test_terraform.py::TestTerraform::test_appsync_deployed",
@@ -34195,7 +34293,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -34271,7 +34369,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/lambda_destination/test_lambda_destination_scenario.py::TestLambdaDestinationScenario::test_infra",
@@ -34281,7 +34379,7 @@
"snapshot_skipped": "['$..Tags', '$..Attributes.DeliveryPolicy', '$..Attributes.EffectiveDeliveryPolicy.defaultHealthyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.guaranteed', '$..Attributes.EffectiveDeliveryPolicy.http', '$..Attributes.EffectiveDeliveryPolicy.sicklyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.throttlePolicy', '$..Attributes.Policy.Statement..Action', '$..Attributes.SubscriptionsConfirmed']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
@@ -34291,7 +34389,7 @@
"snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
@@ -34301,7 +34399,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]",
@@ -34401,7 +34499,7 @@
"snapshot_skipped": "['$..Role.Description', '$..Role.MaxSessionDuration', '$..Role.AssumeRolePolicyDocument..Action']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_policy_attachments",
@@ -34411,7 +34509,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -34421,7 +34519,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/scheduler/test_scheduler.py::test_schedule_and_group",
@@ -34431,7 +34529,7 @@
"snapshot_skipped": "['$..DriftInformation', '$..Metadata', '$..ActionAfterCompletion', '$..ScheduleExpressionTimezone']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
@@ -34441,7 +34539,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[10]",
@@ -34451,7 +34549,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -34461,7 +34559,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -34471,7 +34569,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
@@ -34481,7 +34579,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -34491,7 +34589,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_firehose.py::test_firehose_stack_with_kinesis_as_source",
@@ -34501,7 +34599,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -34511,7 +34609,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_dynamodb_source",
@@ -34521,7 +34619,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -34531,7 +34629,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_sqs_source",
@@ -34541,7 +34639,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -34551,7 +34649,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_functions_in_output_export_name",
@@ -34561,7 +34659,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_sub_in_lambda_function_name",
@@ -34571,7 +34669,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -34581,7 +34679,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -34591,7 +34689,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -34601,7 +34699,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -34611,7 +34709,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_nested_statemachine_with_sync2",
@@ -34621,7 +34719,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_statemachine_definitionsubstitution",
@@ -34631,7 +34729,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_role",
@@ -34651,7 +34749,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
@@ -34711,7 +34809,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
@@ -34721,7 +34819,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -34733,7 +34831,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_servicediscovery_ecs_integration",
@@ -34743,7 +34841,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/appconfig/test_appconfig.py::TestAppConfig::test_specify_resources_by_name",
@@ -34835,6 +34933,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_dynamodb_resolver_scan",
+ "test": "test_dynamodb_resolver_scan",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSync::test_iam_authorization",
"test": "test_iam_authorization",
@@ -34895,6 +35003,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/appsync/test_appsync.py::TestAppSyncDynamoDB::test_filter_expressions",
+ "test": "test_filter_expressions",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_customresources.py::test_customresource_lambda_backed",
"test": "test_customresource_lambda_backed",
@@ -34903,7 +35021,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -34913,7 +35031,7 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_ecs_alb_apigateway_integration",
@@ -34923,7 +35041,27 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_eks.py::test_eksctl_stack",
+ "test": "test_eksctl_stack",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SecurityGroup', '$..ServiceRoleARN', '$..NodeGroupId']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_glue.py::test_job",
@@ -34933,7 +35071,7 @@
"snapshot_skipped": "['$..Job.AllocatedCapacity', '$..Job.Command.PythonVersion', '$..Job.ExecutionProperty', '$..Job.GlueVersion', '$..Job.MaxCapacity', '$..Job.MaxRetries', '$..Job.Timeout']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
@@ -34943,7 +35081,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_rds.py::test_db_proxy",
@@ -34953,7 +35091,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudtrail/test_cloudtrail.py::TestCloudTrail::test_cdk_trail_cw_logs",
@@ -34963,7 +35101,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_service_run_task",
@@ -34973,7 +35111,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_create_task_with_secrets[False]",
@@ -35407,7 +35545,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resource_providers/iam/test_iam.py::test_update_inline_policy",
@@ -35417,7 +35555,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/iam/test_iam.py::TestIAMExtensions::test_get_user_without_username_as_user",
@@ -35615,7 +35753,7 @@
"snapshot_skipped": "['$..AutoScalingGroups..AvailabilityZones', '$..AutoScalingGroups..CapacityRebalance', '$..AutoScalingGroups..EnabledMetrics', '$..AutoScalingGroups..HealthCheckGracePeriod', '$..AutoScalingGroups..Tags', '$..AutoScalingGroups..TrafficSources']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_ecs.py::test_capacity_providers",
@@ -35625,7 +35763,17 @@
"snapshot_skipped": "['$..StackResourceDetail.DriftInformation', '$..StackResourceDetail.Metadata', '$..StackResourceDetail.PhysicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_elasticbeanstalk.py::test_application_with_version_and_environment",
+ "test": "test_application_with_version_and_environment",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..ApplicationVersions', '$..ConfigurationSettings..ApplicationName', '$..ConfigurationSettings..DateUpdated', '$..ConfigurationSettings..OptionSettings', '$..ConfigurationSettings..PlatformArn', '$..ConfigurationSettings..TemplateName', '$..Applications', '$..Environments']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -35725,7 +35873,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/iot.json b/data/coverage/iot.json
index ed6bca9dab..4e39321804 100644
--- a/data/coverage/iot.json
+++ b/data/coverage/iot.json
@@ -3191,7 +3191,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_policies",
@@ -3237,7 +3237,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3267,7 +3267,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_create_thing_idempotency[attribute_payload1]",
@@ -3561,7 +3561,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_topic_lambda_rule",
@@ -3741,7 +3741,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_policies",
@@ -3767,7 +3767,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_crud_role_alias",
@@ -3993,7 +3993,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTCrud::test_create_thing_idempotency[None]",
@@ -4085,7 +4085,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iot/test_iot.py::TestIoTData::test_registry_events_with_topic_rule_triggers_dynamodb_v2_put_item",
diff --git a/data/coverage/iotanalytics.json b/data/coverage/iotanalytics.json
index 8f71d28ff8..65331c6d85 100644
--- a/data/coverage/iotanalytics.json
+++ b/data/coverage/iotanalytics.json
@@ -437,7 +437,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -467,7 +467,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -497,7 +497,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -527,7 +527,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -553,7 +553,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -569,7 +569,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iotanalytics/test_iotanalytics.py::TestIotAnalytics::test_datasets",
@@ -595,7 +595,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iotanalytics/test_iotanalytics.py::TestIotAnalytics::test_datastores",
@@ -621,7 +621,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iotanalytics/test_iotanalytics.py::TestIotAnalytics::test_pipelines",
diff --git a/data/coverage/kafka.json b/data/coverage/kafka.json
index e0d0d7d897..9f8169b46a 100644
--- a/data/coverage/kafka.json
+++ b/data/coverage/kafka.json
@@ -50,6 +50,18 @@
"snapshot_skipped": ""
}
},
+ {
+ "CreateReplicator": {
+ "implemented": false,
+ "availability": "",
+ "internal_test_suite": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "snapshot_skipped": ""
+ }
+ },
{
"CreateVpcConnection": {
"implemented": false,
@@ -67,8 +79,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -98,6 +110,18 @@
"snapshot_skipped": ""
}
},
+ {
+ "DeleteReplicator": {
+ "implemented": false,
+ "availability": "",
+ "internal_test_suite": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "snapshot_skipped": ""
+ }
+ },
{
"DeleteVpcConnection": {
"implemented": false,
@@ -182,6 +206,18 @@
"snapshot_skipped": ""
}
},
+ {
+ "DescribeReplicator": {
+ "implemented": false,
+ "availability": "",
+ "internal_test_suite": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "snapshot_skipped": ""
+ }
+ },
{
"DescribeVpcConnection": {
"implemented": false,
@@ -338,6 +374,18 @@
"snapshot_skipped": ""
}
},
+ {
+ "ListReplicators": {
+ "implemented": false,
+ "availability": "",
+ "internal_test_suite": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "snapshot_skipped": ""
+ }
+ },
{
"ListScramSecrets": {
"implemented": false,
@@ -542,6 +590,18 @@
"snapshot_skipped": ""
}
},
+ {
+ "UpdateReplicationInfo": {
+ "implemented": false,
+ "availability": "",
+ "internal_test_suite": false,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "snapshot_skipped": ""
+ }
+ },
{
"UpdateSecurity": {
"implemented": false,
@@ -579,7 +639,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/kafka/test_kafka.py::TestKafka::test_create_cluster",
@@ -695,7 +755,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/kafka/test_kafka.py::TestKafka::test_cluster_v2_lifecycle",
diff --git a/data/coverage/kinesis.json b/data/coverage/kinesis.json
index 865c13ce69..0595eb7523 100644
--- a/data/coverage/kinesis.json
+++ b/data/coverage/kinesis.json
@@ -235,8 +235,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": false,
- "terraform_test_suite": false,
+ "external_test_suite": true,
+ "terraform_test_suite": true,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -379,7 +379,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -389,7 +389,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_default_parameters_kinesis",
@@ -399,7 +399,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf",
@@ -409,7 +409,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_kinesis_stream_consumer_creations",
@@ -419,7 +419,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_stream_creation",
@@ -429,7 +429,7 @@
"snapshot_skipped": "['$..StreamDescription.StreamModeDetails']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -439,7 +439,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -449,7 +449,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
@@ -459,7 +459,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -471,7 +471,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -567,6 +567,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream",
"test": "test_binary_data_with_stream",
@@ -602,7 +612,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -1765,7 +1775,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -1775,7 +1785,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_default_parameters_kinesis",
@@ -1785,7 +1795,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf",
@@ -1795,7 +1805,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_stream_creation",
@@ -1805,7 +1815,7 @@
"snapshot_skipped": "['$..StreamDescription.StreamModeDetails']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -1815,7 +1825,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -1825,7 +1835,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_kinesis_stream_consumer_creations",
@@ -1835,7 +1845,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
@@ -1845,7 +1855,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
@@ -1855,7 +1865,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -1867,7 +1877,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -1953,6 +1963,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream",
"test": "test_binary_data_with_stream",
@@ -1988,6 +2008,16 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id",
+ "test": "test_dynamodb_streams_describe_with_exclusive_start_shard_id",
+ "response": "200",
+ "error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
@@ -2193,16 +2223,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_streams_describe_with_exclusive_start_shard_id",
- "test": "test_dynamodb_streams_describe_with_exclusive_start_shard_id",
- "response": "400",
- "error": "ResourceInUseException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_stream_spec_and_region_replacement",
"test": "test_stream_spec_and_region_replacement",
@@ -2315,7 +2335,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -2325,7 +2345,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_default_parameters_kinesis",
@@ -2335,7 +2355,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf",
@@ -2345,7 +2365,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_kinesis_stream_consumer_creations",
@@ -2355,7 +2375,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_stream_creation",
@@ -2365,7 +2385,7 @@
"snapshot_skipped": "['$..StreamDescription.StreamModeDetails']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
@@ -2375,7 +2395,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
@@ -2385,7 +2405,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
@@ -2395,7 +2415,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
],
"ls_pro": [
@@ -2407,7 +2427,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2481,17 +2501,7 @@
"snapshot_skipped": "['$..Destinations']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
- "test": "test_cfn_handle_kinesis_firehose_resources",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_cfn_handle_kinesis_firehose_resources",
@@ -2511,7 +2521,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_dynamodb_stream_response_with_cf",
@@ -2521,7 +2531,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_kinesis_stream_consumer_creations",
@@ -2531,17 +2541,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_stream_creation",
- "test": "test_stream_creation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..StreamDescription.StreamModeDetails']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_stream_creation",
@@ -2571,16 +2571,16 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_kinesis_source",
- "test": "test_cfn_lambda_kinesis_source",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_template_with_short_form_fn_sub",
+ "test": "test_cfn_template_with_short_form_fn_sub",
"response": "200",
"error": "",
- "snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
@@ -2593,6 +2593,16 @@
"snapshot_tested": false,
"origin": "internal"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream",
"test": "test_binary_data_with_stream",
@@ -2628,7 +2638,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3093,16 +3103,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
- "test": "test_event_rules_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
"test": "test_event_rules_deployed",
@@ -3123,16 +3123,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_queue_handler_deployed",
- "test": "test_queue_handler_deployed",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
"test": "test_s3_bucket_deployed",
@@ -3153,7 +3143,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestApiGatewayIntegrations::test_kinesis_integration",
@@ -3241,16 +3231,6 @@
"DescribeStreamConsumer": {
"ConsumerARN": {
"ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_kinesis_stream_consumer_creations",
- "test": "test_kinesis_stream_consumer_creations",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "internal"
- },
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kinesis.py::test_kinesis_stream_consumer_creations",
"test": "test_kinesis_stream_consumer_creations",
@@ -3309,7 +3289,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3697,6 +3677,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_dynamodb_stream_handler_deployed",
+ "test": "test_dynamodb_stream_handler_deployed",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
"test": "test_event_rules_deployed",
@@ -3717,6 +3707,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_lambda_with_configs_deployed",
+ "test": "test_lambda_with_configs_deployed",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_queue_handler_deployed",
"test": "test_queue_handler_deployed",
@@ -3738,13 +3738,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_opensearch_crud",
- "test": "test_opensearch_crud",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_cfn_apigateway_aws_integration",
+ "test": "test_cfn_apigateway_aws_integration",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "['$..ClusterConfig.DedicatedMasterCount', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.DedicatedMasterType', '$..ClusterConfig.Options.DedicatedMasterCount', '$..ClusterConfig.Options.DedicatedMasterType', '$..DomainStatusList..EBSOptions.Iops', '$..SoftwareUpdateOptions', '$..OffPeakWindowOptions', '$..ChangeProgressDetails', '$..AutoTuneOptions.UseOffPeakWindow', '$..AutoTuneOptions.Options.UseOffPeakWindow', '$..ClusterConfig.MultiAZWithStandbyEnabled', '$..AdvancedSecurityOptions.AnonymousAuthEnabled', '$..AdvancedSecurityOptions.Options.AnonymousAuthEnabled', '$..DomainConfig.ClusterConfig.Options.WarmEnabled', '$..ClusterConfig.Options.ColdStorageOptions', '$..ClusterConfig.Options.MultiAZWithStandbyEnabled', '$..Processing', '$..ServiceSoftwareOptions.CurrentVersion', '$..ClusterConfig.DedicatedMasterEnabled', '$..ClusterConfig.InstanceType', '$..SnapshotOptions.Options.AutomatedSnapshotStartHour', '$..ClusterConfig.Options.DedicatedMasterEnabled', '$..ClusterConfig.Options.InstanceType', '$..AutoTuneOptions.State', '$..EBSOptions.Options.VolumeSize', '$..AdvancedOptions.\"rest.action.multi.allow_explicit_index\"', '$..AdvancedOptions.Options.\"rest.action.multi.allow_explicit_index\"', '$..Versions']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
@@ -3781,18 +3781,28 @@
"node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain]",
"test": "test_kinesis_firehose_opensearch_s3_backup[domain]",
"response": "400",
- "error": "ResourceNotFoundException",
+ "error": "ResourceInUseException",
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_create_stream_without_shard_count",
- "test": "test_create_stream_without_shard_count",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::TestFirehoseIntegration::test_kinesis_firehose_opensearch_s3_backup[domain]",
+ "test": "test_kinesis_firehose_opensearch_s3_backup[domain]",
"response": "400",
"error": "ResourceNotFoundException",
"snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb",
+ "test": "test_deletion_event_source_mapping_with_dynamodb",
+ "response": "400",
+ "error": "ResourceInUseException",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -3878,13 +3888,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config",
- "test": "test_dynamodb_event_source_mapping_with_on_failure_destination_config",
+ "node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_s3_bucket_deployed",
+ "test": "test_s3_bucket_deployed",
"response": "400",
"error": "ResourceInUseException",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
}
],
@@ -4010,8 +4020,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lakeformation/test_lakeformation.py::TestLakeFormation::test_manage_permissions",
- "test": "test_manage_permissions",
+ "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal",
+ "test": "test_stream_journal",
"response": "200",
"error": "",
"snapshot_skipped": "",
@@ -4020,1663 +4030,23 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_download",
- "test": "test_external_layer_download",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
+ "test": "test_lambda_layer_python",
+ "response": "400",
+ "error": "ResourceInUseException",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_exceptions",
- "test": "test_external_layer_exceptions",
- "response": "200",
- "error": "",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
+ "test": "test_lambda_layer_python",
+ "response": "400",
+ "error": "ResourceNotFoundException",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_multiple_versions",
- "test": "test_external_layer_multiple_versions",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestExternalLayerDownload::test_external_layer_specific",
- "test": "test_external_layer_specific",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LogResult']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_chained_invocation",
- "test": "test_container_image_lambda_chained_invocation",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_container_image_lambda_with_image_config",
- "test": "test_container_image_lambda_with_image_config",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LogResult']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[node]",
- "test": "test_lambda_from_image[node]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaContainer::test_lambda_from_image[python]",
- "test": "test_lambda_from_image[python]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_cross_account_layer",
- "test": "test_cross_account_layer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_multiple_layers_override",
- "test": "test_function_multiple_layers_override",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LogResult']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_using_layer",
- "test": "test_function_using_layer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..LogResult', '$..Payload.layer']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_using_layer_overriding_runtime",
- "test": "test_function_using_layer_overriding_runtime",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLayerHotReloading::test_layer_and_function_hot_reloading",
- "test": "test_layer_and_function_hot_reloading",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLayerHotReloading::test_layer_only_hot_reloading",
- "test": "test_layer_only_hot_reloading",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLayerHotReloading::test_multiple_hot_reloading_layers_fail",
- "test": "test_multiple_hot_reloading_layers_fail",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java11]",
- "test": "test_calling_localstack_from_lambda[java11]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java17]",
- "test": "test_calling_localstack_from_lambda[java17]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8.al2]",
- "test": "test_calling_localstack_from_lambda[java8.al2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8]",
- "test": "test_calling_localstack_from_lambda[java8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs14.x]",
- "test": "test_calling_localstack_from_lambda[nodejs14.x]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs16.x]",
- "test": "test_calling_localstack_from_lambda[nodejs16.x]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs18.x]",
- "test": "test_calling_localstack_from_lambda[nodejs18.x]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.10]",
- "test": "test_calling_localstack_from_lambda[python3.10]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.11]",
- "test": "test_calling_localstack_from_lambda[python3.11]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.7]",
- "test": "test_calling_localstack_from_lambda[python3.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.8]",
- "test": "test_calling_localstack_from_lambda[python3.8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.9]",
- "test": "test_calling_localstack_from_lambda[python3.9]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_endpoint_injection.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby2.7]",
- "test": "test_calling_localstack_from_lambda[ruby2.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_extensions_api.py::TestExtensionsApi::test_generic_extension_full_lifecycle",
- "test": "test_generic_extension_full_lifecycle",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..shutdownReason', \"$..['Content-Type']\", '$..env']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda_xray.py::TestLambdaXrayIntegration::test_basic_xray_integration",
- "test": "test_basic_xray_integration",
- "response": "200",
- "error": "",
- "snapshot_skipped": "all",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_filter_log_events_with_non_json_messages",
- "test": "test_filter_log_events_with_non_json_messages",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/logs/test_logs.py::TestCloudWatchLogsPro::test_put_subscription_filter_kinesis_with_filter_pattern",
- "test": "test_put_subscription_filter_kinesis_with_filter_pattern",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mediastore/test_mediastore.py::TestMediastore::test_basic_mediastore_api",
- "test": "test_basic_mediastore_api",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_create_broker",
- "test": "test_create_broker",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_create_tags",
- "test": "test_create_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_delete_broker",
- "test": "test_delete_broker",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_delete_tags",
- "test": "test_delete_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_describe_broker",
- "test": "test_describe_broker",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..body', '$..BrokerState', '$..MaintenanceWindowStartTime', '$..Users', '$..AuthenticationStrategy', '$..AutoMinorVersionUpgrade', '$..BrokerInstances', '$..EncryptionOptions', '$..Logs', '$..Configurations', '$..EngineVersion', '$..PubliclyAccessible', '$..SecurityGroups', '$..StorageType', '$..SubnetIds']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_list_brokers",
- "test": "test_list_brokers",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..BrokerState', '$..EngineType']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_send_to_active_mq",
- "test": "test_send_to_active_mq",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/mq/test_mq.py::TestMQ::test_send_to_activemq_curl",
- "test": "test_send_to_activemq_curl",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_cluster_with_tags",
- "test": "test_create_cluster_with_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_neo4j_cluster",
- "test": "test_create_neo4j_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.1.0.0-3.4.11]",
- "test": "test_create_query_db[1.1.0.0-3.4.11]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.2.0.1-3.5.2]",
- "test": "test_create_query_db[1.2.0.1-3.5.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[1.2.1.0-3.6.2]",
- "test": "test_create_query_db[1.2.1.0-3.6.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db[None-3.4.13]",
- "test": "test_create_query_db[None-3.4.13]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune.py::TestNeptune::test_create_query_db_tags",
- "test": "test_create_query_db_tags",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_describe",
- "test": "test_describe",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Parameters', '$..DBInstances..AllocatedStorage', '$..DBInstances..AvailabilityZone', '$..DBInstances..DBName', '$..DBInstances..DBSubnetGroup', '$..DBInstances..DbInstancePort', '$..DBInstances..DomainMemberships', '$..DBInstances..EnabledCloudwatchLogsExports', '$..DBInstances..EngineVersion', '$..DBInstances..KmsKeyId', '$..DBInstances..LicenseModel', '$..DBInstances..MasterUsername', '$..DBInstances..MonitoringInterval', '$..DBInstances..OptionGroupMemberships..OptionGroupName', '$..DBInstances..PendingModifiedValues', '$..DBInstances..PerformanceInsightsEnabled', '$..DBInstances..PromotionTier', '$..DBInstances..StatusInfos', '$..DBInstances..StorageEncrypted', '$..DBInstances..StorageType', '$..DBInstances..DbiResourceId', '$..DBInstances..VpcSecurityGroups..VpcSecurityGroupId', '$..DBClusters..AssociatedRoles', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..KmsKeyId', '$..DBClusters..LatestRestorableTime', '$..DBClusters..MasterUsername', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..ReaderEndpoint']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/neptune/test_neptune_cfn.py::TestNeptuneCfn::test_query",
- "test": "test_query",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/organizations/test_organizations.py::TestOrganizations::test_organization",
- "test": "test_organization",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_complex_insert",
- "test": "test_complex_insert",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_list_tables",
- "test": "test_list_tables",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_by_metadata",
- "test": "test_query_by_metadata",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_committed_views",
- "test": "test_query_committed_views",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_history",
- "test": "test_query_history",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_history_with_start_end_timestamps",
- "test": "test_query_history_with_start_end_timestamps",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_join_tables",
- "test": "test_query_join_tables",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_query_with_parameters",
- "test": "test_query_with_parameters",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/qldb/test_qldb.py::TestQLDB::test_stream_journal",
- "test": "test_stream_journal",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_cluster_endpoint_address[False]",
- "test": "test_cluster_endpoint_address[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_cluster_endpoint_address[True]",
- "test": "test_cluster_endpoint_address[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_create_modify_option_group",
- "test": "test_create_modify_option_group",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..OptionGroupsList..AllowsVpcAndNonVpcInstanceMemberships', '$..OptionGroup.AllowsVpcAndNonVpcInstanceMemberships']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_db_subnet_group",
- "test": "test_db_subnet_group",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsCrud::test_negative_cases_modify_option_group",
- "test": "test_negative_cases_modify_option_group",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..OptionGroup.AllowsVpcAndNonVpcInstanceMemberships']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMariaDB::test_create_mariadb",
- "test": "test_create_mariadb",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMssql::test_create_mssql",
- "test": "test_create_mssql",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_create_mysql[False-5.7.39-MariaDB]",
- "test": "test_create_mysql[False-5.7.39-MariaDB]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_create_mysql[True-8.0.30-MySQL Community Server]",
- "test": "test_create_mysql[True-8.0.30-MySQL Community Server]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_data_api[False]",
- "test": "test_data_api[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..columnMetadata..precision']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsMysql::test_data_api[True]",
- "test": "test_data_api[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..columnMetadata..precision']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_add_role_to_db_cluster",
- "test": "test_add_role_to_db_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_add_role_to_db_instance",
- "test": "test_add_role_to_db_instance",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_postgres",
- "test": "test_create_aurora_postgres",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_postgres_instance",
- "test": "test_create_aurora_postgres_instance",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_v2_cluster",
- "test": "test_create_aurora_v2_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..StorageType', '$..AvailabilityZone', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_aurora_v2_cluster_delete_instances",
- "test": "test_create_aurora_v2_cluster_delete_instances",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..AllocatedStorage', '$..DBParameterGroups', '$..StorageType', '$..EngineVersion', '$..AvailabilityZone', '$..PromotionTier', '$..StorageThroughput', '$..CertificateDetails', '$..delete_db_cluster.DBCluster.DBClusterMembers', '$..ActivityStreamStatus', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DbClusterResourceId', '$..DeletionProtection', '$..EarliestRestorableTime', '$..EngineMode', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..LatestRestorableTime', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..DBClusterMembers..IsClusterWriter', '$..DBClusterParameterGroup', '$..Port']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_db_custom_port",
- "test": "test_create_db_custom_port",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_postgres",
- "test": "test_create_postgres",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_snapshot_cluster",
- "test": "test_create_snapshot_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_create_snapshot_instance",
- "test": "test_create_snapshot_instance",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_data_api",
- "test": "test_data_api",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..columnMetadata[8].precision', '$..records[0].[14].stringValue', '$..records[0].[15].stringValue']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_cluster_already_exists",
- "test": "test_db_cluster_already_exists",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_cluster_endpoints",
- "test": "test_db_cluster_endpoints",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_cluster_scaling",
- "test": "test_db_cluster_scaling",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_instance_already_exists",
- "test": "test_db_instance_already_exists",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..BackupTarget', '$..CACertificateIdentifier', '$..CustomerOwnedIpEnabled', '$..DBSubnetGroup', '$..DomainMemberships', '$..MonitoringInterval', '$..CertificateDetails', '$..StorageThroughput', '$..NetworkType', '$..PendingModifiedValues', '$..PerformanceInsightsEnabled', '$..Endpoint.HostedZoneId', '$..LatestRestorableTime', '$..PubliclyAccessible', '$..AutoMinorVersionUpgrade', '$..OptionGroupName', '$..DbInstancePort', '$..LicenseModel', '$..InstanceCreateTime', '$..StatusInfos', '$..EnabledCloudwatchLogsExports', '$..DBName']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_db_proxies",
- "test": "test_db_proxies",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_generate_db_auth_token",
- "test": "test_generate_db_auth_token",
- "response": "200",
- "error": "",
- "snapshot_skipped": "all",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_iam_db_token_auth_from_lambda",
- "test": "test_iam_db_token_auth_from_lambda",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_modify_db_cluster",
- "test": "test_modify_db_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_modify_db_instance_with_db_parameter_group",
- "test": "test_modify_db_instance_with_db_parameter_group",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_db_parametergroup_named_default",
- "test": "test_postgres_db_parametergroup_named_default",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[11.15]",
- "test": "test_postgres_versions[11.15]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[12.9]",
- "test": "test_postgres_versions[12.9]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_postgres_versions[13.4]",
- "test": "test_postgres_versions[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_query_from_s3",
- "test": "test_query_from_s3",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgres::test_serverless_no_custom_cluster_endpoint",
- "test": "test_serverless_no_custom_cluster_endpoint",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ActivityStreamStatus', '$..AssociatedRoles', '$..AutoMinorVersionUpgrade', '$..AvailabilityZones', '$..BackupRetentionPeriod', '$..Capacity', '$..ClusterCreateTime', '$..CopyTagsToSnapshot', '$..CrossAccountClone', '$..DBSubnetGroup', '$..DbClusterResourceId', '$..DeletionProtection', '$..DomainMemberships', '$..EarliestRestorableTime', '$..HostedZoneId', '$..HttpEndpointEnabled', '$..KmsKeyId', '$..LatestRestorableTime', '$..NetworkType', '$..PreferredBackupWindow', '$..PreferredMaintenanceWindow', '$..ReadReplicaIdentifiers', '$..ScalingConfigurationInfo', '$..DBClusterParameterGroup', '$..StorageEncrypted', '$..DatabaseName']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[10.23]",
- "test": "test_lambda_extensions[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[11.16]",
- "test": "test_lambda_extensions[11.16]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[12.8]",
- "test": "test_lambda_extensions[12.8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[13.4]",
- "test": "test_lambda_extensions[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[14.7]",
- "test": "test_lambda_extensions[14.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_lambda_extensions[15.2]",
- "test": "test_lambda_extensions[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[10.23]",
- "test": "test_postgres_extension_query_export_to_s3[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[11.16]",
- "test": "test_postgres_extension_query_export_to_s3[11.16]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[12.8]",
- "test": "test_postgres_extension_query_export_to_s3[12.8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[13.4]",
- "test": "test_postgres_extension_query_export_to_s3[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[14.7]",
- "test": "test_postgres_extension_query_export_to_s3[14.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_query_export_to_s3[15.2]",
- "test": "test_postgres_extension_query_export_to_s3[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[10.23]",
- "test": "test_postgres_extension_table_import_from_s3[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[11.16]",
- "test": "test_postgres_extension_table_import_from_s3[11.16]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[12.8]",
- "test": "test_postgres_extension_table_import_from_s3[12.8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[13.4]",
- "test": "test_postgres_extension_table_import_from_s3[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[14.7]",
- "test": "test_postgres_extension_table_import_from_s3[14.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_extension_table_import_from_s3[15.2]",
- "test": "test_postgres_extension_table_import_from_s3[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[10.23]",
- "test": "test_postgres_s3_extension_helpers[10.23]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[11.16]",
- "test": "test_postgres_s3_extension_helpers[11.16]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[12.8]",
- "test": "test_postgres_s3_extension_helpers[12.8]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[13.4]",
- "test": "test_postgres_s3_extension_helpers[13.4]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[14.7]",
- "test": "test_postgres_s3_extension_helpers[14.7]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsPostgresExtensions::test_postgres_s3_extension_helpers[15.2]",
- "test": "test_postgres_s3_extension_helpers[15.2]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_cluster_with_instances",
- "test": "test_reset_cluster_with_instances",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[mariadb]",
- "test": "test_reset_db_instance[mariadb]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[mysql]",
- "test": "test_reset_db_instance[mysql]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds.py::TestRdsReset::test_reset_db_instance[sqlserver-se]",
- "test": "test_reset_db_instance[sqlserver-se]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_read_write",
- "test": "test_global_cluster_read_write",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalCluster::test_global_cluster_remove_instances_from_cluster",
- "test": "test_global_cluster_remove_instances_from_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_failover",
- "test": "test_failover",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_invalid_secondary_cluster",
- "test": "test_invalid_secondary_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_promote_secondary_headless",
- "test": "test_promote_secondary_headless",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/rds/test_rds_global.py::TestGlobalClusterCDK::test_validate_initial_setup",
- "test": "test_validate_initial_setup",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterMembers..PromotionTier', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..GlobalWriteForwardingRequested', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_create_cluster",
- "test": "test_create_cluster",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/redshift/test_redshift.py::TestRedshift::test_redshift_connector",
- "test": "test_redshift_connector",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/route53/test_route53.py::TestRoute53::test_dns_failover_based_on_health_check",
- "test": "test_dns_failover_based_on_health_check",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..CallerReference', '$..HealthCheckConfig.EnableSNI', '$..HealthCheckConfig.FullyQualifiedDomainName', '$..HealthCheckConfig.IPAddress', '$..HealthCheckConfig.Port', '$..HealthCheckConfig.Type', '$..ttl']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/route53/test_route53.py::TestRoute53::test_dns_resolution[True]",
- "test": "test_dns_resolution[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/s3/test_s3_select.py::TestS3Select::test_big_file_query[1000000]",
- "test": "test_big_file_query[1000000]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ServerSideEncryption']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/serverlessrepo/test_serverlessrepo.py::TestServerlessRepo::test_crud_formation_template",
- "test": "test_crud_formation_template",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/servicediscovery/test_servicediscovery.py::test_dns_namespace_private",
- "test": "test_dns_namespace_private",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/servicediscovery/test_servicediscovery.py::test_dns_namespace_with_and_without_dot[private-test-.com]",
- "test": "test_dns_namespace_with_and_without_dot[private-test-.com]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/servicediscovery/test_servicediscovery.py::test_dns_namespace_with_and_without_dot[public-test-.com]",
- "test": "test_dns_namespace_with_and_without_dot[public-test-.com]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/servicediscovery/test_servicediscovery.py::test_dns_namespace_with_and_without_dot[public-test-domain-]",
- "test": "test_dns_namespace_with_and_without_dot[public-test-domain-]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ses/test_ses.py::TestSes::test_receipt_rule_set",
- "test": "test_receipt_rule_set",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_cancel_command",
- "test": "test_cancel_command",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_describe_instance_information",
- "test": "test_describe_instance_information",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/ssm/test_ssm.py::TestSsm::test_send_command",
- "test": "test_send_command",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/sso_admin/test_sso_admin.py::TestSsoAdmin::test_list_permission_sets",
- "test": "test_list_permission_sets",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamBasic::test_describe_endpoints",
- "test": "test_describe_endpoints",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Address']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamBasic::test_list_tags_for_resource",
- "test": "test_list_tags_for_resource",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_ago_function",
- "test": "test_ago_function",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..Rows..Data..ScalarValue']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_bin_function[3d]",
- "test": "test_bin_function[3d]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_insert_different_data_types",
- "test": "test_insert_different_data_types",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_interpolation_function[False]",
- "test": "test_interpolation_function[False]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ColumnInfo..Name']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_interpolation_function[True]",
- "test": "test_interpolation_function[True]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ColumnInfo..Name']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_multi_records",
- "test": "test_multi_records",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_timestream_query[DB_TEST-MY_TABLE_NAME]",
- "test": "test_timestream_query[DB_TEST-MY_TABLE_NAME]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_timestream_query[db-{short_uid}-table{short_uid}]",
- "test": "test_timestream_query[db-{short_uid}-table{short_uid}]",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/timestream/test_timestream.py::TestTimestreamQueries::test_unnest_function",
- "test": "test_unnest_function",
- "response": "200",
- "error": "",
- "snapshot_skipped": "['$..ColumnInfo..Name']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_basic_transfer_api",
- "test": "test_basic_transfer_api",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_ftp_ssl_transfer",
- "test": "test_ftp_ssl_transfer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/transfer/test_transfer.py::TestAWSTransfer::test_ftp_transfer",
- "test": "test_ftp_transfer",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/xray/test_xray.py::TestXRay::test_create_and_get_sampling_rule",
- "test": "test_create_and_get_sampling_rule",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/xray/test_xray.py::TestXRay::test_create_existing_sampling_rule_raises_exception",
- "test": "test_create_existing_sampling_rule_raises_exception",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
- "test": "test_lambda_layer_python",
- "response": "400",
- "error": "ResourceInUseException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
- "test": "test_lambda_layer_python",
- "response": "400",
- "error": "ResourceNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestLambdaEventSourceMappings::test_kinesis_event_source_mapping",
- "test": "test_kinesis_event_source_mapping",
- "response": "400",
- "error": "AccessDeniedException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
}
]
@@ -5693,6 +4063,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream",
"test": "test_binary_data_with_stream",
@@ -5718,7 +4098,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -5842,26 +4222,6 @@
"aws_validated": true,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_get_records_empty_stream",
- "test": "test_get_records_empty_stream",
- "response": "400",
- "error": "ResourceNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_subscribe_to_shard_timeout",
- "test": "test_subscribe_to_shard_timeout",
- "response": "400",
- "error": "ResourceNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
}
],
"ls_pro": [
@@ -5936,7 +4296,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6057,6 +4417,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_dynamodb_stream_shard_iterator",
"test": "test_dynamodb_stream_shard_iterator",
@@ -6388,13 +4758,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSFilter::test_filter_policy_on_message_body_dot_attribute",
- "test": "test_filter_policy_on_message_body_dot_attribute",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap_redeploy",
+ "test": "test_cdk_bootstrap_redeploy",
"response": "400",
"error": "ResourceNotFoundException",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
}
],
@@ -6550,13 +4920,13 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_force_alias_creation",
+ "test": "test_force_alias_creation",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
}
]
@@ -6670,31 +5040,31 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
- "test": "test_prefill_dynamodb_table",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sqs.py::test_sqs_fifo_queue_generates_valid_name",
+ "test": "test_sqs_fifo_queue_generates_valid_name",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_ec2.py::test_internet_gateway_ref_and_attr",
- "test": "test_internet_gateway_ref_and_attr",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping",
+ "test": "test_disable_kinesis_event_source_mapping",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "['$..DriftInformation', '$..Metadata']",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/transcribe/test_transcribe.py::TestTranscribe::test_transcribe_supported_media_formats[../../files/en-gb.webm]",
- "test": "test_transcribe_supported_media_formats[../../files/en-gb.webm]",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/v2/scenarios/test_sfn_scenarios.py::TestFundamental::test_wait_for_callback",
+ "test": "test_wait_for_callback",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -6802,28 +5172,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestAuthFlows::test_srp_custom_auth_flow",
- "test": "test_srp_custom_auth_flow",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_check_message_action_suppress",
+ "test": "test_check_message_action_suppress",
"response": "400",
"error": "ResourceNotFoundException",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestCognito::test_token_endpoint[code-query_params]",
- "test": "test_token_endpoint[code-query_params]",
+ "node_id": "LocalStack Pro: tests/aws/services/cognito/test_cognito.py::TestTriggers::test_custom_auth_triggers",
+ "test": "test_custom_auth_triggers",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "['$..AllowedOAuthScopes']",
+ "snapshot_skipped": "['$..ChallengeParameters.USERNAME']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_user_data",
- "test": "test_user_data",
+ "node_id": "LocalStack Pro: tests/aws/services/ec2/test_ec2.py::TestEC2::test_create_instance_with_ebs_create_fs",
+ "test": "test_create_instance_with_ebs_create_fs",
"response": "400",
"error": "ResourceNotFoundException",
"snapshot_skipped": "",
@@ -6831,6 +5201,16 @@
"snapshot_tested": false,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestServiceCrud::test_create_delete_service",
+ "test": "test_create_delete_service",
+ "response": "400",
+ "error": "ResourceNotFoundException",
+ "snapshot_skipped": "['$..deploymentController', '$..enableECSManagedTags', '$..enableExecuteCommand', '$..placementConstraints', '$..propagateTags', '$..deployments', '$..status']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTaskExecution::test_describe_service_with_task_definition",
"test": "test_describe_service_with_task_definition",
@@ -6852,38 +5232,38 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-library/image@name:latest-False]",
- "test": "test_create_task_definition_validation[test-container-library/image@name:latest-False]",
+ "node_id": "LocalStack Pro: tests/aws/services/ecs/test_ecs.py::TestTasksCrud::test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
+ "test": "test_create_task_definition_validation[test-container-alpine@sha256:1fd62556954250bac80d601a196bb7fd480ceba7c10e94dd8fd4c6d1c08783d5-True]",
"response": "400",
"error": "ResourceNotFoundException",
- "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..Error.Message', '$..message', '$..tags']",
+ "snapshot_skipped": "['$..taskDefinition.networkMode', '$..taskDefinition.registeredBy', '$..taskDefinition.requiresAttributes', '$..tags']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestEKS::test_get_parameters_eks_amis[1.19]",
- "test": "test_get_parameters_eks_amis[1.19]",
+ "node_id": "LocalStack Pro: tests/aws/services/eks/test_eks.py::TestK3SCluster::test_create_app_in_k3s_cluster",
+ "test": "test_create_app_in_k3s_cluster",
"response": "400",
"error": "ResourceNotFoundException",
"snapshot_skipped": "",
- "aws_validated": true,
+ "aws_validated": false,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache.py::TestElastiCache::test_cluster_no_engine",
- "test": "test_cluster_no_engine",
+ "node_id": "LocalStack Pro: tests/aws/services/elasticache/test_elasticache_redis.py::TestCacheCluster::test_redis_connection",
+ "test": "test_redis_connection",
"response": "400",
"error": "ResourceNotFoundException",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_target_type_default_values[alb]",
- "test": "test_target_group_target_type_default_values[alb]",
+ "node_id": "LocalStack Pro: tests/aws/services/elbv2/test_elbv2_target_groups.py::TestElbV2TargetGroups::test_target_group_healthcheck_interval[TCP-False]",
+ "test": "test_target_group_healthcheck_interval[TCP-False]",
"response": "400",
"error": "ResourceNotFoundException",
"snapshot_skipped": "",
@@ -6978,13 +5358,13 @@
],
"ls_pro": [
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
- "test": "test_lambda_layer_python",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_kinesisanalytics.py::test_application_with_output_and_reference",
+ "test": "test_application_with_output_and_reference",
"response": "200",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..ApplicationDetail']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
@@ -7056,16 +5436,6 @@
"aws_validated": false,
"snapshot_tested": false,
"origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_lambda.py::TestLambdaLayer::test_lambda_layer_python",
- "test": "test_lambda_layer_python",
- "response": "400",
- "error": "ResourceNotFoundException",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
}
]
}
@@ -7341,6 +5711,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_batch_write_items_streaming",
+ "test": "test_batch_write_items_streaming",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/dynamodb/test_dynamodb.py::TestDynamoDB::test_binary_data_with_stream",
"test": "test_binary_data_with_stream",
@@ -7366,7 +5746,7 @@
"test": "test_dynamodb_stream_stream_view_type",
"response": "200",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..SizeBytes', '$..DeletionProtectionEnabled', '$..ProvisionedThroughput.NumberOfDecreasesToday', '$..StreamDescription.CreationRequestDateTime']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
@@ -7803,16 +6183,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestInterServiceCommunicationEnforcement::test_events_kinesis",
- "test": "test_events_kinesis",
- "response": "400",
- "error": "AccessDeniedException",
- "snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_inter_service_enforcement.py::TestInterServiceCommunicationEnforcement::test_events_kinesis",
"test": "test_events_kinesis",
@@ -7953,7 +6323,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kinesis/test_kinesis.py::TestKinesis::test_stream_consumers",
@@ -8003,7 +6373,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
diff --git a/data/coverage/kinesisanalytics.json b/data/coverage/kinesisanalytics.json
index d6d16a9d94..ab9e75a4d4 100644
--- a/data/coverage/kinesisanalytics.json
+++ b/data/coverage/kinesisanalytics.json
@@ -271,7 +271,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Pro: tests/aws/services/kinesisanalytics/test_kinesisanalytics.py::TestKinesisAnalyticsProvider::test_application_output",
@@ -297,7 +297,7 @@
"snapshot_skipped": "['$..ApplicationDetail']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
diff --git a/data/coverage/kms.json b/data/coverage/kms.json
index 97902863ce..5c8a1cedc9 100644
--- a/data/coverage/kms.json
+++ b/data/coverage/kms.json
@@ -631,7 +631,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -641,7 +641,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -651,7 +651,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources",
@@ -661,7 +661,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_all_types_of_key_id_can_be_used_for_encryption",
@@ -1013,6 +1013,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_parameters_for_import",
+ "test": "test_get_parameters_for_import",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_key_rotation_status",
"test": "test_key_rotation_status",
@@ -1615,6 +1625,20 @@
}
]
},
+ "Description, KeySpec, KeyUsage, Origin": {
+ "ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_parameters_for_import",
+ "test": "test_get_parameters_for_import",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ }
+ ]
+ },
"Description, KeyUsage": {
"ls_community": [
{
@@ -1687,7 +1711,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_put_list_key_policies",
@@ -1725,16 +1749,6 @@
}
],
"ls_pro": [
- {
- "node_id": "LocalStack Pro: tests/aws/services/kms/test_kms.py::TestKMS::test_create_key",
- "test": "test_create_key",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/kms/test_kms.py::TestKMS::test_create_key",
"test": "test_create_key",
@@ -1767,7 +1781,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -1777,7 +1791,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -1787,7 +1801,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms",
@@ -1797,7 +1811,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_kms_key_disabled",
@@ -1807,7 +1821,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
}
@@ -1981,7 +1995,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -1991,7 +2005,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -2001,7 +2015,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources",
@@ -2011,7 +2025,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_all_types_of_key_id_can_be_used_for_encryption",
@@ -2327,16 +2341,6 @@
"snapshot_tested": false,
"origin": "external"
},
- {
- "node_id": "LocalStack Pro: tests/aws/services/kms/test_kms.py::TestKMS::test_create_key",
- "test": "test_create_key",
- "response": "200",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
- },
{
"node_id": "LocalStack Pro: tests/aws/services/iam/test_iam_enforcement.py::TestIAMEnforcementResourceBasedPolicies::test_kms_key",
"test": "test_kms_key",
@@ -2361,7 +2365,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_cant_use_disabled_or_deleted_keys",
@@ -2397,7 +2401,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -2407,7 +2411,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -2417,7 +2421,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources",
@@ -2427,7 +2431,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms",
@@ -2437,7 +2441,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_kms_key_disabled",
@@ -2447,7 +2451,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_key_rotation_status",
@@ -2473,7 +2477,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -2483,7 +2487,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -2493,7 +2497,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources",
@@ -2503,7 +2507,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms",
@@ -2513,7 +2517,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_disable_and_enable_key",
@@ -3295,6 +3299,16 @@
"GetParametersForImport": {
"KeyId, WrappingAlgorithm, WrappingKeySpec": {
"ls_community": [
+ {
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_parameters_for_import",
+ "test": "test_get_parameters_for_import",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_import_key",
"test": "test_import_key",
@@ -3304,6 +3318,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_parameters_for_import",
+ "test": "test_get_parameters_for_import",
+ "response": "400",
+ "error": "UnsupportedOperationException",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
]
}
@@ -3879,7 +3903,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[11]",
@@ -3889,7 +3913,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_bootstrap[12]",
@@ -3899,7 +3923,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_cfn_with_kms_resources",
@@ -3909,7 +3933,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_deploy_stack_with_kms",
@@ -3919,7 +3943,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_kms.py::test_kms_key_disabled",
@@ -3929,7 +3953,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_cant_delete_deleted_key",
@@ -4235,6 +4259,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_parameters_for_import",
+ "test": "test_get_parameters_for_import",
+ "response": "200",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Community: tests/aws/services/kms/test_kms.py::TestKMS::test_get_public_key",
"test": "test_get_public_key",
diff --git a/data/coverage/lakeformation.json b/data/coverage/lakeformation.json
index f1eef36cec..0e5da59166 100644
--- a/data/coverage/lakeformation.json
+++ b/data/coverage/lakeformation.json
@@ -487,8 +487,8 @@
"implemented": true,
"availability": "pro",
"internal_test_suite": false,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": false,
"snapshot_tested": false,
"snapshot_skipped": ""
diff --git a/data/coverage/lambda.json b/data/coverage/lambda.json
index 19d80c687c..09c66a1140 100644
--- a/data/coverage/lambda.json
+++ b/data/coverage/lambda.json
@@ -7,8 +7,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -187,8 +187,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -199,8 +199,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -355,8 +355,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -367,8 +367,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -379,8 +379,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -463,8 +463,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -499,8 +499,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -523,8 +523,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -643,8 +643,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -667,8 +667,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -679,8 +679,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -691,8 +691,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -703,8 +703,8 @@
"implemented": true,
"availability": "community",
"internal_test_suite": true,
- "external_test_suite": true,
- "terraform_test_suite": true,
+ "external_test_suite": false,
+ "terraform_test_suite": false,
"aws_validated": true,
"snapshot_tested": true,
"snapshot_skipped": ""
@@ -1235,7 +1235,7 @@
"snapshot_skipped": "['$..Tags', '$..Attributes.DeliveryPolicy', '$..Attributes.EffectiveDeliveryPolicy.defaultHealthyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.guaranteed', '$..Attributes.EffectiveDeliveryPolicy.http', '$..Attributes.EffectiveDeliveryPolicy.sicklyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.throttlePolicy', '$..Attributes.Policy.Statement..Action', '$..Attributes.SubscriptionsConfirmed']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
@@ -1245,7 +1245,7 @@
"snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration_aws_type",
@@ -1295,7 +1295,7 @@
"snapshot_skipped": "['$..restapiEndpointC67DEFEA']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
@@ -1305,7 +1305,7 @@
"snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cdk.py::TestCdkInit::test_cdk_template",
@@ -1315,7 +1315,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_integration.py::test_events_sqs_sns_lambda",
@@ -1325,7 +1325,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::TestCfnLambdaIntegrations::test_cfn_lambda_permissions",
@@ -1335,7 +1335,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_legacy.py::TestCloudFormation::test_cfn_handle_serverless_api_resource",
@@ -1345,7 +1345,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_sam.py::test_sam_policies",
@@ -1355,7 +1355,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke",
@@ -1365,7 +1365,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost",
@@ -1375,7 +1375,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_localhost_with_path",
@@ -1385,7 +1385,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_stepfunctions.py::test_apigateway_invoke_with_path",
@@ -1395,7 +1395,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_add_lambda_permission_aws",
@@ -1475,7 +1475,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
@@ -1485,7 +1485,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_permission_exceptions",
@@ -1719,6 +1719,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/cloudfront/test_cloudfront.py::TestCloudFront::test_lambda_redirect",
+ "test": "test_lambda_redirect",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": false,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/elb/test_elb.py::TestELB::test_load_balancing",
"test": "test_load_balancing",
@@ -1801,7 +1811,7 @@
"snapshot_skipped": "['$..Tags', '$..Attributes.DeliveryPolicy', '$..Attributes.EffectiveDeliveryPolicy.defaultHealthyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.guaranteed', '$..Attributes.EffectiveDeliveryPolicy.http', '$..Attributes.EffectiveDeliveryPolicy.sicklyRetryPolicy', '$..Attributes.EffectiveDeliveryPolicy.throttlePolicy', '$..Attributes.Policy.Statement..Action', '$..Attributes.SubscriptionsConfirmed']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_cfn_function_url",
@@ -1811,7 +1821,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_lambda.py::test_multiple_lambda_permissions_for_singlefn",
@@ -1821,7 +1831,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_should_ignore_schedules_for_put_event",
@@ -2188,10 +2198,10 @@
"test": "test_create_misc_resources",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DbClusterResourceId', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
+ "snapshot_skipped": "['$..HomeRegion', '$..DBClusters..ActivityStreamStatus', '$..DBClusters..AssociatedRoles', '$..DBClusters..AutoMinorVersionUpgrade', '$..DBClusters..AvailabilityZones', '$..DBClusters..BackupRetentionPeriod', '$..DBClusters..ClusterCreateTime', '$..DBClusters..CopyTagsToSnapshot', '$..DBClusters..CrossAccountClone', '$..DBClusters..DBClusterParameterGroup', '$..DBClusters..DBSubnetGroup', '$..DBClusters..DatabaseName', '$..DBClusters..DeletionProtection', '$..DBClusters..DomainMemberships', '$..DBClusters..EarliestRestorableTime', '$..DBClusters..EngineMode', '$..DBClusters..EngineVersion', '$..DBClusters..EngineVersion', '$..DBClusters..HostedZoneId', '$..DBClusters..HttpEndpointEnabled', '$..DBClusters..LatestRestorableTime', '$..DBClusters..NetworkType', '$..DBClusters..PreferredBackupWindow', '$..DBClusters..PreferredMaintenanceWindow', '$..DBClusters..ReadReplicaIdentifiers', '$..DBClusters..TagList']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2219,7 +2229,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaAliases::test_lambda_alias_moving",
@@ -2449,7 +2459,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestCodeSigningConfig::test_code_signing_not_found_excs",
@@ -2519,7 +2529,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
@@ -2529,7 +2539,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2543,7 +2553,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2557,7 +2567,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2571,7 +2581,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2585,7 +2595,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/test_serverless.py::TestServerless::test_event_rules_deployed",
@@ -2595,7 +2605,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -2703,7 +2713,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationEventbridge::test_invoke_lambda_eventbridge",
@@ -2713,7 +2723,7 @@
"snapshot_skipped": "['$..AWSTraceHeader', '$..SenderId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
@@ -2753,7 +2763,7 @@
"snapshot_skipped": "['$..tracingConfiguration']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
"node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_event_source_mapping_default_batch_size",
@@ -3044,6 +3054,16 @@
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
+ },
+ {
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping_update",
+ "test": "test_sqs_event_source_mapping_update",
+ "response": "202",
+ "error": "",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
}
],
"ls_pro": [
@@ -3229,7 +3249,7 @@
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3411,7 +3431,7 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3473,7 +3493,7 @@
"snapshot_skipped": "['$..Configuration.RuntimeVersionConfig', '$..Configuration.SnapStart', '$..Versions..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
}
]
},
@@ -3531,6 +3551,16 @@
"snapshot_tested": true,
"origin": "external"
},
+ {
+ "node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_file_permissions_with_layer",
+ "test": "test_file_permissions_with_layer",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
+ "aws_validated": true,
+ "snapshot_tested": true,
+ "origin": "external"
+ },
{
"node_id": "LocalStack Pro: tests/aws/services/lambda_/test_lambda.py::TestLambdaLayerBehavior::test_function_multiple_layers_override",
"test": "test_function_multiple_layers_override",
@@ -3607,61 +3637,85 @@
"snapshot_skipped": "",
"aws_validated": false,
"snapshot_tested": false,
- "origin": "internal"
- },
+ "origin": "external"
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, MemorySize, Role, Runtime, Tags, Timeout": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[dotnet6]",
- "test": "test_calling_localstack_from_lambda[dotnet6]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
+ "test": "test_function_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, MemorySize, Role, Runtime, Tags, Timeout, VpcConfig": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[go1.x]",
- "test": "test_calling_localstack_from_lambda[go1.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_vpc_config",
+ "test": "test_vpc_config",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, PackageType, Publish, Role, Runtime": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java11]",
- "test": "test_calling_localstack_from_lambda[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAlias::test_notfound_and_invalid_routingconfigs",
+ "test": "test_notfound_and_invalid_routingconfigs",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, PackageType, Role, Runtime": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[java8.al2]",
- "test": "test_calling_localstack_from_lambda[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAlias::test_alias_lifecycle",
+ "test": "test_alias_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, Publish, Role, Runtime, Tags, Timeout": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs14.x]",
- "test": "test_calling_localstack_from_lambda[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_list_functions",
+ "test": "test_list_functions",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, Role, Runtime": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs16.x]",
- "test": "test_calling_localstack_from_lambda[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup",
+ "test": "test_setup",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -3670,502 +3724,468 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[nodejs18.x]",
- "test": "test_calling_localstack_from_lambda[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
+ "test": "test_prefill_dynamodb_table",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.10]",
- "test": "test_calling_localstack_from_lambda[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
+ "test": "test_validate_infra_setup",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ],
+ "ls_pro": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.11]",
- "test": "test_calling_localstack_from_lambda[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
+ "test": "test_secretsmanager_target_attachment_maridab",
"response": "201",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, Role, Runtime, SnapStart, Tags, Timeout": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.7]",
- "test": "test_calling_localstack_from_lambda[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_lifecycle[java11]",
+ "test": "test_snapstart_lifecycle[java11]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.8]",
- "test": "test_calling_localstack_from_lambda[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_lifecycle[java17]",
+ "test": "test_snapstart_lifecycle[java17]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ]
+ },
+ "Code, Environment, FunctionName, Handler, Role, Runtime, Tags, Timeout": {
+ "ls_community": [
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[python3.9]",
- "test": "test_calling_localstack_from_lambda[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_asynchronous_invocation",
+ "test": "test_api_gateway_lambda_asynchronous_invocation",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby2.7]",
- "test": "test_calling_localstack_from_lambda[ruby2.7]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration",
+ "test": "test_api_gateway_lambda_integration",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaCallingLocalstack::test_calling_localstack_from_lambda[ruby3.2]",
- "test": "test_calling_localstack_from_lambda[ruby3.2]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration_aws_type",
+ "test": "test_api_gateway_lambda_integration_aws_type",
"response": "201",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[dotnet6]",
- "test": "test_introspection_invoke[dotnet6]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration",
+ "test": "test_api_gateway_lambda_proxy_integration",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[go1.x]",
- "test": "test_introspection_invoke[go1.x]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method",
+ "test": "test_api_gateway_lambda_proxy_integration_any_method",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java11]",
- "test": "test_introspection_invoke[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method_with_path_param",
+ "test": "test_api_gateway_lambda_proxy_integration_any_method_with_path_param",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java17]",
- "test": "test_introspection_invoke[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_with_is_base_64_encoded",
+ "test": "test_api_gateway_lambda_proxy_integration_with_is_base_64_encoded",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java8.al2]",
- "test": "test_introspection_invoke[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_with_path_param",
+ "test": "test_api_gateway_lambda_proxy_integration_with_path_param",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[java8]",
- "test": "test_introspection_invoke[java8]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_custom_authorization_method",
+ "test": "test_apigateway_with_custom_authorization_method",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs14.x]",
- "test": "test_introspection_invoke[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]",
+ "test": "test_apigateway_with_step_function_integration[DeleteStateMachine]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs16.x]",
- "test": "test_introspection_invoke[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[StartExecution]",
+ "test": "test_apigateway_with_step_function_integration[StartExecution]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[nodejs18.x]",
- "test": "test_introspection_invoke[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[dev]",
+ "test": "test_apigw_stage_variables[dev]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[provided.al2]",
- "test": "test_introspection_invoke[provided.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[local]",
+ "test": "test_apigw_stage_variables[local]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[provided]",
- "test": "test_introspection_invoke[provided]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_test_invoke_method_api",
+ "test": "test_apigw_test_invoke_method_api",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.10]",
- "test": "test_introspection_invoke[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_malformed_response_apigw_invocation",
+ "test": "test_malformed_response_apigw_invocation",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.11]",
- "test": "test_introspection_invoke[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw",
+ "test": "test_response_headers_invocation_with_apigw",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.7]",
- "test": "test_introspection_invoke[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_sqs_integration_with_event_source",
+ "test": "test_api_gateway_sqs_integration_with_event_source",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.8]",
- "test": "test_introspection_invoke[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_apigateway_rust_lambda",
+ "test": "test_apigateway_rust_lambda",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[python3.9]",
- "test": "test_introspection_invoke[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-ANY]",
+ "test": "test_rest_api_multi_region[host_based_url-ANY]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[ruby2.7]",
- "test": "test_introspection_invoke[ruby2.7]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-GET]",
+ "test": "test_rest_api_multi_region[host_based_url-GET]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_introspection_invoke[ruby3.2]",
- "test": "test_introspection_invoke[ruby3.2]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-ANY]",
+ "test": "test_rest_api_multi_region[path_based_url-ANY]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..environment.LOCALSTACK_HOSTNAME', '$..environment.EDGE_PORT', '$..environment.AWS_ENDPOINT_URL', '$..environment.AWS_LAMBDA_FUNCTION_TIMEOUT', '$..environment.AWS_CONTAINER_AUTHORIZATION_TOKEN', '$..environment.AWS_CONTAINER_CREDENTIALS_FULL_URI', '$..environment.AWS_XRAY_CONTEXT_MISSING', '$..environment.AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_ADDRESS', '$..environment._AWS_XRAY_DAEMON_PORT', '$..environment._X_AMZN_TRACE_ID', '$..environment.NODE_EXTRA_CA_CERTS', '$..environment._LAMBDA_TELEMETRY_LOG_FD', '$..environment.AWS_EXECUTION_ENV', '$..environment.LD_LIBRARY_PATH', '$..environment.PATH', '$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs14.x]",
- "test": "test_runtime_wrapper_invoke[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-GET]",
+ "test": "test_rest_api_multi_region[path_based_url-GET]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs16.x]",
- "test": "test_runtime_wrapper_invoke[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestApiGatewayCommon::test_api_gateway_request_validator",
+ "test": "test_api_gateway_request_validator",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "['$.invalid-request-body.Type']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_common.py::TestLambdaRuntimesCommon::test_runtime_wrapper_invoke[nodejs18.x]",
- "test": "test_runtime_wrapper_invoke[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration",
+ "test": "test_lambda_aws_integration",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..CodeSha256']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, MemorySize, Role, Runtime, Tags, Timeout": {
- "ls_community": [
+ },
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_function_lifecycle",
- "test": "test_function_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_response_with_mapping_templates",
+ "test": "test_lambda_aws_integration_response_with_mapping_templates",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, MemorySize, Role, Runtime, Tags, Timeout, VpcConfig": {
- "ls_community": [
+ },
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_vpc_config",
- "test": "test_vpc_config",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_with_request_template",
+ "test": "test_lambda_aws_integration_with_request_template",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, PackageType, Publish, Role, Runtime": {
- "ls_community": [
+ },
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAlias::test_notfound_and_invalid_routingconfigs",
- "test": "test_notfound_and_invalid_routingconfigs",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_proxy_integration",
+ "test": "test_lambda_aws_proxy_integration",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..body', '$..headers.Accept', '$..headers.Content-Length', '$..headers.Accept-Encoding', '$..headers.Authorization', '$..headers.CloudFront-Forwarded-Proto', '$..headers.CloudFront-Is-Desktop-Viewer', '$..headers.CloudFront-Is-Mobile-Viewer', '$..headers.CloudFront-Is-SmartTV-Viewer', '$..headers.CloudFront-Is-Tablet-Viewer', '$..headers.CloudFront-Viewer-ASN', '$..headers.CloudFront-Viewer-Country', '$..headers.Connection', '$..headers.Host', '$..headers.Remote-Addr', '$..headers.Via', '$..headers.X-Amz-Cf-Id', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Forwarded-For', '$..headers.X-Forwarded-Port', '$..headers.X-Forwarded-Proto', '$..headers.accept', '$..headers.accept-encoding', '$..headers.x-localstack-edge', '$..headers.x-localstack-request-url', '$..headers.x-localstack-tgt-api', '$..multiValueHeaders.Content-Length', '$..multiValueHeaders.Accept', '$..multiValueHeaders.Accept-Encoding', '$..multiValueHeaders.Authorization', '$..multiValueHeaders.CloudFront-Forwarded-Proto', '$..multiValueHeaders.CloudFront-Is-Desktop-Viewer', '$..multiValueHeaders.CloudFront-Is-Mobile-Viewer', '$..multiValueHeaders.CloudFront-Is-SmartTV-Viewer', '$..multiValueHeaders.CloudFront-Is-Tablet-Viewer', '$..multiValueHeaders.CloudFront-Viewer-ASN', '$..multiValueHeaders.CloudFront-Viewer-Country', '$..multiValueHeaders.Connection', '$..multiValueHeaders.Host', '$..multiValueHeaders.Remote-Addr', '$..multiValueHeaders.Via', '$..multiValueHeaders.X-Amz-Cf-Id', '$..multiValueHeaders.X-Amzn-Trace-Id', '$..multiValueHeaders.X-Forwarded-For', '$..multiValueHeaders.X-Forwarded-Port', '$..multiValueHeaders.X-Forwarded-Proto', '$..multiValueHeaders.accept', '$..multiValueHeaders.accept-encoding', '$..multiValueHeaders.x-localstack-edge', '$..multiValueHeaders.x-localstack-request-url', '$..multiValueHeaders.x-localstack-tgt-api', '$..pathParameters', '$..requestContext.apiId', '$..requestContext.authorizer', '$..requestContext.domainName', '$..requestContext.domainPrefix', '$..requestContext.extendedRequestId', '$..requestContext.identity.accessKey', '$..requestContext.identity.accountId', '$..requestContext.identity.caller', '$..requestContext.identity.cognitoAuthenticationProvider', '$..requestContext.identity.cognitoAuthenticationType', '$..requestContext.identity.cognitoIdentityId', '$..requestContext.identity.cognitoIdentityPoolId', '$..requestContext.identity.principalOrgId', '$..requestContext.identity.user', '$..requestContext.identity.userArn', '$..stageVariables']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, PackageType, Role, Runtime": {
- "ls_community": [
+ },
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAlias::test_alias_lifecycle",
- "test": "test_alias_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_selection_patterns",
+ "test": "test_lambda_selection_patterns",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, Publish, Role, Runtime, Tags, Timeout": {
- "ls_community": [
+ },
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_list_functions",
- "test": "test_list_functions",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
+ "test": "test_rest_api_serverless_ref_resolving",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, Role, Runtime": {
- "ls_community": [
+ },
{
- "node_id": "LocalStack Community: tests/aws/scenario/bookstore/test_bookstore.py::TestBookstoreApplication::test_setup",
- "test": "test_setup",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudformation.py::test_create_macro",
+ "test": "test_create_macro",
"response": "201",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/scenario/loan_broker/test_loan_broker.py::TestLoanBrokerScenario::test_prefill_dynamodb_table",
- "test": "test_prefill_dynamodb_table",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
+ "test": "test_capabilities_requirements",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
+ "snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
+ "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/scenario/note_taking/test_note_taking.py::TestNoteTakingScenario::test_validate_infra_setup",
- "test": "test_validate_infra_setup",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[raise_error.py]",
+ "test": "test_failed_state[raise_error.py]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Tags', '$..get_resources.items', '$..rootResourceId', '$..Table.DeletionProtectionEnabled', '$..Table.ProvisionedThroughput.LastDecreaseDateTime', '$..Table.ProvisionedThroughput.LastIncreaseDateTime', '$..Table.Replicas']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- }
- ],
- "ls_pro": [
+ "origin": "external"
+ },
{
- "node_id": "LocalStack Pro: tests/aws/services/cloudformation/resources/test_secretsmanager.py::test_secretsmanager_target_attachment_maridab",
- "test": "test_secretsmanager_target_attachment_maridab",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_invalid_template.py]",
+ "test": "test_failed_state[return_invalid_template.py]",
"response": "201",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
- "origin": "internal"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, Role, Runtime, SnapStart, Tags, Timeout": {
- "ls_community": [
+ "origin": "external"
+ },
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_lifecycle[java11]",
- "test": "test_snapstart_lifecycle[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_with_message.py]",
+ "test": "test_failed_state[return_unsuccessful_with_message.py]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_lifecycle[java17]",
- "test": "test_snapstart_lifecycle[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_without_message.py]",
+ "test": "test_failed_state[return_unsuccessful_without_message.py]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- }
- ]
- },
- "Code, Environment, FunctionName, Handler, Role, Runtime, Tags, Timeout": {
- "ls_community": [
- {
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_asynchronous_invocation",
- "test": "test_api_gateway_lambda_asynchronous_invocation",
- "response": "201",
- "error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
- "origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration",
- "test": "test_api_gateway_lambda_integration",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_functions_and_references_during_transformation",
+ "test": "test_functions_and_references_during_transformation",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_integration_aws_type",
- "test": "test_api_gateway_lambda_integration_aws_type",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_global_scope",
+ "test": "test_global_scope",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration",
- "test": "test_api_gateway_lambda_proxy_integration",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_macro_deployment",
+ "test": "test_macro_deployment",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method",
- "test": "test_api_gateway_lambda_proxy_integration_any_method",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_to_validate_template_limit_for_macro",
+ "test": "test_to_validate_template_limit_for_macro",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_any_method_with_path_param",
- "test": "test_api_gateway_lambda_proxy_integration_any_method_with_path_param",
+ "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_validate_lambda_internals",
+ "test": "test_validate_lambda_internals",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Event.fragment.Conditions', '$..Event.fragment.Mappings', '$..Event.fragment.Outputs', '$..Event.fragment.Resources.Parameter.LogicalResourceId', '$..Event.fragment.StackId', '$..Event.fragment.StackName', '$..Event.fragment.Transform']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_with_is_base_64_encoded",
- "test": "test_api_gateway_lambda_proxy_integration_with_is_base_64_encoded",
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_lambda",
+ "test": "test_put_events_with_target_lambda",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -4174,18 +4194,18 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_api_gateway_lambda_proxy_integration_with_path_param",
- "test": "test_api_gateway_lambda_proxy_integration_with_path_param",
+ "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_should_ignore_schedules_for_put_event",
+ "test": "test_should_ignore_schedules_for_put_event",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_custom_authorization_method",
- "test": "test_apigateway_with_custom_authorization_method",
+ "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::test_firehose_http[True]",
+ "test": "test_firehose_http[True]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -4194,348 +4214,348 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[DeleteStateMachine]",
- "test": "test_apigateway_with_step_function_integration[DeleteStateMachine]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_assume_role[1]",
+ "test": "test_assume_role[1]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigateway_with_step_function_integration[StartExecution]",
- "test": "test_apigateway_with_step_function_integration[StartExecution]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_assume_role[2]",
+ "test": "test_assume_role[2]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[dev]",
- "test": "test_apigw_stage_variables[dev]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_lambda_different_iam_keys_environment",
+ "test": "test_lambda_different_iam_keys_environment",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_stage_variables[local]",
- "test": "test_apigw_stage_variables[local]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_large_payloads",
+ "test": "test_large_payloads",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_apigw_test_invoke_method_api",
- "test": "test_apigw_test_invoke_method_api",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_cache_local[nodejs]",
+ "test": "test_lambda_cache_local[nodejs]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_malformed_response_apigw_invocation",
- "test": "test_malformed_response_apigw_invocation",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_cache_local[python]",
+ "test": "test_lambda_cache_local[python]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestAPIGateway::test_response_headers_invocation_with_apigw",
- "test": "test_response_headers_invocation_with_apigw",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_invoke_no_timeout",
+ "test": "test_lambda_invoke_no_timeout",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::TestIntegrations::test_api_gateway_sqs_integration_with_event_source",
- "test": "test_api_gateway_sqs_integration_with_event_source",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_invoke_with_timeout",
+ "test": "test_lambda_invoke_with_timeout",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_apigateway_rust_lambda",
- "test": "test_apigateway_rust_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_runtime_ulimits",
+ "test": "test_runtime_ulimits",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-ANY]",
- "test": "test_rest_api_multi_region[host_based_url-ANY]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_lambda_concurrency_block",
+ "test": "test_lambda_concurrency_block",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[host_based_url-GET]",
- "test": "test_rest_api_multi_region[host_based_url-GET]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_lambda_concurrency_crud",
+ "test": "test_lambda_concurrency_crud",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-ANY]",
- "test": "test_rest_api_multi_region[path_based_url-ANY]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_provisioned_concurrency",
+ "test": "test_provisioned_concurrency",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_basic.py::test_rest_api_multi_region[path_based_url-GET]",
- "test": "test_rest_api_multi_region[path_based_url-GET]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_concurrency",
+ "test": "test_reserved_concurrency",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_common.py::TestApiGatewayCommon::test_api_gateway_request_validator",
- "test": "test_api_gateway_request_validator",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_concurrency_async_queue",
+ "test": "test_reserved_concurrency_async_queue",
"response": "201",
"error": "",
- "snapshot_skipped": "['$.invalid-request-body.Type']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration",
- "test": "test_lambda_aws_integration",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_provisioned_overlap",
+ "test": "test_reserved_provisioned_overlap",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_response_with_mapping_templates",
- "test": "test_lambda_aws_integration_response_with_mapping_templates",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_handler_error",
+ "test": "test_lambda_handler_error",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_integration_with_request_template",
- "test": "test_lambda_aws_integration_with_request_template",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_invoke_payload_encoding_error[body-n\\x87r\\x9e\\xe9\\xb5\\xd7I\\xee\\x9bmt]",
+ "test": "test_lambda_invoke_payload_encoding_error[body-n\\x87r\\x9e\\xe9\\xb5\\xd7I\\xee\\x9bmt]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_aws_proxy_integration",
- "test": "test_lambda_aws_proxy_integration",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_invoke_payload_encoding_error[message-\\x99\\xeb,j\\x07\\xa1zYh]",
+ "test": "test_lambda_invoke_payload_encoding_error[message-\\x99\\xeb,j\\x07\\xa1zYh]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..body', '$..headers.Accept', '$..headers.Content-Length', '$..headers.Accept-Encoding', '$..headers.Authorization', '$..headers.CloudFront-Forwarded-Proto', '$..headers.CloudFront-Is-Desktop-Viewer', '$..headers.CloudFront-Is-Mobile-Viewer', '$..headers.CloudFront-Is-SmartTV-Viewer', '$..headers.CloudFront-Is-Tablet-Viewer', '$..headers.CloudFront-Viewer-ASN', '$..headers.CloudFront-Viewer-Country', '$..headers.Connection', '$..headers.Host', '$..headers.Remote-Addr', '$..headers.Via', '$..headers.X-Amz-Cf-Id', '$..headers.X-Amzn-Trace-Id', '$..headers.X-Forwarded-For', '$..headers.X-Forwarded-Port', '$..headers.X-Forwarded-Proto', '$..headers.accept', '$..headers.accept-encoding', '$..headers.x-localstack-edge', '$..headers.x-localstack-request-url', '$..headers.x-localstack-tgt-api', '$..multiValueHeaders.Content-Length', '$..multiValueHeaders.Accept', '$..multiValueHeaders.Accept-Encoding', '$..multiValueHeaders.Authorization', '$..multiValueHeaders.CloudFront-Forwarded-Proto', '$..multiValueHeaders.CloudFront-Is-Desktop-Viewer', '$..multiValueHeaders.CloudFront-Is-Mobile-Viewer', '$..multiValueHeaders.CloudFront-Is-SmartTV-Viewer', '$..multiValueHeaders.CloudFront-Is-Tablet-Viewer', '$..multiValueHeaders.CloudFront-Viewer-ASN', '$..multiValueHeaders.CloudFront-Viewer-Country', '$..multiValueHeaders.Connection', '$..multiValueHeaders.Host', '$..multiValueHeaders.Remote-Addr', '$..multiValueHeaders.Via', '$..multiValueHeaders.X-Amz-Cf-Id', '$..multiValueHeaders.X-Amzn-Trace-Id', '$..multiValueHeaders.X-Forwarded-For', '$..multiValueHeaders.X-Forwarded-Port', '$..multiValueHeaders.X-Forwarded-Proto', '$..multiValueHeaders.accept', '$..multiValueHeaders.accept-encoding', '$..multiValueHeaders.x-localstack-edge', '$..multiValueHeaders.x-localstack-request-url', '$..multiValueHeaders.x-localstack-tgt-api', '$..pathParameters', '$..requestContext.apiId', '$..requestContext.authorizer', '$..requestContext.domainName', '$..requestContext.domainPrefix', '$..requestContext.extendedRequestId', '$..requestContext.identity.accessKey', '$..requestContext.identity.accountId', '$..requestContext.identity.caller', '$..requestContext.identity.cognitoAuthenticationProvider', '$..requestContext.identity.cognitoAuthenticationType', '$..requestContext.identity.cognitoIdentityId', '$..requestContext.identity.cognitoIdentityPoolId', '$..requestContext.identity.principalOrgId', '$..requestContext.identity.user', '$..requestContext.identity.userArn', '$..stageVariables']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/apigateway/test_apigateway_lambda.py::test_lambda_selection_patterns",
- "test": "test_lambda_selection_patterns",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_runtime_error",
+ "test": "test_lambda_runtime_error",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_apigateway.py::test_rest_api_serverless_ref_resolving",
- "test": "test_rest_api_serverless_ref_resolving",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_runtime_startup_error",
+ "test": "test_lambda_runtime_startup_error",
"response": "201",
"error": "",
- "snapshot_skipped": "['$.put-ssm-param.Tier', '$.get-resources.items..resourceMethods.GET', '$.get-resources.items..resourceMethods.OPTIONS', '$..methodIntegration.cacheNamespace', '$.get-authorizers.items..authorizerResultTtlInSeconds']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/resources/test_cloudformation.py::test_create_macro",
- "test": "test_create_macro",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_runtime_startup_timeout",
+ "test": "test_lambda_runtime_startup_timeout",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_capabilities_requirements",
- "test": "test_capabilities_requirements",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_event[nodejs16.x]",
+ "test": "test_invocation_type_event[nodejs16.x]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.Parameters', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform', '$..TemplateBody.Resources.Role.LogicalResourceId']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[raise_error.py]",
- "test": "test_failed_state[raise_error.py]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_event[python3.10]",
+ "test": "test_invocation_type_event[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_invalid_template.py]",
- "test": "test_failed_state[return_invalid_template.py]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_request_response[nodejs16.x]",
+ "test": "test_invocation_type_request_response[nodejs16.x]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_with_message.py]",
- "test": "test_failed_state[return_unsuccessful_with_message.py]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_request_response[python3.10]",
+ "test": "test_invocation_type_request_response[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_failed_state[return_unsuccessful_without_message.py]",
- "test": "test_failed_state[return_unsuccessful_without_message.py]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_with_logs[nodejs16.x]",
+ "test": "test_invocation_with_logs[nodejs16.x]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_functions_and_references_during_transformation",
- "test": "test_functions_and_references_during_transformation",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_with_logs[python3.10]",
+ "test": "test_invocation_with_logs[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_global_scope",
- "test": "test_global_scope",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaMultiAccounts::test_cross_account_access",
+ "test": "test_cross_account_access",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..TemplateBody.Resources.Parameter.LogicalResourceId', '$..TemplateBody.Conditions', '$..TemplateBody.Mappings', '$..TemplateBody.StackId', '$..TemplateBody.StackName', '$..TemplateBody.Transform']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_macro_deployment",
- "test": "test_macro_deployment",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_echo_invoke",
+ "test": "test_lambda_url_echo_invoke",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_to_validate_template_limit_for_macro",
- "test": "test_to_validate_template_limit_for_macro",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[boolean]",
+ "test": "test_lambda_url_invocation[boolean]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/cloudformation/test_template_engine.py::TestMacros::test_validate_lambda_internals",
- "test": "test_validate_lambda_internals",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[dict]",
+ "test": "test_lambda_url_invocation[dict]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Event.fragment.Conditions', '$..Event.fragment.Mappings', '$..Event.fragment.Outputs', '$..Event.fragment.Resources.Parameter.LogicalResourceId', '$..Event.fragment.StackId', '$..Event.fragment.StackName', '$..Event.fragment.Transform']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_put_events_with_target_lambda",
- "test": "test_put_events_with_target_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[float]",
+ "test": "test_lambda_url_invocation[float]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/events/test_events.py::TestEvents::test_should_ignore_schedules_for_put_event",
- "test": "test_should_ignore_schedules_for_put_event",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[http-response-json]",
+ "test": "test_lambda_url_invocation[http-response-json]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/firehose/test_firehose.py::test_firehose_http[True]",
- "test": "test_firehose_http[True]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[http-response]",
+ "test": "test_lambda_url_invocation[http-response]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_assume_role[1]",
- "test": "test_assume_role[1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[integer]",
+ "test": "test_lambda_url_invocation[integer]",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
@@ -4544,8 +4564,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_assume_role[2]",
- "test": "test_assume_role[2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[list-mixed]",
+ "test": "test_lambda_url_invocation[list-mixed]",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
@@ -4554,8 +4574,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_lambda_different_iam_keys_environment",
- "test": "test_lambda_different_iam_keys_environment",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[string]",
+ "test": "test_lambda_url_invocation[string]",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
@@ -4564,8 +4584,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBaseFeatures::test_large_payloads",
- "test": "test_large_payloads",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation_exception",
+ "test": "test_lambda_url_invocation_exception",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
@@ -4574,8 +4594,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_cache_local[nodejs]",
- "test": "test_lambda_cache_local[nodejs]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_async_invoke_with_retry",
+ "test": "test_request_id_async_invoke_with_retry",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
@@ -4584,8 +4604,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_cache_local[python]",
- "test": "test_lambda_cache_local[python]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_invoke",
+ "test": "test_request_id_invoke",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
@@ -4594,8 +4614,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_invoke_no_timeout",
- "test": "test_lambda_invoke_no_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_invoke_url",
+ "test": "test_request_id_invoke_url",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
@@ -4604,348 +4624,348 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_lambda_invoke_with_timeout",
- "test": "test_lambda_invoke_with_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestCodeSigningConfig::test_code_signing_not_found_excs",
+ "test": "test_code_signing_not_found_excs",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaBehavior::test_runtime_ulimits",
- "test": "test_runtime_ulimits",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestCodeSigningConfig::test_function_code_signing_config",
+ "test": "test_function_code_signing_config",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_lambda_concurrency_block",
- "test": "test_lambda_concurrency_block",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAccountSettings::test_account_settings_total_code_size",
+ "test": "test_account_settings_total_code_size",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_lambda_concurrency_crud",
- "test": "test_lambda_concurrency_crud",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAccountSettings::test_account_settings_total_code_size_config_update",
+ "test": "test_account_settings_total_code_size_config_update",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_provisioned_concurrency",
- "test": "test_provisioned_concurrency",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventInvokeConfig::test_lambda_eventinvokeconfig_exceptions",
+ "test": "test_lambda_eventinvokeconfig_exceptions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_concurrency",
- "test": "test_reserved_concurrency",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventInvokeConfig::test_lambda_eventinvokeconfig_lifecycle",
+ "test": "test_lambda_eventinvokeconfig_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_concurrency_async_queue",
- "test": "test_reserved_concurrency_async_queue",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation",
+ "test": "test_create_event_source_validation",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaConcurrency::test_reserved_provisioned_overlap",
- "test": "test_reserved_provisioned_overlap",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle",
+ "test": "test_event_source_mapping_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_handler_error",
- "test": "test_lambda_handler_error",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_list_functions",
+ "test": "test_list_functions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_invoke_payload_encoding_error[body-n\\x87r\\x9e\\xe9\\xb5\\xd7I\\xee\\x9bmt]",
- "test": "test_lambda_invoke_payload_encoding_error[body-n\\x87r\\x9e\\xe9\\xb5\\xd7I\\xee\\x9bmt]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_function_exceptions",
+ "test": "test_layer_function_exceptions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_invoke_payload_encoding_error[message-\\x99\\xeb,j\\x07\\xa1zYh]",
- "test": "test_lambda_invoke_payload_encoding_error[message-\\x99\\xeb,j\\x07\\xa1zYh]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_lifecycle",
+ "test": "test_layer_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_runtime_error",
- "test": "test_lambda_runtime_error",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_add_lambda_permission_aws",
+ "test": "test_add_lambda_permission_aws",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_runtime_startup_error",
- "test": "test_lambda_runtime_startup_error",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_add_lambda_permission_fields",
+ "test": "test_add_lambda_permission_fields",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaErrors::test_lambda_runtime_startup_timeout",
- "test": "test_lambda_runtime_startup_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_create_multiple_lambda_permissions",
+ "test": "test_create_multiple_lambda_permissions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_event[nodejs16.x]",
- "test": "test_invocation_type_event[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_lambda_permission_fn_versioning",
+ "test": "test_lambda_permission_fn_versioning",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_event[python3.10]",
- "test": "test_invocation_type_event[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_permission_exceptions",
+ "test": "test_permission_exceptions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_request_response[nodejs16.x]",
- "test": "test_invocation_type_request_response[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_remove_multi_permissions",
+ "test": "test_remove_multi_permissions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_type_request_response[python3.10]",
- "test": "test_invocation_type_request_response[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_lambda_provisioned_lifecycle",
+ "test": "test_lambda_provisioned_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_with_logs[nodejs16.x]",
- "test": "test_invocation_with_logs[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_provisioned_concurrency_exceptions",
+ "test": "test_provisioned_concurrency_exceptions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaFeatures::test_invocation_with_logs[python3.10]",
- "test": "test_invocation_with_logs[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_provisioned_concurrency_limits",
+ "test": "test_provisioned_concurrency_limits",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaMultiAccounts::test_cross_account_access",
- "test": "test_cross_account_access",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency",
+ "test": "test_function_concurrency",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_echo_invoke",
- "test": "test_lambda_url_echo_invoke",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency_exceptions",
+ "test": "test_function_concurrency_exceptions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[boolean]",
- "test": "test_lambda_url_invocation[boolean]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency_limits",
+ "test": "test_function_concurrency_limits",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[dict]",
- "test": "test_lambda_url_invocation[dict]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_basic",
+ "test": "test_function_revisions_basic",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[float]",
- "test": "test_lambda_url_invocation[float]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_permissions",
+ "test": "test_function_revisions_permissions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[http-response-json]",
- "test": "test_lambda_url_invocation[http-response-json]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_version_and_alias",
+ "test": "test_function_revisions_version_and_alias",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[http-response]",
- "test": "test_lambda_url_invocation[http-response]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_lambda_envvars_near_limit_succeeds",
+ "test": "test_lambda_envvars_near_limit_succeeds",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[integer]",
- "test": "test_lambda_url_invocation[integer]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java11]",
+ "test": "test_snapstart_update_function_configuration[java11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[list-mixed]",
- "test": "test_lambda_url_invocation[list-mixed]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java17]",
+ "test": "test_snapstart_update_function_configuration[java17]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation[string]",
- "test": "test_lambda_url_invocation[string]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_create_tag_on_fn_create",
+ "test": "test_create_tag_on_fn_create",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestLambdaURL::test_lambda_url_invocation_exception",
- "test": "test_lambda_url_invocation_exception",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_tag_lifecycle",
+ "test": "test_tag_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_async_invoke_with_retry",
- "test": "test_request_id_async_invoke_with_retry",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_tag_nonexisting_resource",
+ "test": "test_tag_nonexisting_resource",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_invoke",
- "test": "test_request_id_invoke",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_exceptions",
+ "test": "test_tag_exceptions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda.py::TestRequestIdHandling::test_request_id_invoke_url",
- "test": "test_request_id_invoke_url",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_lifecycle",
+ "test": "test_tag_lifecycle",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..SnapStart']",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestCodeSigningConfig::test_code_signing_not_found_excs",
- "test": "test_code_signing_not_found_excs",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_limits",
+ "test": "test_tag_limits",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
@@ -4954,8 +4974,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestCodeSigningConfig::test_function_code_signing_config",
- "test": "test_function_code_signing_config",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_versions",
+ "test": "test_tag_versions",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
@@ -4964,8 +4984,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAccountSettings::test_account_settings_total_code_size",
- "test": "test_account_settings_total_code_size",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_exceptions",
+ "test": "test_url_config_exceptions",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
@@ -4974,8 +4994,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaAccountSettings::test_account_settings_total_code_size_config_update",
- "test": "test_account_settings_total_code_size_config_update",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_lifecycle",
+ "test": "test_url_config_lifecycle",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
@@ -4984,8 +5004,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventInvokeConfig::test_lambda_eventinvokeconfig_exceptions",
- "test": "test_lambda_eventinvokeconfig_exceptions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_list_paging",
+ "test": "test_url_config_list_paging",
"response": "201",
"error": "",
"snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
@@ -4994,1118 +5014,1120 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventInvokeConfig::test_lambda_eventinvokeconfig_lifecycle",
- "test": "test_lambda_eventinvokeconfig_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload0]",
+ "test": "test_assess_lambda_destination_invocation[payload0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_create_event_source_validation",
- "test": "test_create_event_source_validation",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload1]",
+ "test": "test_assess_lambda_destination_invocation[payload1]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaEventSourceMappings::test_event_source_mapping_lifecycle",
- "test": "test_event_source_mapping_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_lambda_destination_default_retries",
+ "test": "test_lambda_destination_default_retries",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaFunction::test_list_functions",
- "test": "test_list_functions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_additional_docker_flags",
+ "test": "test_additional_docker_flags",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_function_exceptions",
- "test": "test_layer_function_exceptions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestLambdaDNS::test_lambda_localhost_localstack_cloud_connectivity",
+ "test": "test_lambda_localhost_localstack_cloud_connectivity",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaLayer::test_layer_lifecycle",
- "test": "test_layer_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb",
+ "test": "test_deletion_event_source_mapping_with_dynamodb",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_add_lambda_permission_aws",
- "test": "test_add_lambda_permission_aws",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping",
+ "test": "test_disabled_dynamodb_event_source_mapping",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_add_lambda_permission_fields",
- "test": "test_add_lambda_permission_fields",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
+ "test": "test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_create_multiple_lambda_permissions",
- "test": "test_create_multiple_lambda_permissions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
+ "test": "test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_lambda_permission_fn_versioning",
- "test": "test_lambda_permission_fn_versioning",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
+ "test": "test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_permission_exceptions",
- "test": "test_permission_exceptions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
+ "test": "test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaPermissions::test_remove_multi_permissions",
- "test": "test_remove_multi_permissions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
+ "test": "test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_lambda_provisioned_lifecycle",
- "test": "test_lambda_provisioned_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
+ "test": "test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_provisioned_concurrency_exceptions",
- "test": "test_provisioned_concurrency_exceptions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
+ "test": "test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaProvisionedConcurrency::test_provisioned_concurrency_limits",
- "test": "test_provisioned_concurrency_limits",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
+ "test": "test_dynamodb_event_source_mapping",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency",
- "test": "test_function_concurrency",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config",
+ "test": "test_dynamodb_event_source_mapping_with_on_failure_destination_config",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency_exceptions",
- "test": "test_function_concurrency_exceptions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
+ "test": "test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaReservedConcurrency::test_function_concurrency_limits",
- "test": "test_function_concurrency_limits",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string]",
+ "test": "test_dynamodb_invalid_event_filter[single-string]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_basic",
- "test": "test_function_revisions_basic",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_create_kinesis_event_source_mapping",
+ "test": "test_create_kinesis_event_source_mapping",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_permissions",
- "test": "test_function_revisions_permissions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping",
+ "test": "test_disable_kinesis_event_source_mapping",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaRevisions::test_function_revisions_version_and_alias",
- "test": "test_function_revisions_version_and_alias",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_mapping_with_on_failure_destination_config",
+ "test": "test_kinesis_event_source_mapping_with_on_failure_destination_config",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_lambda_envvars_near_limit_succeeds",
- "test": "test_lambda_envvars_near_limit_succeeds",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_trim_horizon",
+ "test": "test_kinesis_event_source_trim_horizon",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java11]",
- "test": "test_snapstart_update_function_configuration[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_event_source_mapping_default_batch_size",
+ "test": "test_event_source_mapping_default_batch_size",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSnapStart::test_snapstart_update_function_configuration[java17]",
- "test": "test_snapstart_update_function_configuration[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
+ "test": "test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_create_tag_on_fn_create",
- "test": "test_create_tag_on_fn_create",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
+ "test": "test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_tag_lifecycle",
- "test": "test_tag_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
+ "test": "test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTag::test_tag_nonexisting_resource",
- "test": "test_tag_nonexisting_resource",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
+ "test": "test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_exceptions",
- "test": "test_tag_exceptions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter4-item_matching4-this is a test string]",
+ "test": "test_sqs_event_filter[filter4-item_matching4-this is a test string]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_lifecycle",
- "test": "test_tag_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
+ "test": "test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_limits",
- "test": "test_tag_limits",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
+ "test": "test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaTags::test_tag_versions",
- "test": "test_tag_versions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
+ "test": "test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_exceptions",
- "test": "test_url_config_exceptions",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping",
+ "test": "test_sqs_event_source_mapping",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_lifecycle",
- "test": "test_url_config_lifecycle",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping_update",
+ "test": "test_sqs_event_source_mapping_update",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaUrl::test_url_config_list_paging",
- "test": "test_url_config_list_paging",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[None]",
+ "test": "test_sqs_invalid_event_filter[None]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload0]",
- "test": "test_assess_lambda_destination_invocation[payload0]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter2]",
+ "test": "test_sqs_invalid_event_filter[invalid_filter2]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_assess_lambda_destination_invocation[payload1]",
- "test": "test_assess_lambda_destination_invocation[payload1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter3]",
+ "test": "test_sqs_invalid_event_filter[invalid_filter3]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..context', '$..MessageId', '$..functionArn', '$..FunctionArn', '$..approximateInvokeCount', '$..stackTrace', '$..Messages..Body.responsePayload.requestId']",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_destinations.py::TestLambdaDestinationSqs::test_lambda_destination_default_retries",
- "test": "test_lambda_destination_default_retries",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[simple string]",
+ "test": "test_sqs_invalid_event_filter[simple string]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestDockerFlags::test_additional_docker_flags",
- "test": "test_additional_docker_flags",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
+ "test": "test_failing_lambda_retries_after_visibility_timeout",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_developer_tools.py::TestLambdaDNS::test_lambda_localhost_localstack_cloud_connectivity",
- "test": "test_lambda_localhost_localstack_cloud_connectivity",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_message_body_and_attributes_passed_correctly",
+ "test": "test_message_body_and_attributes_passed_correctly",
"response": "201",
"error": "",
- "snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "snapshot_skipped": "['$..stringListValues', '$..binaryListValues']",
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_deletion_event_source_mapping_with_dynamodb",
- "test": "test_deletion_event_source_mapping_with_dynamodb",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_redrive_policy_with_failing_lambda",
+ "test": "test_redrive_policy_with_failing_lambda",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_disabled_dynamodb_event_source_mapping",
- "test": "test_disabled_dynamodb_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures",
+ "test": "test_report_batch_item_failures",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..SequenceNumber', '$..receiptHandle', '$..md5OfBody', '$..MD5OfMessageBody', '$..create_event_source_mapping.ParallelizationFactor', '$..create_event_source_mapping.LastProcessingResult', '$..create_event_source_mapping.Topics', '$..create_event_source_mapping.MaximumRetryAttempts', '$..create_event_source_mapping.MaximumBatchingWindowInSeconds', '$..create_event_source_mapping.FunctionResponseTypes', '$..create_event_source_mapping.StartingPosition', '$..create_event_source_mapping.StateTransitionReason', '$..create_event_source_mapping.State', '$..create_event_source_mapping.ResponseMetadata']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
- "test": "test_dynamodb_event_filter[item_to_put10-None-filter0-1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_empty_json_batch_succeeds",
+ "test": "test_report_batch_item_failures_empty_json_batch_succeeds",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
- "test": "test_dynamodb_event_filter[item_to_put11-item_to_put21-filter1-2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_invalid_result_json_batch_fails",
+ "test": "test_report_batch_item_failures_invalid_result_json_batch_fails",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
- "test": "test_dynamodb_event_filter[item_to_put12-item_to_put22-filter2-1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_on_lambda_error",
+ "test": "test_report_batch_item_failures_on_lambda_error",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
- "test": "test_dynamodb_event_filter[item_to_put13-item_to_put23-filter3-1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
+ "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
- "test": "test_dynamodb_event_filter[item_to_put14-item_to_put24-filter4-0]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
+ "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
- "test": "test_dynamodb_event_filter[item_to_put15-item_to_put25-filter5-0]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
+ "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
- "test": "test_dynamodb_event_filter[item_to_put16-item_to_put26-filter6-1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_runtime_with_lib",
+ "test": "test_java_runtime_with_lib",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping",
- "test": "test_dynamodb_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java11]",
+ "test": "test_serializable_input_object[java11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_event_source_mapping_with_on_failure_destination_config",
- "test": "test_dynamodb_event_source_mapping_with_on_failure_destination_config",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java17]",
+ "test": "test_serializable_input_object[java17]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
- "test": "test_dynamodb_invalid_event_filter[[{\"eventName\": [\"INSERT\"=123}]]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8.al2]",
+ "test": "test_serializable_input_object[java8.al2]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_dynamodbstreams.py::TestDynamoDBEventSourceMapping::test_dynamodb_invalid_event_filter[single-string]",
- "test": "test_dynamodb_invalid_event_filter[single-string]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8]",
+ "test": "test_serializable_input_object[java8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_create_kinesis_event_source_mapping",
- "test": "test_create_kinesis_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java11]",
+ "test": "test_stream_handler[java11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_disable_kinesis_event_source_mapping",
- "test": "test_disable_kinesis_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java17]",
+ "test": "test_stream_handler[java17]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_mapping_with_on_failure_destination_config",
- "test": "test_kinesis_event_source_mapping_with_on_failure_destination_config",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8.al2]",
+ "test": "test_stream_handler[java8.al2]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_kinesis.py::TestKinesisSource::test_kinesis_event_source_trim_horizon",
- "test": "test_kinesis_event_source_trim_horizon",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8]",
+ "test": "test_stream_handler[java8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Records..eventID', '$..Records..kinesis.kinesisSchemaVersion', '$..BisectBatchOnFunctionError', '$..DestinationConfig', '$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRecordAgeInSeconds', '$..ResponseMetadata.HTTPStatusCode', '$..State', '$..Topics', '$..TumblingWindowInSeconds']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_event_source_mapping_default_batch_size",
- "test": "test_event_source_mapping_default_batch_size",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs14.x]",
+ "test": "test_invoke_nodejs_es6_lambda[nodejs14.x]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
- "test": "test_sqs_event_filter[filter0-item_matching0-item_not_matching0]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs16.x]",
+ "test": "test_invoke_nodejs_es6_lambda[nodejs16.x]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
- "test": "test_sqs_event_filter[filter1-item_matching1-item_not_matching1]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs18.x]",
+ "test": "test_invoke_nodejs_es6_lambda[nodejs18.x]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
- "test": "test_sqs_event_filter[filter2-item_matching2-item_not_matching2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.10]",
+ "test": "test_handler_in_submodule[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
- "test": "test_sqs_event_filter[filter3-item_matching3-item_not_matching3]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.11]",
+ "test": "test_handler_in_submodule[python3.11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter4-item_matching4-this is a test string]",
- "test": "test_sqs_event_filter[filter4-item_matching4-this is a test string]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.7]",
+ "test": "test_handler_in_submodule[python3.7]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
- "test": "test_sqs_event_filter[filter5-item_matching5-item_not_matching5]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.8]",
+ "test": "test_handler_in_submodule[python3.8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
- "test": "test_sqs_event_filter[filter6-item_matching6-item_not_matching6]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.9]",
+ "test": "test_handler_in_submodule[python3.9]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
- "test": "test_sqs_event_filter[filter7-item_matching7-item_not_matching7]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.10]",
+ "test": "test_python_runtime_correct_versions[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_event_source_mapping",
- "test": "test_sqs_event_source_mapping",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.11]",
+ "test": "test_python_runtime_correct_versions[python3.11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[None]",
- "test": "test_sqs_invalid_event_filter[None]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.7]",
+ "test": "test_python_runtime_correct_versions[python3.7]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter2]",
- "test": "test_sqs_invalid_event_filter[invalid_filter2]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.8]",
+ "test": "test_python_runtime_correct_versions[python3.8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[invalid_filter3]",
- "test": "test_sqs_invalid_event_filter[invalid_filter3]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.9]",
+ "test": "test_python_runtime_correct_versions[python3.9]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::TestSQSEventSourceMapping::test_sqs_invalid_event_filter[simple string]",
- "test": "test_sqs_invalid_event_filter[simple string]",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.10]",
+ "test": "test_python_runtime_unhandled_errors[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..FunctionResponseTypes', '$..LastProcessingResult', '$..MaximumBatchingWindowInSeconds', '$..MaximumRetryAttempts', '$..ParallelizationFactor', '$..ResponseMetadata.HTTPStatusCode', '$..StartingPosition', '$..State', '$..StateTransitionReason', '$..Topics', '$..Records..md5OfMessageAttributes']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_failing_lambda_retries_after_visibility_timeout",
- "test": "test_failing_lambda_retries_after_visibility_timeout",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.11]",
+ "test": "test_python_runtime_unhandled_errors[python3.11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_message_body_and_attributes_passed_correctly",
- "test": "test_message_body_and_attributes_passed_correctly",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.7]",
+ "test": "test_python_runtime_unhandled_errors[python3.7]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..stringListValues', '$..binaryListValues']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_redrive_policy_with_failing_lambda",
- "test": "test_redrive_policy_with_failing_lambda",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.8]",
+ "test": "test_python_runtime_unhandled_errors[python3.8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..ParallelizationFactor', '$..LastProcessingResult', '$..Topics', '$..MaximumRetryAttempts', '$..MaximumBatchingWindowInSeconds', '$..FunctionResponseTypes', '$..StartingPosition', '$..StateTransitionReason']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures",
- "test": "test_report_batch_item_failures",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.9]",
+ "test": "test_python_runtime_unhandled_errors[python3.9]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..SequenceNumber', '$..receiptHandle', '$..md5OfBody', '$..MD5OfMessageBody', '$..create_event_source_mapping.ParallelizationFactor', '$..create_event_source_mapping.LastProcessingResult', '$..create_event_source_mapping.Topics', '$..create_event_source_mapping.MaximumRetryAttempts', '$..create_event_source_mapping.MaximumBatchingWindowInSeconds', '$..create_event_source_mapping.FunctionResponseTypes', '$..create_event_source_mapping.StartingPosition', '$..create_event_source_mapping.StateTransitionReason', '$..create_event_source_mapping.State', '$..create_event_source_mapping.ResponseMetadata']",
+ "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_empty_json_batch_succeeds",
- "test": "test_report_batch_item_failures_empty_json_batch_succeeds",
+ "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_lambda",
+ "test": "test_put_subscription_filter_lambda",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..Statement.Condition.StringEquals', '$..add_permission.ResponseMetadata.HTTPStatusCode']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_invalid_result_json_batch_fails",
- "test": "test_report_batch_item_failures_invalid_result_json_batch_fails",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_download_object_with_lambda",
+ "test": "test_s3_download_object_with_lambda",
"response": "201",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_integration_sqs.py::test_report_batch_item_failures_on_lambda_error",
- "test": "test_report_batch_item_failures_on_lambda_error",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_lambda_integration",
+ "test": "test_s3_lambda_integration",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..AcceptRanges']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
- "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom-INTERFACE]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_signed_headers_in_qs",
+ "test": "test_presigned_url_v4_signed_headers_in_qs",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
- "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequest-INTERFACE]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_x_amz_in_qs",
+ "test": "test_presigned_url_v4_x_amz_in_qs",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
- "test": "test_java_custom_handler_method_specification[cloud.localstack.sample.LambdaHandlerWithInterfaceAndCustom::handleRequestCustom-CUSTOM]",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
+ "test": "test_create_object_by_presigned_request_via_dynamodb",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..data.s3.object.eTag', '$..data.s3.object.versionId', '$..data.s3.object.size']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_java_runtime_with_lib",
- "test": "test_java_runtime_with_lib",
+ "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb",
+ "test": "test_create_object_put_via_dynamodb",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java11]",
- "test": "test_serializable_input_object[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishDelivery::test_delivery_lambda",
+ "test": "test_delivery_lambda",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java17]",
- "test": "test_serializable_input_object[java17]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_python_lambda_subscribe_sns_topic",
+ "test": "test_python_lambda_subscribe_sns_topic",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8.al2]",
- "test": "test_serializable_input_object[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_redrive_policy_lambda_subscription",
+ "test": "test_redrive_policy_lambda_subscription",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_serializable_input_object[java8]",
- "test": "test_serializable_input_object[java8]",
+ "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
+ "test": "test_delete_message_batch_from_lambda",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "snapshot_skipped": "",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java11]",
- "test": "test_stream_handler[java11]",
+ "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_choice_state_machine",
+ "test": "test_create_choice_state_machine",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java17]",
- "test": "test_stream_handler[java17]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
+ "test": "test_lambda_streams_batch_and_transactions",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8.al2]",
- "test": "test_stream_handler[java8.al2]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_scheduled_lambda",
+ "test": "test_scheduled_lambda",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestJavaRuntimes::test_stream_handler[java8]",
- "test": "test_stream_handler[java8]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs14.x]",
- "test": "test_invoke_nodejs_es6_lambda[nodejs14.x]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs16.x]",
- "test": "test_invoke_nodejs_es6_lambda[nodejs16.x]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.7]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestNodeJSRuntimes::test_invoke_nodejs_es6_lambda[nodejs18.x]",
- "test": "test_invoke_nodejs_es6_lambda[nodejs18.x]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.10]",
- "test": "test_handler_in_submodule[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9]",
+ "test": "test_lambda_put_item_to_dynamodb[python3.9]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.11]",
- "test": "test_handler_in_submodule[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.10]",
+ "test": "test_lambda_send_message_to_sqs[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.7]",
- "test": "test_handler_in_submodule[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.11]",
+ "test": "test_lambda_send_message_to_sqs[python3.11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.8]",
- "test": "test_handler_in_submodule[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.7]",
+ "test": "test_lambda_send_message_to_sqs[python3.7]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_handler_in_submodule[python3.9]",
- "test": "test_handler_in_submodule[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.8]",
+ "test": "test_lambda_send_message_to_sqs[python3.8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.10]",
- "test": "test_python_runtime_correct_versions[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.9]",
+ "test": "test_lambda_send_message_to_sqs[python3.9]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.11]",
- "test": "test_python_runtime_correct_versions[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.10]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.10]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.7]",
- "test": "test_python_runtime_correct_versions[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.11]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.11]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.8]",
- "test": "test_python_runtime_correct_versions[python3.8]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.7]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.7]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_correct_versions[python3.9]",
- "test": "test_python_runtime_correct_versions[python3.9]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.8]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.8]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.10]",
- "test": "test_python_runtime_unhandled_errors[python3.10]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.9]",
+ "test": "test_lambda_start_stepfunctions_execution[python3.9]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.11]",
- "test": "test_python_runtime_unhandled_errors[python3.11]",
+ "node_id": "LocalStack Community: tests/aws/test_integration.py::test_kinesis_lambda_forward_chain",
+ "test": "test_kinesis_lambda_forward_chain",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.7]",
- "test": "test_python_runtime_unhandled_errors[python3.7]",
+ "node_id": "LocalStack Community: tests/aws/test_network_configuration.py::TestLambda::test_function_url",
+ "test": "test_function_url",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.8]",
- "test": "test_python_runtime_unhandled_errors[python3.8]",
- "response": "201",
- "error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_large_environment_fails_multiple_keys",
+ "test": "test_large_environment_fails_multiple_keys",
+ "response": "400",
+ "error": "InvalidParameterValueException",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_runtimes.py::TestPythonRuntimes::test_python_runtime_unhandled_errors[python3.9]",
- "test": "test_python_runtime_unhandled_errors[python3.9]",
- "response": "201",
- "error": "",
- "snapshot_skipped": "['$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..LogResult', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_large_environment_variables_fails",
+ "test": "test_large_environment_variables_fails",
+ "response": "400",
+ "error": "InvalidParameterValueException",
+ "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
- },
+ }
+ ],
+ "ls_pro": [
{
- "node_id": "LocalStack Community: tests/aws/services/logs/test_logs.py::TestCloudWatchLogs::test_put_subscription_filter_lambda",
- "test": "test_put_subscription_filter_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
+ "test": "test_authorizer_event_lambda_request",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..Statement.Condition.StringEquals', '$..add_permission.ResponseMetadata.HTTPStatusCode']",
+ "snapshot_skipped": "['$..authType', '$..event.headers', '$..event.multiValueHeaders', '$..event.version', '$..authorizationToken', '$..requestContext.extendedRequestId', '$..requestContext.domainName', '$..requestContext.protocol', '$..requestContext.requestId', '$..requestContext.requestTime', '$..requestContext.requestTimeEpoch', '$..requestContext.identity']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_download_object_with_lambda",
- "test": "test_s3_download_object_with_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::test_api_key_authorizer",
+ "test": "test_api_key_authorizer",
"response": "201",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3::test_s3_lambda_integration",
- "test": "test_s3_lambda_integration",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[1.0]",
+ "test": "test_apigw_v2_lambda_request_authorizer[1.0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..AcceptRanges']",
+ "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
"aws_validated": true,
"snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_signed_headers_in_qs",
- "test": "test_presigned_url_v4_signed_headers_in_qs",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[2.0]",
+ "test": "test_apigw_v2_lambda_request_authorizer[2.0]",
"response": "201",
"error": "",
- "snapshot_skipped": "",
+ "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
"aws_validated": true,
- "snapshot_tested": false,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3.py::TestS3PresignedUrl::test_presigned_url_v4_x_amz_in_qs",
- "test": "test_presigned_url_v4_x_amz_in_qs",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_cors_preflight_requests",
+ "test": "test_cors_preflight_requests",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6114,68 +6136,68 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_by_presigned_request_via_dynamodb",
- "test": "test_create_object_by_presigned_request_via_dynamodb",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-1.0]",
+ "test": "test_custom_domains[--.example.com-1.0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..data.s3.object.eTag', '$..data.s3.object.versionId', '$..data.s3.object.size']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/s3/test_s3_notifications_lambda.py::TestS3NotificationsToLambda::test_create_object_put_via_dynamodb",
- "test": "test_create_object_put_via_dynamodb",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-2.0]",
+ "test": "test_custom_domains[--.example.com-2.0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..s3.object.eTag', '$..s3.object.versionId']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSPublishDelivery::test_delivery_lambda",
- "test": "test_delivery_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-1.0]",
+ "test": "test_custom_domains[--.localhost-1.0]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$.get-topic-attrs.Attributes.DeliveryPolicy', '$.get-topic-attrs.Attributes.EffectiveDeliveryPolicy', '$.get-topic-attrs.Attributes.Policy.Statement..Action']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_skipped": "",
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_python_lambda_subscribe_sns_topic",
- "test": "test_python_lambda_subscribe_sns_topic",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-2.0]",
+ "test": "test_custom_domains[--.localhost-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sns/test_sns.py::TestSNSSubscriptionLambda::test_redrive_policy_lambda_subscription",
- "test": "test_redrive_policy_lambda_subscription",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[--.localhost.localstack.cloud-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/sqs/test_sqs.py::TestSqsProvider::test_delete_message_batch_from_lambda",
- "test": "test_delete_message_batch_from_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[--.localhost.localstack.cloud-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": true,
- "snapshot_tested": true,
+ "aws_validated": false,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/stepfunctions/legacy/test_stepfunctions_legacy.py::TestStateMachine::test_create_choice_state_machine",
- "test": "test_create_choice_state_machine",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-1.0]",
+ "test": "test_custom_domains[-base1-.example.com-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6184,8 +6206,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_lambda_streams_batch_and_transactions",
- "test": "test_lambda_streams_batch_and_transactions",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-2.0]",
+ "test": "test_custom_domains[-base1-.example.com-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6194,8 +6216,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestIntegration::test_scheduled_lambda",
- "test": "test_scheduled_lambda",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-1.0]",
+ "test": "test_custom_domains[-base1-.localhost-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6204,8 +6226,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.10]",
- "test": "test_lambda_put_item_to_dynamodb[python3.10]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-2.0]",
+ "test": "test_custom_domains[-base1-.localhost-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6214,8 +6236,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.11]",
- "test": "test_lambda_put_item_to_dynamodb[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6224,8 +6246,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.7]",
- "test": "test_lambda_put_item_to_dynamodb[python3.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6234,8 +6256,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.8]",
- "test": "test_lambda_put_item_to_dynamodb[python3.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-1.0]",
+ "test": "test_custom_domains[stage1--.example.com-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6244,8 +6266,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_put_item_to_dynamodb[python3.9]",
- "test": "test_lambda_put_item_to_dynamodb[python3.9]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-2.0]",
+ "test": "test_custom_domains[stage1--.example.com-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6254,8 +6276,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.10]",
- "test": "test_lambda_send_message_to_sqs[python3.10]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost-1.0]",
+ "test": "test_custom_domains[stage1--.localhost-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6264,8 +6286,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.11]",
- "test": "test_lambda_send_message_to_sqs[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost-2.0]",
+ "test": "test_custom_domains[stage1--.localhost-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6274,8 +6296,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.7]",
- "test": "test_lambda_send_message_to_sqs[python3.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[stage1--.localhost.localstack.cloud-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6284,8 +6306,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.8]",
- "test": "test_lambda_send_message_to_sqs[python3.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[stage1--.localhost.localstack.cloud-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6294,8 +6316,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_send_message_to_sqs[python3.9]",
- "test": "test_lambda_send_message_to_sqs[python3.9]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.example.com-1.0]",
+ "test": "test_custom_domains[stage1-base1-.example.com-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6304,8 +6326,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.10]",
- "test": "test_lambda_start_stepfunctions_execution[python3.10]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.example.com-2.0]",
+ "test": "test_custom_domains[stage1-base1-.example.com-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6314,8 +6336,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.11]",
- "test": "test_lambda_start_stepfunctions_execution[python3.11]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost-1.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6324,8 +6346,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.7]",
- "test": "test_lambda_start_stepfunctions_execution[python3.7]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost-2.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6334,8 +6356,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.8]",
- "test": "test_lambda_start_stepfunctions_execution[python3.8]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost.localstack.cloud-1.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost.localstack.cloud-1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6344,8 +6366,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::TestLambdaOutgoingSdkCalls::test_lambda_start_stepfunctions_execution[python3.9]",
- "test": "test_lambda_start_stepfunctions_execution[python3.9]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1-base1-.localhost.localstack.cloud-2.0]",
+ "test": "test_custom_domains[stage1-base1-.localhost.localstack.cloud-2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6354,90 +6376,68 @@
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_integration.py::test_kinesis_lambda_forward_chain",
- "test": "test_kinesis_lambda_forward_chain",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-ANY]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/test_network_configuration.py::TestLambda::test_function_url",
- "test": "test_function_url",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-1.0-POST]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_large_environment_fails_multiple_keys",
- "test": "test_large_environment_fails_multiple_keys",
- "response": "400",
- "error": "InvalidParameterValueException",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-ANY]",
+ "response": "201",
+ "error": "",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Community: tests/aws/services/lambda_/test_lambda_api.py::TestLambdaSizeLimits::test_large_environment_variables_fails",
- "test": "test_large_environment_variables_fails",
- "response": "400",
- "error": "InvalidParameterValueException",
- "snapshot_skipped": "['$..Architectures', '$..EphemeralStorage', '$..LastUpdateStatus', '$..MemorySize', '$..State', '$..StateReason', '$..StateReasonCode', '$..VpcConfig', '$..CodeSigningConfig', '$..Environment', '$..HTTPStatusCode', '$..Layers', '$..RuntimeVersionConfig', '$..SnapStart', '$..CreateFunctionResponse.RuntimeVersionConfig', '$..CreateFunctionResponse.SnapStart']",
- "aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- }
- ],
- "ls_pro": [
- {
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::TestRestApiAuthorizers::test_authorizer_event_lambda_request",
- "test": "test_authorizer_event_lambda_request",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.HOST_BASED-2.0-POST]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..authType', '$..event.headers', '$..event.multiValueHeaders', '$..event.version', '$..authorizationToken', '$..requestContext.extendedRequestId', '$..requestContext.domainName', '$..requestContext.protocol', '$..requestContext.requestId', '$..requestContext.requestTime', '$..requestContext.requestTimeEpoch', '$..requestContext.identity']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_authorizers.py::test_api_key_authorizer",
- "test": "test_api_key_authorizer",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-ANY]",
"response": "201",
"error": "",
"snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[1.0]",
- "test": "test_apigw_v2_lambda_request_authorizer[1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-1.0-POST]",
"response": "201",
"error": "",
- "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
+ "snapshot_skipped": "",
"aws_validated": true,
- "snapshot_tested": true,
- "origin": "external"
- },
- {
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_apigw_v2_lambda_request_authorizer[2.0]",
- "test": "test_apigw_v2_lambda_request_authorizer[2.0]",
- "response": "201",
- "error": "",
- "snapshot_skipped": "['$..headers', '$..body', '$..multiValueHeaders', '$..requestContext', '$..multiValueQueryStringParameters', '$..pathParameters', '$..queryStringParameters', '$..stageVariables']",
- "aws_validated": true,
- "snapshot_tested": true,
+ "snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_cors_preflight_requests",
- "test": "test_cors_preflight_requests",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-ANY]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6446,108 +6446,108 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-1.0]",
- "test": "test_custom_domains[--.example.com-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[eu-west-1-UrlType.PATH_BASED-2.0-POST]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.example.com-2.0]",
- "test": "test_custom_domains[--.example.com-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-ANY]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-1.0]",
- "test": "test_custom_domains[--.localhost-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-1.0-POST]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost-2.0]",
- "test": "test_custom_domains[--.localhost-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-ANY]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-1.0]",
- "test": "test_custom_domains[--.localhost.localstack.cloud-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.HOST_BASED-2.0-POST]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[--.localhost.localstack.cloud-2.0]",
- "test": "test_custom_domains[--.localhost.localstack.cloud-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-ANY]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-1.0]",
- "test": "test_custom_domains[-base1-.example.com-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-1.0-POST]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.example.com-2.0]",
- "test": "test_custom_domains[-base1-.example.com-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-ANY]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-ANY]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-1.0]",
- "test": "test_custom_domains[-base1-.localhost-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-POST]",
+ "test": "test_http_lambda_authorizers[us-east-1-UrlType.PATH_BASED-2.0-POST]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost-2.0]",
- "test": "test_custom_domains[-base1-.localhost-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_http_to_lambda_payload_v2",
+ "test": "test_http_to_lambda_payload_v2",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
+ "aws_validated": true,
"snapshot_tested": false,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
- "test": "test_custom_domains[-base1-.localhost.localstack.cloud-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_aws_proxy_integration[1.0]",
+ "test": "test_lambda_authorizer_with_aws_proxy_integration[1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6556,8 +6556,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
- "test": "test_custom_domains[-base1-.localhost.localstack.cloud-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_aws_proxy_integration[2.0]",
+ "test": "test_lambda_authorizer_with_aws_proxy_integration[2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6566,8 +6566,8 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-1.0]",
- "test": "test_custom_domains[stage1--.example.com-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_authorizer_with_no_payload_format_version",
+ "test": "test_lambda_authorizer_with_no_payload_format_version",
"response": "201",
"error": "",
"snapshot_skipped": "",
@@ -6576,28 +6576,28 @@
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.example.com-2.0]",
- "test": "test_custom_domains[stage1--.example.com-2.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_events[1.0]",
+ "test": "test_lambda_events[1.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--.localhost-1.0]",
- "test": "test_custom_domains[stage1--.localhost-1.0]",
+ "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_lambda_events[2.0]",
+ "test": "test_lambda_events[2.0]",
"response": "201",
"error": "",
"snapshot_skipped": "",
- "aws_validated": false,
- "snapshot_tested": false,
+ "aws_validated": true,
+ "snapshot_tested": true,
"origin": "external"
},
{
- "node_id": "LocalStack Pro: tests/aws/services/apigateway/test_http_apis.py::TestHttpApis::test_custom_domains[stage1--