repo stringlengths 7 90 | file_url stringlengths 81 315 | file_path stringlengths 4 228 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 14:38:15 2026-01-05 02:33:18 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/services/secretsmanager.py | cli/aws_orbit/services/secretsmanager.py | import json
import logging
from typing import Any, Dict, cast
from botocore.exceptions import ClientError
from aws_orbit.utils import boto3_client
_logger: logging.Logger = logging.getLogger(__name__)
def get_secret_value(secret_id: str) -> Dict[str, Any]:
client = boto3_client("secretsmanager")
try:
... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/services/__init__.py | cli/aws_orbit/services/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/services/autoscaling.py | cli/aws_orbit/services/autoscaling.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/services/cloudwatch.py | cli/aws_orbit/services/cloudwatch.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/services/s3.py | cli/aws_orbit/services/s3.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/services/codebuild.py | cli/aws_orbit/services/codebuild.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/services/vpc.py | cli/aws_orbit/services/vpc.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cert.py | cli/aws_orbit/remote_files/cert.py | """ Module to deploy self signed certs and upload it to IAM """
import logging
import subprocess
from typing import cast
import boto3
from botocore.exceptions import ClientError
from aws_orbit.models.context import FoundationContext
_logger: logging.Logger = logging.getLogger(__name__)
def run_command(cmd: str) ->... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/delete.py | cli/aws_orbit/remote_files/delete.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/destroy.py | cli/aws_orbit/remote_files/destroy.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/teams.py | cli/aws_orbit/remote_files/teams.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/deploy.py | cli/aws_orbit/remote_files/deploy.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/helm.py | cli/aws_orbit/remote_files/helm.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/eksctl.py | cli/aws_orbit/remote_files/eksctl.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/kubectl.py | cli/aws_orbit/remote_files/kubectl.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | true |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/utils.py | cli/aws_orbit/remote_files/utils.py | import logging
from typing import TYPE_CHECKING, List
from kubernetes import config
_logger: logging.Logger = logging.getLogger(__name__)
if TYPE_CHECKING:
from aws_orbit.models.context import Context
def get_k8s_context(context: "Context") -> str:
try:
contexts: List[str] = [str(c["name"]) for c i... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/__init__.py | cli/aws_orbit/remote_files/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/foundation.py | cli/aws_orbit/remote_files/foundation.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/kubeflow.py | cli/aws_orbit/remote_files/kubeflow.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk_toolkit.py | cli/aws_orbit/remote_files/cdk_toolkit.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/env.py | cli/aws_orbit/remote_files/env.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team.py | cli/aws_orbit/remote_files/cdk/team.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/__init__.py | cli/aws_orbit/remote_files/cdk/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/foundation.py | cli/aws_orbit/remote_files/cdk/foundation.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/env.py | cli/aws_orbit/remote_files/cdk/env.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/__init__.py | cli/aws_orbit/remote_files/cdk/lambda_sources/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/cognito_post_authentication/__init__.py | cli/aws_orbit/remote_files/cdk/lambda_sources/cognito_post_authentication/__init__.py | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false | |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/cognito_post_authentication/k8s_manage.py | cli/aws_orbit/remote_files/cdk/lambda_sources/cognito_post_authentication/k8s_manage.py | import json
import logging
import os
import subprocess
import time
from typing import Any, Dict, List, Optional, cast
import boto3
from kubernetes import client, config, dynamic
from kubernetes.client import api_client
from kubernetes.client.rest import ApiException
logger = logging.getLogger()
logger.setLevel(loggin... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/cognito_post_authentication/index.py | cli/aws_orbit/remote_files/cdk/lambda_sources/cognito_post_authentication/index.py | import json
import logging
import os
import re
from typing import Any, Dict, List, Optional, cast
import boto3
logger = logging.getLogger()
logger.setLevel(logging.INFO)
orbit_env = os.environ.get("ORBIT_ENV")
def handler(event: Dict[str, Any], context: Optional[Dict[str, Any]]) -> Any:
logger.info("Entering P... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/eks_service_handler/__init__.py | cli/aws_orbit/remote_files/cdk/lambda_sources/eks_service_handler/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/eks_service_handler/index.py | cli/aws_orbit/remote_files/cdk/lambda_sources/eks_service_handler/index.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/eks_describe_cluster/__init__.py | cli/aws_orbit/remote_files/cdk/lambda_sources/eks_describe_cluster/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/eks_describe_cluster/index.py | cli/aws_orbit/remote_files/cdk/lambda_sources/eks_describe_cluster/index.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/token_validation/__init__.py | cli/aws_orbit/remote_files/cdk/lambda_sources/token_validation/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/token_validation/index.py | cli/aws_orbit/remote_files/cdk/lambda_sources/token_validation/index.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/construct_request/__init__.py | cli/aws_orbit/remote_files/cdk/lambda_sources/construct_request/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/lambda_sources/construct_request/index.py | cli/aws_orbit/remote_files/cdk/lambda_sources/construct_request/index.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team_builders/iam.py | cli/aws_orbit/remote_files/cdk/team_builders/iam.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team_builders/ec2.py | cli/aws_orbit/remote_files/cdk/team_builders/ec2.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team_builders/cognito.py | cli/aws_orbit/remote_files/cdk/team_builders/cognito.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team_builders/efs.py | cli/aws_orbit/remote_files/cdk/team_builders/efs.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team_builders/__init__.py | cli/aws_orbit/remote_files/cdk/team_builders/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team_builders/_lambda.py | cli/aws_orbit/remote_files/cdk/team_builders/_lambda.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/remote_files/cdk/team_builders/s3.py | cli/aws_orbit/remote_files/cdk/team_builders/s3.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/run.py | cli/aws_orbit/commands/run.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/delete.py | cli/aws_orbit/commands/delete.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/destroy.py | cli/aws_orbit/commands/destroy.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/build.py | cli/aws_orbit/commands/build.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/deploy.py | cli/aws_orbit/commands/deploy.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/list.py | cli/aws_orbit/commands/list.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/__init__.py | cli/aws_orbit/commands/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/commands/init.py | cli/aws_orbit/commands/init.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/models/common.py | cli/aws_orbit/models/common.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/models/__init__.py | cli/aws_orbit/models/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/models/context.py | cli/aws_orbit/models/context.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/models/changeset.py | cli/aws_orbit/models/changeset.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/models/manifest.py | cli/aws_orbit/models/manifest.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/plugins/helpers.py | cli/aws_orbit/plugins/helpers.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/plugins/__init__.py | cli/aws_orbit/plugins/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/cli/aws_orbit/plugins/hooks.py | cli/aws_orbit/plugins/hooks.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/setup.py | images/orbit-controller/src/setup.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/home.py | images/orbit-controller/src/orbit_controller/home.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/__init__.py | images/orbit-controller/src/orbit_controller/__init__.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/server.py | images/orbit-controller/src/orbit_controller/server.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/utils/imagereplication_utils.py | images/orbit-controller/src/orbit_controller/utils/imagereplication_utils.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/utils/userspace_utils.py | images/orbit-controller/src/orbit_controller/utils/userspace_utils.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/utils/podsetting_utils.py | images/orbit-controller/src/orbit_controller/utils/podsetting_utils.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/utils/poddefault_utils.py | images/orbit-controller/src/orbit_controller/utils/poddefault_utils.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/utils/job_utils.py | images/orbit-controller/src/orbit_controller/utils/job_utils.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/operators/podsetting_operator.py | images/orbit-controller/src/orbit_controller/operators/podsetting_operator.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/operators/orbitjob_operator.py | images/orbit-controller/src/orbit_controller/operators/orbitjob_operator.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/operators/teamspace_operator.py | images/orbit-controller/src/orbit_controller/operators/teamspace_operator.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/operators/imagereplication_operator.py | images/orbit-controller/src/orbit_controller/operators/imagereplication_operator.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/operators/userspace_operator.py | images/orbit-controller/src/orbit_controller/operators/userspace_operator.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/webhooks/podsetting_pod_webhook.py | images/orbit-controller/src/orbit_controller/webhooks/podsetting_pod_webhook.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/orbit-controller/src/orbit_controller/webhooks/imagereplication_pod_webhook.py | images/orbit-controller/src/orbit_controller/webhooks/imagereplication_pod_webhook.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/jupyter-user/jupyter_server_config.py | images/jupyter-user/jupyter_server_config.py | # type: ignore
# Configuration file for jupyter-notebook.
#
# ------------------------------------------------------------------------------
# Application(SingletonConfigurable) configuration
# ------------------------------------------------------------------------------
## This is an application.
## The date format... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | true |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/jupyter-user/codeserver_proxy/codeserver.py | images/jupyter-user/codeserver_proxy/codeserver.py | def setup_codeserver():
def _command(port):
return ["bash", "/opt/orbit/codeserver_proxy/startup.sh", "{port}"]
return {
"command": _command,
"timeout": 120,
"absolute_url": False,
"launcher_entry": {"icon_path": "/opt/orbit/codeserver_proxy/favicon.svg", "title": "VS Co... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/jupyter-user/codeserver_proxy/getcreds.py | images/jupyter-user/codeserver_proxy/getcreds.py | #!/usr/bin/env python3
import fnmatch
import json
import os
aws_dir = "/home/jovyan/.aws/"
cache_dir = aws_dir + "cli/cache"
creds = aws_dir + "credentials"
fN = None
os.system("aws s3 ls")
for file in os.listdir(cache_dir):
if fnmatch.fnmatch(file, "*.json"):
fN = file
break
with open(cache_di... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/jupyter-user/codeserver_proxy/setup.py | images/jupyter-user/codeserver_proxy/setup.py | import setuptools
setuptools.setup(
name="codeserver-proxy",
# py_modules rather than packages, since we only have 1 file
py_modules=["codeserver"],
entry_points={
"jupyter_serverproxy_servers": [
# name = packagename:function_name
"code-server = codeserver:setup_codeser... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/jupyter-user/python-utils/notebook_cli.py | images/jupyter-user/python-utils/notebook_cli.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/jupyter-user/python-utils/notebook_runner.py | images/jupyter-user/python-utils/notebook_runner.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/jupyter-user/python-utils/python_runner.py | images/jupyter-user/python-utils/python_runner.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/images/utility-data/src/utility-data/stage_regression_data.py | images/utility-data/src/utility-data/stage_regression_data.py | #!/usr/bin/env python3
import json
import subprocess
import sys
import boto3
def main() -> None:
if len(sys.argv) == 2:
env_name = sys.argv[1]
else:
raise ValueError("Orbit environment name required")
sys.exit(1)
try:
ssm = boto3.client("ssm")
b_name = f"/orbit/{e... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/setup.py | sdk/setup.py | import setuptools
with open("VERSION", "r") as version_file:
version = version_file.read().strip()
with open("README.md") as fp:
long_description = fp.read()
setuptools.setup(
name="aws-orbit-sdk",
version=version,
author="AWS Professional Services",
author_email="aws-proserve-opensource@ama... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/emr.py | sdk/aws_orbit_sdk/emr.py | import json
import logging
import os
import socket
import time
from typing import Any, Dict, Iterator, List, Mapping, Optional, Tuple, cast
import boto3
import requests
from aws_orbit_sdk.common import AWS_ORBIT_TEAM_SPACE, ORBIT_ENV, ORBIT_PRODUCT_KEY, ORBIT_PRODUCT_NAME, get_properties
logging.basicConfig(
for... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/controller.py | sdk/aws_orbit_sdk/controller.py | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | true |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/common.py | sdk/aws_orbit_sdk/common.py | import json
import logging
import os
from os.path import expanduser
from typing import Any, Dict, Tuple
import boto3
import botocore
from yaml import safe_load
from aws_orbit_sdk import __version__
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger()
# Tags
ORBIT_PRODUCT_KEY = "Product"
ORBIT_SUBPRO... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/glue_catalog.py | sdk/aws_orbit_sdk/glue_catalog.py | import json
import logging
import time
from typing import Any, Dict, List, Optional
import boto3
from aws_orbit_sdk.common import get_workspace
logging.basicConfig(
format="%(asctime)s %(levelname)-8s %(message)s",
level=logging.INFO,
datefmt="%Y-%m-%d %H:%M:%S",
)
logger = logging.getLogger()
def dele... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/transformations.py | sdk/aws_orbit_sdk/transformations.py | import datetime
import json
import logging
import time
from typing import Any, Dict, List
import boto3
import aws_orbit_sdk.controller as controller
import aws_orbit_sdk.emr as sparkConnection
from aws_orbit_sdk.common import get_workspace
# Initialize parameters
logging.basicConfig(
format="%(asctime)s %(leveln... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/database.py | sdk/aws_orbit_sdk/database.py | """Database Module. Redshift and Athena functionalities"""
import json
import logging
import time
import urllib.parse
from typing import Any, Dict, List, Optional, Tuple, Union, cast
from urllib.parse import quote_plus
import boto3
import IPython.core.display
import pandas as pd
import pyathena
import sqlalchemy as s... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | true |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/__init__.py | sdk/aws_orbit_sdk/__init__.py | import pkg_resources
__title__ = "aws-orbit-sdk"
__version__ = pkg_resources.get_distribution(__title__).version
| python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/json.py | sdk/aws_orbit_sdk/json.py | import glob
import json
import logging
import os
import subprocess
from os.path import expanduser
from pathlib import Path
from tempfile import mkstemp
from typing import Any, Dict, List, Optional, Union
import boto3
import IPython.display
from IPython.display import JSON
from aws_orbit_sdk.common import split_s3_pat... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/magics/database.py | sdk/aws_orbit_sdk/magics/database.py | import argparse
import sys
from typing import Dict, Optional
import IPython.display
import sql.connection
from IPython import get_ipython
from IPython.core.magic import Magics, cell_magic, line_magic, magics_class, needs_local_scope
def exception_handler(exception_type, exception, traceback):
print("%s: %s" % (e... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/magics/__init__.py | sdk/aws_orbit_sdk/magics/__init__.py | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false | |
awslabs/aws-orbit-workbench | https://github.com/awslabs/aws-orbit-workbench/blob/fc43a0524b8a14c66b7f273419ac222254ee9551/sdk/aws_orbit_sdk/magics/orbit.py | sdk/aws_orbit_sdk/magics/orbit.py | import argparse
import json
import sys
from typing import Any, Dict, Optional
import IPython.core.display
from IPython import get_ipython
from IPython.core.magic import Magics, cell_magic, line_magic, magics_class, needs_local_scope
from aws_orbit_sdk import controller
from aws_orbit_sdk.json import display_json, run... | python | Apache-2.0 | fc43a0524b8a14c66b7f273419ac222254ee9551 | 2026-01-05T07:10:53.725169Z | false |
pfnet-research/nips17-adversarial-attack | https://github.com/pfnet-research/nips17-adversarial-attack/blob/b10f37d9d315c3c5367a575765d56ea6505f85f1/attack_non_targeted_multi_fcn.py | attack_non_targeted_multi_fcn.py | import chainer
import glob
import os
import numpy as np
import chainer.configuration
import cv2
import datasets
import multi_fcn_training
import math
def normalize_maxp(x):
x = float(x)
x = math.floor(x)
x = min(16, x)
x = max(4, x)
return x
def main(
# Dataset
input_dir='/mnt/s... | python | MIT | b10f37d9d315c3c5367a575765d56ea6505f85f1 | 2026-01-05T07:11:45.954179Z | false |
pfnet-research/nips17-adversarial-attack | https://github.com/pfnet-research/nips17-adversarial-attack/blob/b10f37d9d315c3c5367a575765d56ea6505f85f1/fcn_models/rec_multibp_resnet.py | fcn_models/rec_multibp_resnet.py | import chainer
import chainer.functions as F
import chainer.links as L
import random
from fcn_models.resnet_layer import ResNet50Layers
from .pre.inception_resnet_v2 import InceptionResNetV2Layers
class BottleNeckB(chainer.Chain):
def __init__(self, in_size, ch):
super(BottleNeckB, self).__init__()
... | python | MIT | b10f37d9d315c3c5367a575765d56ea6505f85f1 | 2026-01-05T07:11:45.954179Z | false |
pfnet-research/nips17-adversarial-attack | https://github.com/pfnet-research/nips17-adversarial-attack/blob/b10f37d9d315c3c5367a575765d56ea6505f85f1/fcn_models/resnet_layer.py | fcn_models/resnet_layer.py |
from __future__ import print_function
import collections
import os
import numpy
try:
from PIL import Image
available = True
except ImportError as e:
available = False
_import_error = e
from chainer.dataset.convert import concat_examples
from chainer.dataset import download
from chainer import funct... | python | MIT | b10f37d9d315c3c5367a575765d56ea6505f85f1 | 2026-01-05T07:11:45.954179Z | false |
pfnet-research/nips17-adversarial-attack | https://github.com/pfnet-research/nips17-adversarial-attack/blob/b10f37d9d315c3c5367a575765d56ea6505f85f1/fcn_models/__init__.py | fcn_models/__init__.py | python | MIT | b10f37d9d315c3c5367a575765d56ea6505f85f1 | 2026-01-05T07:11:45.954179Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.