├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Terraform files ├── events.tf ├── iam_roles.tf ├── lambdas.tf ├── main.tf ├── parameters.json └── variables.tf ├── img └── Terraform_gitlab_pipeline_v3.jpg ├── init.sh ├── lambda_functions ├── lambda-gitlab-pipeline-trigger │ ├── bin │ │ ├── gitlab │ │ └── normalizer │ ├── certifi-2021.5.30.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── __main__.cpython-39.pyc │ │ │ └── core.cpython-39.pyc │ │ ├── cacert.pem │ │ └── core.py │ ├── charset_normalizer-2.0.6.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── charset_normalizer │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── api.cpython-39.pyc │ │ │ ├── cd.cpython-39.pyc │ │ │ ├── constant.cpython-39.pyc │ │ │ ├── legacy.cpython-39.pyc │ │ │ ├── md.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── utils.cpython-39.pyc │ │ │ └── version.cpython-39.pyc │ │ ├── api.py │ │ ├── assets │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── cd.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── normalizer.cpython-39.pyc │ │ │ └── normalizer.py │ │ ├── constant.py │ │ ├── legacy.py │ │ ├── md.py │ │ ├── models.py │ │ ├── py.typed │ │ ├── utils.py │ │ └── version.py │ ├── docs │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── conf.cpython-39.pyc │ │ ├── conf.py │ │ └── ext │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── docstrings.cpython-39.pyc │ │ │ └── docstrings.py │ ├── gitlab │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── __main__.cpython-39.pyc │ │ │ ├── __version__.cpython-39.pyc │ │ │ ├── base.cpython-39.pyc │ │ │ ├── cli.cpython-39.pyc │ │ │ ├── client.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── const.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── mixins.cpython-39.pyc │ │ │ ├── types.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── __version__.py │ │ ├── base.py │ │ ├── cli.py │ │ ├── client.py │ │ ├── config.py │ │ ├── const.py │ │ ├── exceptions.py │ │ ├── mixins.py │ │ ├── py.typed │ │ ├── types.py │ │ ├── utils.py │ │ └── v4 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── cli.cpython-39.pyc │ │ │ ├── cli.py │ │ │ └── objects │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── access_requests.cpython-39.pyc │ │ │ ├── appearance.cpython-39.pyc │ │ │ ├── applications.cpython-39.pyc │ │ │ ├── audit_events.cpython-39.pyc │ │ │ ├── award_emojis.cpython-39.pyc │ │ │ ├── badges.cpython-39.pyc │ │ │ ├── boards.cpython-39.pyc │ │ │ ├── branches.cpython-39.pyc │ │ │ ├── broadcast_messages.cpython-39.pyc │ │ │ ├── clusters.cpython-39.pyc │ │ │ ├── commits.cpython-39.pyc │ │ │ ├── container_registry.cpython-39.pyc │ │ │ ├── custom_attributes.cpython-39.pyc │ │ │ ├── deploy_keys.cpython-39.pyc │ │ │ ├── deploy_tokens.cpython-39.pyc │ │ │ ├── deployments.cpython-39.pyc │ │ │ ├── discussions.cpython-39.pyc │ │ │ ├── environments.cpython-39.pyc │ │ │ ├── epics.cpython-39.pyc │ │ │ ├── events.cpython-39.pyc │ │ │ ├── export_import.cpython-39.pyc │ │ │ ├── features.cpython-39.pyc │ │ │ ├── files.cpython-39.pyc │ │ │ ├── geo_nodes.cpython-39.pyc │ │ │ ├── groups.cpython-39.pyc │ │ │ ├── hooks.cpython-39.pyc │ │ │ ├── issues.cpython-39.pyc │ │ │ ├── jobs.cpython-39.pyc │ │ │ ├── keys.cpython-39.pyc │ │ │ ├── labels.cpython-39.pyc │ │ │ ├── ldap.cpython-39.pyc │ │ │ ├── members.cpython-39.pyc │ │ │ ├── merge_request_approvals.cpython-39.pyc │ │ │ ├── merge_requests.cpython-39.pyc │ │ │ ├── milestones.cpython-39.pyc │ │ │ ├── namespaces.cpython-39.pyc │ │ │ ├── notes.cpython-39.pyc │ │ │ ├── notification_settings.cpython-39.pyc │ │ │ ├── packages.cpython-39.pyc │ │ │ ├── pages.cpython-39.pyc │ │ │ ├── personal_access_tokens.cpython-39.pyc │ │ │ ├── pipelines.cpython-39.pyc │ │ │ ├── project_access_tokens.cpython-39.pyc │ │ │ ├── projects.cpython-39.pyc │ │ │ ├── push_rules.cpython-39.pyc │ │ │ ├── releases.cpython-39.pyc │ │ │ ├── repositories.cpython-39.pyc │ │ │ ├── runners.cpython-39.pyc │ │ │ ├── services.cpython-39.pyc │ │ │ ├── settings.cpython-39.pyc │ │ │ ├── sidekiq.cpython-39.pyc │ │ │ ├── snippets.cpython-39.pyc │ │ │ ├── statistics.cpython-39.pyc │ │ │ ├── tags.cpython-39.pyc │ │ │ ├── templates.cpython-39.pyc │ │ │ ├── todos.cpython-39.pyc │ │ │ ├── triggers.cpython-39.pyc │ │ │ ├── users.cpython-39.pyc │ │ │ ├── variables.cpython-39.pyc │ │ │ └── wikis.cpython-39.pyc │ │ │ ├── access_requests.py │ │ │ ├── appearance.py │ │ │ ├── applications.py │ │ │ ├── audit_events.py │ │ │ ├── award_emojis.py │ │ │ ├── badges.py │ │ │ ├── boards.py │ │ │ ├── branches.py │ │ │ ├── broadcast_messages.py │ │ │ ├── clusters.py │ │ │ ├── commits.py │ │ │ ├── container_registry.py │ │ │ ├── custom_attributes.py │ │ │ ├── deploy_keys.py │ │ │ ├── deploy_tokens.py │ │ │ ├── deployments.py │ │ │ ├── discussions.py │ │ │ ├── environments.py │ │ │ ├── epics.py │ │ │ ├── events.py │ │ │ ├── export_import.py │ │ │ ├── features.py │ │ │ ├── files.py │ │ │ ├── geo_nodes.py │ │ │ ├── groups.py │ │ │ ├── hooks.py │ │ │ ├── issues.py │ │ │ ├── jobs.py │ │ │ ├── keys.py │ │ │ ├── labels.py │ │ │ ├── ldap.py │ │ │ ├── members.py │ │ │ ├── merge_request_approvals.py │ │ │ ├── merge_requests.py │ │ │ ├── milestones.py │ │ │ ├── namespaces.py │ │ │ ├── notes.py │ │ │ ├── notification_settings.py │ │ │ ├── packages.py │ │ │ ├── pages.py │ │ │ ├── personal_access_tokens.py │ │ │ ├── pipelines.py │ │ │ ├── project_access_tokens.py │ │ │ ├── projects.py │ │ │ ├── push_rules.py │ │ │ ├── releases.py │ │ │ ├── repositories.py │ │ │ ├── runners.py │ │ │ ├── services.py │ │ │ ├── settings.py │ │ │ ├── sidekiq.py │ │ │ ├── snippets.py │ │ │ ├── statistics.py │ │ │ ├── tags.py │ │ │ ├── templates.py │ │ │ ├── todos.py │ │ │ ├── triggers.py │ │ │ ├── users.py │ │ │ ├── variables.py │ │ │ └── wikis.py │ ├── idna-3.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.md │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── codec.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── core.cpython-39.pyc │ │ │ ├── idnadata.cpython-39.pyc │ │ │ ├── intranges.cpython-39.pyc │ │ │ ├── package_data.cpython-39.pyc │ │ │ └── uts46data.cpython-39.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ ├── py.typed │ │ └── uts46data.py │ ├── lambda_function.py │ ├── python_gitlab-2.10.1.dist-info │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ ├── requests-2.26.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── __version__.cpython-39.pyc │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ ├── adapters.cpython-39.pyc │ │ │ ├── api.cpython-39.pyc │ │ │ ├── auth.cpython-39.pyc │ │ │ ├── certs.cpython-39.pyc │ │ │ ├── compat.cpython-39.pyc │ │ │ ├── cookies.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── help.cpython-39.pyc │ │ │ ├── hooks.cpython-39.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── packages.cpython-39.pyc │ │ │ ├── sessions.cpython-39.pyc │ │ │ ├── status_codes.cpython-39.pyc │ │ │ ├── structures.cpython-39.pyc │ │ │ └── utils.cpython-39.pyc │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── requests_toolbelt-0.9.1.dist-info │ │ ├── AUTHORS.rst │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── requests_toolbelt │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _compat.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── sessions.cpython-39.pyc │ │ │ └── streaming_iterator.cpython-39.pyc │ │ ├── _compat.py │ │ ├── adapters │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ ├── fingerprint.cpython-39.pyc │ │ │ │ ├── host_header_ssl.cpython-39.pyc │ │ │ │ ├── socket_options.cpython-39.pyc │ │ │ │ ├── source.cpython-39.pyc │ │ │ │ ├── ssl.cpython-39.pyc │ │ │ │ └── x509.cpython-39.pyc │ │ │ ├── appengine.py │ │ │ ├── fingerprint.py │ │ │ ├── host_header_ssl.py │ │ │ ├── socket_options.py │ │ │ ├── source.py │ │ │ ├── ssl.py │ │ │ └── x509.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _digest_auth_compat.cpython-39.pyc │ │ │ │ ├── guess.cpython-39.pyc │ │ │ │ ├── handler.cpython-39.pyc │ │ │ │ └── http_proxy_digest.cpython-39.pyc │ │ │ ├── _digest_auth_compat.py │ │ │ ├── guess.py │ │ │ ├── handler.py │ │ │ └── http_proxy_digest.py │ │ ├── cookies │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── forgetful.cpython-39.pyc │ │ │ └── forgetful.py │ │ ├── downloadutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── stream.cpython-39.pyc │ │ │ │ └── tee.cpython-39.pyc │ │ │ ├── stream.py │ │ │ └── tee.py │ │ ├── exceptions.py │ │ ├── multipart │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ └── encoder.cpython-39.pyc │ │ │ ├── decoder.py │ │ │ └── encoder.py │ │ ├── sessions.py │ │ ├── streaming_iterator.py │ │ ├── threaded │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── pool.cpython-39.pyc │ │ │ │ └── thread.cpython-39.pyc │ │ │ ├── pool.py │ │ │ └── thread.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── deprecated.cpython-39.pyc │ │ │ ├── dump.cpython-39.pyc │ │ │ ├── formdata.cpython-39.pyc │ │ │ └── user_agent.cpython-39.pyc │ │ │ ├── deprecated.py │ │ │ ├── dump.py │ │ │ ├── formdata.py │ │ │ └── user_agent.py │ ├── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ │ ├── functional │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ └── ee-test.cpython-39.pyc │ │ │ ├── api │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── test_clusters.cpython-39.pyc │ │ │ │ │ ├── test_current_user.cpython-39.pyc │ │ │ │ │ ├── test_deploy_keys.cpython-39.pyc │ │ │ │ │ ├── test_deploy_tokens.cpython-39.pyc │ │ │ │ │ ├── test_gitlab.cpython-39.pyc │ │ │ │ │ ├── test_groups.cpython-39.pyc │ │ │ │ │ ├── test_import_export.cpython-39.pyc │ │ │ │ │ ├── test_issues.cpython-39.pyc │ │ │ │ │ ├── test_keys.cpython-39.pyc │ │ │ │ │ ├── test_merge_requests.cpython-39.pyc │ │ │ │ │ ├── test_packages.cpython-39.pyc │ │ │ │ │ ├── test_projects.cpython-39.pyc │ │ │ │ │ ├── test_releases.cpython-39.pyc │ │ │ │ │ ├── test_repository.cpython-39.pyc │ │ │ │ │ ├── test_snippets.cpython-39.pyc │ │ │ │ │ ├── test_users.cpython-39.pyc │ │ │ │ │ └── test_variables.cpython-39.pyc │ │ │ │ ├── test_clusters.py │ │ │ │ ├── test_current_user.py │ │ │ │ ├── test_deploy_keys.py │ │ │ │ ├── test_deploy_tokens.py │ │ │ │ ├── test_gitlab.py │ │ │ │ ├── test_groups.py │ │ │ │ ├── test_import_export.py │ │ │ │ ├── test_issues.py │ │ │ │ ├── test_keys.py │ │ │ │ ├── test_merge_requests.py │ │ │ │ ├── test_packages.py │ │ │ │ ├── test_projects.py │ │ │ │ ├── test_releases.py │ │ │ │ ├── test_repository.py │ │ │ │ ├── test_snippets.py │ │ │ │ ├── test_users.py │ │ │ │ └── test_variables.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ │ ├── test_cli_artifacts.cpython-39.pyc │ │ │ │ │ ├── test_cli_packages.cpython-39.pyc │ │ │ │ │ ├── test_cli_v4.cpython-39.pyc │ │ │ │ │ └── test_cli_variables.cpython-39.pyc │ │ │ │ ├── conftest.py │ │ │ │ ├── test_cli_artifacts.py │ │ │ │ ├── test_cli_packages.py │ │ │ │ ├── test_cli_v4.py │ │ │ │ └── test_cli_variables.py │ │ │ ├── conftest.py │ │ │ └── ee-test.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── conftest.cpython-39.pyc │ │ │ ├── test_base.cpython-39.pyc │ │ │ ├── test_cli.cpython-39.pyc │ │ │ ├── test_config.cpython-39.pyc │ │ │ ├── test_exceptions.cpython-39.pyc │ │ │ ├── test_gitlab.cpython-39.pyc │ │ │ ├── test_gitlab_auth.cpython-39.pyc │ │ │ ├── test_gitlab_http_methods.cpython-39.pyc │ │ │ ├── test_types.cpython-39.pyc │ │ │ └── test_utils.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── mixins │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_meta_mixins.cpython-39.pyc │ │ │ │ ├── test_mixin_methods.cpython-39.pyc │ │ │ │ └── test_object_mixins_attributes.cpython-39.pyc │ │ │ ├── test_meta_mixins.py │ │ │ ├── test_mixin_methods.py │ │ │ └── test_object_mixins_attributes.py │ │ │ ├── objects │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_appearance.cpython-39.pyc │ │ │ │ ├── test_applications.cpython-39.pyc │ │ │ │ ├── test_audit_events.cpython-39.pyc │ │ │ │ ├── test_badges.cpython-39.pyc │ │ │ │ ├── test_bridges.cpython-39.pyc │ │ │ │ ├── test_commits.cpython-39.pyc │ │ │ │ ├── test_deploy_tokens.cpython-39.pyc │ │ │ │ ├── test_deployments.cpython-39.pyc │ │ │ │ ├── test_environments.cpython-39.pyc │ │ │ │ ├── test_groups.cpython-39.pyc │ │ │ │ ├── test_hooks.cpython-39.pyc │ │ │ │ ├── test_issues.cpython-39.pyc │ │ │ │ ├── test_job_artifacts.cpython-39.pyc │ │ │ │ ├── test_jobs.cpython-39.pyc │ │ │ │ ├── test_keys.cpython-39.pyc │ │ │ │ ├── test_members.cpython-39.pyc │ │ │ │ ├── test_merge_request_pipelines.cpython-39.pyc │ │ │ │ ├── test_merge_requests.cpython-39.pyc │ │ │ │ ├── test_mro.cpython-39.pyc │ │ │ │ ├── test_packages.cpython-39.pyc │ │ │ │ ├── test_personal_access_tokens.cpython-39.pyc │ │ │ │ ├── test_pipeline_schedules.cpython-39.pyc │ │ │ │ ├── test_pipelines.cpython-39.pyc │ │ │ │ ├── test_project_access_tokens.cpython-39.pyc │ │ │ │ ├── test_project_import_export.cpython-39.pyc │ │ │ │ ├── test_project_merge_request_approvals.cpython-39.pyc │ │ │ │ ├── test_project_statistics.cpython-39.pyc │ │ │ │ ├── test_projects.cpython-39.pyc │ │ │ │ ├── test_releases.cpython-39.pyc │ │ │ │ ├── test_remote_mirrors.cpython-39.pyc │ │ │ │ ├── test_repositories.cpython-39.pyc │ │ │ │ ├── test_resource_label_events.cpython-39.pyc │ │ │ │ ├── test_resource_milestone_events.cpython-39.pyc │ │ │ │ ├── test_resource_state_events.cpython-39.pyc │ │ │ │ ├── test_runners.cpython-39.pyc │ │ │ │ ├── test_services.cpython-39.pyc │ │ │ │ ├── test_snippets.cpython-39.pyc │ │ │ │ ├── test_submodules.cpython-39.pyc │ │ │ │ ├── test_todos.cpython-39.pyc │ │ │ │ ├── test_users.cpython-39.pyc │ │ │ │ └── test_variables.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── test_appearance.py │ │ │ ├── test_applications.py │ │ │ ├── test_audit_events.py │ │ │ ├── test_badges.py │ │ │ ├── test_bridges.py │ │ │ ├── test_commits.py │ │ │ ├── test_deploy_tokens.py │ │ │ ├── test_deployments.py │ │ │ ├── test_environments.py │ │ │ ├── test_groups.py │ │ │ ├── test_hooks.py │ │ │ ├── test_issues.py │ │ │ ├── test_job_artifacts.py │ │ │ ├── test_jobs.py │ │ │ ├── test_keys.py │ │ │ ├── test_members.py │ │ │ ├── test_merge_request_pipelines.py │ │ │ ├── test_merge_requests.py │ │ │ ├── test_mro.py │ │ │ ├── test_packages.py │ │ │ ├── test_personal_access_tokens.py │ │ │ ├── test_pipeline_schedules.py │ │ │ ├── test_pipelines.py │ │ │ ├── test_project_access_tokens.py │ │ │ ├── test_project_import_export.py │ │ │ ├── test_project_merge_request_approvals.py │ │ │ ├── test_project_statistics.py │ │ │ ├── test_projects.py │ │ │ ├── test_releases.py │ │ │ ├── test_remote_mirrors.py │ │ │ ├── test_repositories.py │ │ │ ├── test_resource_label_events.py │ │ │ ├── test_resource_milestone_events.py │ │ │ ├── test_resource_state_events.py │ │ │ ├── test_runners.py │ │ │ ├── test_services.py │ │ │ ├── test_snippets.py │ │ │ ├── test_submodules.py │ │ │ ├── test_todos.py │ │ │ ├── test_users.py │ │ │ └── test_variables.py │ │ │ ├── test_base.py │ │ │ ├── test_cli.py │ │ │ ├── test_config.py │ │ │ ├── test_exceptions.py │ │ │ ├── test_gitlab.py │ │ │ ├── test_gitlab_auth.py │ │ │ ├── test_gitlab_http_methods.py │ │ │ ├── test_types.py │ │ │ └── test_utils.py │ ├── urllib3-1.26.7.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ └── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _collections.cpython-39.pyc │ │ ├── _version.cpython-39.pyc │ │ ├── connection.cpython-39.pyc │ │ ├── connectionpool.cpython-39.pyc │ │ ├── exceptions.cpython-39.pyc │ │ ├── fields.cpython-39.pyc │ │ ├── filepost.cpython-39.pyc │ │ ├── poolmanager.cpython-39.pyc │ │ ├── request.cpython-39.pyc │ │ └── response.cpython-39.pyc │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ ├── appengine.cpython-39.pyc │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ ├── securetransport.cpython-39.pyc │ │ │ └── socks.cpython-39.pyc │ │ ├── _appengine_environ.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ └── low_level.cpython-39.pyc │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── six.cpython-39.pyc │ │ ├── backports │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── makefile.cpython-39.pyc │ │ │ └── makefile.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── _implementation.cpython-39.pyc │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── connection.cpython-39.pyc │ │ ├── proxy.cpython-39.pyc │ │ ├── queue.cpython-39.pyc │ │ ├── request.cpython-39.pyc │ │ ├── response.cpython-39.pyc │ │ ├── retry.cpython-39.pyc │ │ ├── ssl_.cpython-39.pyc │ │ ├── ssltransport.cpython-39.pyc │ │ ├── timeout.cpython-39.pyc │ │ ├── url.cpython-39.pyc │ │ └── wait.cpython-39.pyc │ │ ├── connection.py │ │ ├── proxy.py │ │ ├── queue.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── ssltransport.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py └── lambda-seedcode-checkin-gitlab │ ├── bin │ ├── gitlab │ └── normalizer │ ├── certifi-2021.5.30.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __main__.cpython-39.pyc │ │ └── core.cpython-39.pyc │ ├── cacert.pem │ └── core.py │ ├── cfnresponse-1.1.1.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt │ ├── cfnresponse │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── charset_normalizer-2.0.6.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── charset_normalizer │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── api.cpython-39.pyc │ │ ├── cd.cpython-39.pyc │ │ ├── constant.cpython-39.pyc │ │ ├── legacy.cpython-39.pyc │ │ ├── md.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── utils.cpython-39.pyc │ │ └── version.cpython-39.pyc │ ├── api.py │ ├── assets │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ ├── cd.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── normalizer.cpython-39.pyc │ │ └── normalizer.py │ ├── constant.py │ ├── legacy.py │ ├── md.py │ ├── models.py │ ├── py.typed │ ├── utils.py │ └── version.py │ ├── docs │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── conf.cpython-39.pyc │ ├── conf.py │ └── ext │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── docstrings.cpython-39.pyc │ │ └── docstrings.py │ ├── gitlab │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __main__.cpython-39.pyc │ │ ├── __version__.cpython-39.pyc │ │ ├── base.cpython-39.pyc │ │ ├── cli.cpython-39.pyc │ │ ├── client.cpython-39.pyc │ │ ├── config.cpython-39.pyc │ │ ├── const.cpython-39.pyc │ │ ├── exceptions.cpython-39.pyc │ │ ├── mixins.cpython-39.pyc │ │ ├── types.cpython-39.pyc │ │ └── utils.cpython-39.pyc │ ├── __version__.py │ ├── base.py │ ├── cli.py │ ├── client.py │ ├── config.py │ ├── const.py │ ├── exceptions.py │ ├── mixins.py │ ├── py.typed │ ├── types.py │ ├── utils.py │ └── v4 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── cli.cpython-39.pyc │ │ ├── cli.py │ │ └── objects │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── access_requests.cpython-39.pyc │ │ ├── appearance.cpython-39.pyc │ │ ├── applications.cpython-39.pyc │ │ ├── audit_events.cpython-39.pyc │ │ ├── award_emojis.cpython-39.pyc │ │ ├── badges.cpython-39.pyc │ │ ├── boards.cpython-39.pyc │ │ ├── branches.cpython-39.pyc │ │ ├── broadcast_messages.cpython-39.pyc │ │ ├── clusters.cpython-39.pyc │ │ ├── commits.cpython-39.pyc │ │ ├── container_registry.cpython-39.pyc │ │ ├── custom_attributes.cpython-39.pyc │ │ ├── deploy_keys.cpython-39.pyc │ │ ├── deploy_tokens.cpython-39.pyc │ │ ├── deployments.cpython-39.pyc │ │ ├── discussions.cpython-39.pyc │ │ ├── environments.cpython-39.pyc │ │ ├── epics.cpython-39.pyc │ │ ├── events.cpython-39.pyc │ │ ├── export_import.cpython-39.pyc │ │ ├── features.cpython-39.pyc │ │ ├── files.cpython-39.pyc │ │ ├── geo_nodes.cpython-39.pyc │ │ ├── groups.cpython-39.pyc │ │ ├── hooks.cpython-39.pyc │ │ ├── issues.cpython-39.pyc │ │ ├── jobs.cpython-39.pyc │ │ ├── keys.cpython-39.pyc │ │ ├── labels.cpython-39.pyc │ │ ├── ldap.cpython-39.pyc │ │ ├── members.cpython-39.pyc │ │ ├── merge_request_approvals.cpython-39.pyc │ │ ├── merge_requests.cpython-39.pyc │ │ ├── milestones.cpython-39.pyc │ │ ├── namespaces.cpython-39.pyc │ │ ├── notes.cpython-39.pyc │ │ ├── notification_settings.cpython-39.pyc │ │ ├── packages.cpython-39.pyc │ │ ├── pages.cpython-39.pyc │ │ ├── personal_access_tokens.cpython-39.pyc │ │ ├── pipelines.cpython-39.pyc │ │ ├── project_access_tokens.cpython-39.pyc │ │ ├── projects.cpython-39.pyc │ │ ├── push_rules.cpython-39.pyc │ │ ├── releases.cpython-39.pyc │ │ ├── repositories.cpython-39.pyc │ │ ├── runners.cpython-39.pyc │ │ ├── services.cpython-39.pyc │ │ ├── settings.cpython-39.pyc │ │ ├── sidekiq.cpython-39.pyc │ │ ├── snippets.cpython-39.pyc │ │ ├── statistics.cpython-39.pyc │ │ ├── tags.cpython-39.pyc │ │ ├── templates.cpython-39.pyc │ │ ├── todos.cpython-39.pyc │ │ ├── triggers.cpython-39.pyc │ │ ├── users.cpython-39.pyc │ │ ├── variables.cpython-39.pyc │ │ └── wikis.cpython-39.pyc │ │ ├── access_requests.py │ │ ├── appearance.py │ │ ├── applications.py │ │ ├── audit_events.py │ │ ├── award_emojis.py │ │ ├── badges.py │ │ ├── boards.py │ │ ├── branches.py │ │ ├── broadcast_messages.py │ │ ├── clusters.py │ │ ├── commits.py │ │ ├── container_registry.py │ │ ├── custom_attributes.py │ │ ├── deploy_keys.py │ │ ├── deploy_tokens.py │ │ ├── deployments.py │ │ ├── discussions.py │ │ ├── environments.py │ │ ├── epics.py │ │ ├── events.py │ │ ├── export_import.py │ │ ├── features.py │ │ ├── files.py │ │ ├── geo_nodes.py │ │ ├── groups.py │ │ ├── hooks.py │ │ ├── issues.py │ │ ├── jobs.py │ │ ├── keys.py │ │ ├── labels.py │ │ ├── ldap.py │ │ ├── members.py │ │ ├── merge_request_approvals.py │ │ ├── merge_requests.py │ │ ├── milestones.py │ │ ├── namespaces.py │ │ ├── notes.py │ │ ├── notification_settings.py │ │ ├── packages.py │ │ ├── pages.py │ │ ├── personal_access_tokens.py │ │ ├── pipelines.py │ │ ├── project_access_tokens.py │ │ ├── projects.py │ │ ├── push_rules.py │ │ ├── releases.py │ │ ├── repositories.py │ │ ├── runners.py │ │ ├── services.py │ │ ├── settings.py │ │ ├── sidekiq.py │ │ ├── snippets.py │ │ ├── statistics.py │ │ ├── tags.py │ │ ├── templates.py │ │ ├── todos.py │ │ ├── triggers.py │ │ ├── users.py │ │ ├── variables.py │ │ └── wikis.py │ ├── idna-3.2.dist-info │ ├── INSTALLER │ ├── LICENSE.md │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── codec.cpython-39.pyc │ │ ├── compat.cpython-39.pyc │ │ ├── core.cpython-39.pyc │ │ ├── idnadata.cpython-39.pyc │ │ ├── intranges.cpython-39.pyc │ │ ├── package_data.cpython-39.pyc │ │ └── uts46data.cpython-39.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ ├── py.typed │ └── uts46data.py │ ├── lambda_function.py │ ├── python_gitlab-2.10.1.dist-info │ ├── AUTHORS │ ├── COPYING │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── requests-2.26.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── __version__.cpython-39.pyc │ │ ├── _internal_utils.cpython-39.pyc │ │ ├── adapters.cpython-39.pyc │ │ ├── api.cpython-39.pyc │ │ ├── auth.cpython-39.pyc │ │ ├── certs.cpython-39.pyc │ │ ├── compat.cpython-39.pyc │ │ ├── cookies.cpython-39.pyc │ │ ├── exceptions.cpython-39.pyc │ │ ├── help.cpython-39.pyc │ │ ├── hooks.cpython-39.pyc │ │ ├── models.cpython-39.pyc │ │ ├── packages.cpython-39.pyc │ │ ├── sessions.cpython-39.pyc │ │ ├── status_codes.cpython-39.pyc │ │ ├── structures.cpython-39.pyc │ │ └── utils.cpython-39.pyc │ ├── __version__.py │ ├── _internal_utils.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── help.py │ ├── hooks.py │ ├── models.py │ ├── packages.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py │ ├── requests_toolbelt-0.9.1.dist-info │ ├── AUTHORS.rst │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── requests_toolbelt │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _compat.cpython-39.pyc │ │ ├── exceptions.cpython-39.pyc │ │ ├── sessions.cpython-39.pyc │ │ └── streaming_iterator.cpython-39.pyc │ ├── _compat.py │ ├── adapters │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── appengine.cpython-39.pyc │ │ │ ├── fingerprint.cpython-39.pyc │ │ │ ├── host_header_ssl.cpython-39.pyc │ │ │ ├── socket_options.cpython-39.pyc │ │ │ ├── source.cpython-39.pyc │ │ │ ├── ssl.cpython-39.pyc │ │ │ └── x509.cpython-39.pyc │ │ ├── appengine.py │ │ ├── fingerprint.py │ │ ├── host_header_ssl.py │ │ ├── socket_options.py │ │ ├── source.py │ │ ├── ssl.py │ │ └── x509.py │ ├── auth │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _digest_auth_compat.cpython-39.pyc │ │ │ ├── guess.cpython-39.pyc │ │ │ ├── handler.cpython-39.pyc │ │ │ └── http_proxy_digest.cpython-39.pyc │ │ ├── _digest_auth_compat.py │ │ ├── guess.py │ │ ├── handler.py │ │ └── http_proxy_digest.py │ ├── cookies │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── forgetful.cpython-39.pyc │ │ └── forgetful.py │ ├── downloadutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── stream.cpython-39.pyc │ │ │ └── tee.cpython-39.pyc │ │ ├── stream.py │ │ └── tee.py │ ├── exceptions.py │ ├── multipart │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── decoder.cpython-39.pyc │ │ │ └── encoder.cpython-39.pyc │ │ ├── decoder.py │ │ └── encoder.py │ ├── sessions.py │ ├── streaming_iterator.py │ ├── threaded │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── pool.cpython-39.pyc │ │ │ └── thread.cpython-39.pyc │ │ ├── pool.py │ │ └── thread.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── deprecated.cpython-39.pyc │ │ ├── dump.cpython-39.pyc │ │ ├── formdata.cpython-39.pyc │ │ └── user_agent.cpython-39.pyc │ │ ├── deprecated.py │ │ ├── dump.py │ │ ├── formdata.py │ │ └── user_agent.py │ ├── tests │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── functional │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── conftest.cpython-39.pyc │ │ │ └── ee-test.cpython-39.pyc │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── test_clusters.cpython-39.pyc │ │ │ │ ├── test_current_user.cpython-39.pyc │ │ │ │ ├── test_deploy_keys.cpython-39.pyc │ │ │ │ ├── test_deploy_tokens.cpython-39.pyc │ │ │ │ ├── test_gitlab.cpython-39.pyc │ │ │ │ ├── test_groups.cpython-39.pyc │ │ │ │ ├── test_import_export.cpython-39.pyc │ │ │ │ ├── test_issues.cpython-39.pyc │ │ │ │ ├── test_keys.cpython-39.pyc │ │ │ │ ├── test_merge_requests.cpython-39.pyc │ │ │ │ ├── test_packages.cpython-39.pyc │ │ │ │ ├── test_projects.cpython-39.pyc │ │ │ │ ├── test_releases.cpython-39.pyc │ │ │ │ ├── test_repository.cpython-39.pyc │ │ │ │ ├── test_snippets.cpython-39.pyc │ │ │ │ ├── test_users.cpython-39.pyc │ │ │ │ └── test_variables.cpython-39.pyc │ │ │ ├── test_clusters.py │ │ │ ├── test_current_user.py │ │ │ ├── test_deploy_keys.py │ │ │ ├── test_deploy_tokens.py │ │ │ ├── test_gitlab.py │ │ │ ├── test_groups.py │ │ │ ├── test_import_export.py │ │ │ ├── test_issues.py │ │ │ ├── test_keys.py │ │ │ ├── test_merge_requests.py │ │ │ ├── test_packages.py │ │ │ ├── test_projects.py │ │ │ ├── test_releases.py │ │ │ ├── test_repository.py │ │ │ ├── test_snippets.py │ │ │ ├── test_users.py │ │ │ └── test_variables.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── conftest.cpython-39.pyc │ │ │ │ ├── test_cli_artifacts.cpython-39.pyc │ │ │ │ ├── test_cli_packages.cpython-39.pyc │ │ │ │ ├── test_cli_v4.cpython-39.pyc │ │ │ │ └── test_cli_variables.cpython-39.pyc │ │ │ ├── conftest.py │ │ │ ├── test_cli_artifacts.py │ │ │ ├── test_cli_packages.py │ │ │ ├── test_cli_v4.py │ │ │ └── test_cli_variables.py │ │ ├── conftest.py │ │ └── ee-test.py │ └── unit │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── conftest.cpython-39.pyc │ │ ├── test_base.cpython-39.pyc │ │ ├── test_cli.cpython-39.pyc │ │ ├── test_config.cpython-39.pyc │ │ ├── test_exceptions.cpython-39.pyc │ │ ├── test_gitlab.cpython-39.pyc │ │ ├── test_gitlab_auth.cpython-39.pyc │ │ ├── test_gitlab_http_methods.cpython-39.pyc │ │ ├── test_types.cpython-39.pyc │ │ └── test_utils.cpython-39.pyc │ │ ├── conftest.py │ │ ├── mixins │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── test_meta_mixins.cpython-39.pyc │ │ │ ├── test_mixin_methods.cpython-39.pyc │ │ │ └── test_object_mixins_attributes.cpython-39.pyc │ │ ├── test_meta_mixins.py │ │ ├── test_mixin_methods.py │ │ └── test_object_mixins_attributes.py │ │ ├── objects │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── conftest.cpython-39.pyc │ │ │ ├── test_appearance.cpython-39.pyc │ │ │ ├── test_applications.cpython-39.pyc │ │ │ ├── test_audit_events.cpython-39.pyc │ │ │ ├── test_badges.cpython-39.pyc │ │ │ ├── test_bridges.cpython-39.pyc │ │ │ ├── test_commits.cpython-39.pyc │ │ │ ├── test_deploy_tokens.cpython-39.pyc │ │ │ ├── test_deployments.cpython-39.pyc │ │ │ ├── test_environments.cpython-39.pyc │ │ │ ├── test_groups.cpython-39.pyc │ │ │ ├── test_hooks.cpython-39.pyc │ │ │ ├── test_issues.cpython-39.pyc │ │ │ ├── test_job_artifacts.cpython-39.pyc │ │ │ ├── test_jobs.cpython-39.pyc │ │ │ ├── test_keys.cpython-39.pyc │ │ │ ├── test_members.cpython-39.pyc │ │ │ ├── test_merge_request_pipelines.cpython-39.pyc │ │ │ ├── test_merge_requests.cpython-39.pyc │ │ │ ├── test_mro.cpython-39.pyc │ │ │ ├── test_packages.cpython-39.pyc │ │ │ ├── test_personal_access_tokens.cpython-39.pyc │ │ │ ├── test_pipeline_schedules.cpython-39.pyc │ │ │ ├── test_pipelines.cpython-39.pyc │ │ │ ├── test_project_access_tokens.cpython-39.pyc │ │ │ ├── test_project_import_export.cpython-39.pyc │ │ │ ├── test_project_merge_request_approvals.cpython-39.pyc │ │ │ ├── test_project_statistics.cpython-39.pyc │ │ │ ├── test_projects.cpython-39.pyc │ │ │ ├── test_releases.cpython-39.pyc │ │ │ ├── test_remote_mirrors.cpython-39.pyc │ │ │ ├── test_repositories.cpython-39.pyc │ │ │ ├── test_resource_label_events.cpython-39.pyc │ │ │ ├── test_resource_milestone_events.cpython-39.pyc │ │ │ ├── test_resource_state_events.cpython-39.pyc │ │ │ ├── test_runners.cpython-39.pyc │ │ │ ├── test_services.cpython-39.pyc │ │ │ ├── test_snippets.cpython-39.pyc │ │ │ ├── test_submodules.cpython-39.pyc │ │ │ ├── test_todos.cpython-39.pyc │ │ │ ├── test_users.cpython-39.pyc │ │ │ └── test_variables.cpython-39.pyc │ │ ├── conftest.py │ │ ├── test_appearance.py │ │ ├── test_applications.py │ │ ├── test_audit_events.py │ │ ├── test_badges.py │ │ ├── test_bridges.py │ │ ├── test_commits.py │ │ ├── test_deploy_tokens.py │ │ ├── test_deployments.py │ │ ├── test_environments.py │ │ ├── test_groups.py │ │ ├── test_hooks.py │ │ ├── test_issues.py │ │ ├── test_job_artifacts.py │ │ ├── test_jobs.py │ │ ├── test_keys.py │ │ ├── test_members.py │ │ ├── test_merge_request_pipelines.py │ │ ├── test_merge_requests.py │ │ ├── test_mro.py │ │ ├── test_packages.py │ │ ├── test_personal_access_tokens.py │ │ ├── test_pipeline_schedules.py │ │ ├── test_pipelines.py │ │ ├── test_project_access_tokens.py │ │ ├── test_project_import_export.py │ │ ├── test_project_merge_request_approvals.py │ │ ├── test_project_statistics.py │ │ ├── test_projects.py │ │ ├── test_releases.py │ │ ├── test_remote_mirrors.py │ │ ├── test_repositories.py │ │ ├── test_resource_label_events.py │ │ ├── test_resource_milestone_events.py │ │ ├── test_resource_state_events.py │ │ ├── test_runners.py │ │ ├── test_services.py │ │ ├── test_snippets.py │ │ ├── test_submodules.py │ │ ├── test_todos.py │ │ ├── test_users.py │ │ └── test_variables.py │ │ ├── test_base.py │ │ ├── test_cli.py │ │ ├── test_config.py │ │ ├── test_exceptions.py │ │ ├── test_gitlab.py │ │ ├── test_gitlab_auth.py │ │ ├── test_gitlab_http_methods.py │ │ ├── test_types.py │ │ └── test_utils.py │ ├── urllib3-1.26.7.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── urllib3 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── _collections.cpython-39.pyc │ ├── _version.cpython-39.pyc │ ├── connection.cpython-39.pyc │ ├── connectionpool.cpython-39.pyc │ ├── exceptions.cpython-39.pyc │ ├── fields.cpython-39.pyc │ ├── filepost.cpython-39.pyc │ ├── poolmanager.cpython-39.pyc │ ├── request.cpython-39.pyc │ └── response.cpython-39.pyc │ ├── _collections.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _appengine_environ.cpython-39.pyc │ │ ├── appengine.cpython-39.pyc │ │ ├── ntlmpool.cpython-39.pyc │ │ ├── pyopenssl.cpython-39.pyc │ │ ├── securetransport.cpython-39.pyc │ │ └── socks.cpython-39.pyc │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bindings.cpython-39.pyc │ │ │ └── low_level.cpython-39.pyc │ │ ├── bindings.py │ │ └── low_level.py │ ├── appengine.py │ ├── ntlmpool.py │ ├── pyopenssl.py │ ├── securetransport.py │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── six.cpython-39.pyc │ ├── backports │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── makefile.cpython-39.pyc │ │ └── makefile.py │ ├── six.py │ └── ssl_match_hostname │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── _implementation.cpython-39.pyc │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── connection.cpython-39.pyc │ ├── proxy.cpython-39.pyc │ ├── queue.cpython-39.pyc │ ├── request.cpython-39.pyc │ ├── response.cpython-39.pyc │ ├── retry.cpython-39.pyc │ ├── ssl_.cpython-39.pyc │ ├── ssltransport.cpython-39.pyc │ ├── timeout.cpython-39.pyc │ ├── url.cpython-39.pyc │ └── wait.cpython-39.pyc │ ├── connection.py │ ├── proxy.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── ssltransport.py │ ├── timeout.py │ ├── url.py │ └── wait.py └── seedcode ├── mlops-gitlab-project-seedcode-model-build ├── .gitlab-ci.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── pipelines │ ├── __init__.py │ ├── __version__.py │ ├── _utils.py │ ├── abalone │ │ ├── __init__.py │ │ ├── evaluate.py │ │ ├── pipeline.py │ │ └── preprocess.py │ ├── get_pipeline_definition.py │ └── run_pipeline.py ├── sagemaker-pipelines-project.ipynb ├── setup.cfg ├── setup.py └── tox.ini └── mlops-gitlab-project-seedcode-model-deploy ├── .gitlab-ci.yml ├── README.md ├── build.py ├── deploy.py ├── endpoint-config-template.yml ├── prod-config.json └── staging-config.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/README.md -------------------------------------------------------------------------------- /Terraform files/events.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/Terraform files/events.tf -------------------------------------------------------------------------------- /Terraform files/iam_roles.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/Terraform files/iam_roles.tf -------------------------------------------------------------------------------- /Terraform files/lambdas.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/Terraform files/lambdas.tf -------------------------------------------------------------------------------- /Terraform files/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/Terraform files/main.tf -------------------------------------------------------------------------------- /Terraform files/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/Terraform files/parameters.json -------------------------------------------------------------------------------- /Terraform files/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/Terraform files/variables.tf -------------------------------------------------------------------------------- /img/Terraform_gitlab_pipeline_v3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/img/Terraform_gitlab_pipeline_v3.jpg -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/init.sh -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/bin/gitlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/bin/gitlab -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/bin/normalizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/bin/normalizer -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/LICENSE -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi-2021.5.30.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.05.30" 4 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi/__main__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi/__pycache__/core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi/__pycache__/core.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi/cacert.pem -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/certifi/core.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer-2.0.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer-2.0.6.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer-2.0.6.dist-info/LICENSE -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer-2.0.6.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer-2.0.6.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer-2.0.6.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer-2.0.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/api.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/assets/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/cd.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/cli/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/cli/normalizer.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/constant.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/legacy.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/md.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/models.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/charset_normalizer/version.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/docs/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/docs/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/docs/__pycache__/conf.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/docs/__pycache__/conf.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/docs/conf.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/docs/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/docs/ext/docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/docs/ext/docstrings.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__main__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/__main__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/__main__.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/cli.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/cli.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/client.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/client.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/const.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/const.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/mixins.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/mixins.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/types.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/types.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/__version__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/base.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/cli.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/client.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/config.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/const.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/mixins.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/types.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/__pycache__/cli.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/__pycache__/cli.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/cli.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/access_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/access_requests.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/appearance.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/applications.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/audit_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/audit_events.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/award_emojis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/award_emojis.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/badges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/boards.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/branches.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/broadcast_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/broadcast_messages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/clusters.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/commits.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/container_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/container_registry.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/custom_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/custom_attributes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/deploy_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/deploy_keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/deploy_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/deploy_tokens.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/deployments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/discussions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/discussions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/environments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/epics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/epics.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/events.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/export_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/export_import.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/features.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/files.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/geo_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/geo_nodes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/groups.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/hooks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/issues.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/jobs.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/labels.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/ldap.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/members.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/merge_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/merge_requests.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/milestones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/milestones.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/namespaces.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/notes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/notification_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/notification_settings.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/pages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/pipelines.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/projects.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/push_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/push_rules.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/releases.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/repositories.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/runners.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/services.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/settings.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/sidekiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/sidekiq.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/snippets.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/statistics.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/tags.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/templates.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/todos.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/triggers.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/users.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/variables.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/wikis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/gitlab/v4/objects/wikis.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/LICENSE.md -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna-3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/__pycache__/codec.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/__pycache__/codec.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/__pycache__/core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/__pycache__/core.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/codec.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/compat.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/core.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/idnadata.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/intranges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2' 2 | 3 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/idna/uts46data.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/lambda_function.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/AUTHORS -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/COPYING -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/python_gitlab-2.10.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docs 2 | gitlab 3 | tests 4 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/LICENSE -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests-2.26.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/__pycache__/api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/__pycache__/api.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/__version__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/_internal_utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/adapters.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/api.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/auth.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/certs.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/compat.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/cookies.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/help.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/hooks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/models.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/sessions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/status_codes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/structures.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests/utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt-0.9.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt-0.9.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt-0.9.1.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt-0.9.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests_toolbelt 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/_compat.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/appengine.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/source.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/ssl.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/adapters/x509.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/auth/guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/auth/guess.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/auth/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/auth/handler.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/cookies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/cookies/forgetful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/cookies/forgetful.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/downloadutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/downloadutils/tee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/downloadutils/tee.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/multipart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/multipart/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/multipart/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/multipart/decoder.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/multipart/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/multipart/encoder.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/sessions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/streaming_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/streaming_iterator.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/threaded/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/threaded/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/threaded/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/threaded/pool.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/threaded/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/threaded/thread.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/deprecated.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/dump.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/formdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/formdata.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/requests_toolbelt/utils/user_agent.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_clusters.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_gitlab.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_groups.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_issues.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_projects.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_releases.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_repository.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_snippets.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_users.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/api/test_variables.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/cli/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/cli/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/cli/test_cli_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/cli/test_cli_v4.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/ee-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/functional/ee-test.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/mixins/test_meta_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/mixins/test_meta_mixins.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/mixins/test_mixin_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/mixins/test_mixin_methods.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_appearance.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_applications.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_audit_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_audit_events.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_badges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_bridges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_bridges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_commits.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_deployments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_environments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_groups.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_hooks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_issues.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_jobs.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_members.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_mro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_mro.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_pipelines.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_projects.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_releases.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_repositories.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_runners.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_services.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_snippets.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_submodules.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_todos.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_users.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/objects/test_variables.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_base.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_cli.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_config.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_gitlab.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_gitlab_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_gitlab_auth.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_gitlab_http_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_gitlab_http_methods.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_types.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/tests/unit/test_utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3-1.26.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/_collections.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.7" 3 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/connection.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/connectionpool.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/fields.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/filepost.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/packages/six.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/poolmanager.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/request.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/response.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/connection.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/proxy.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/queue.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/request.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/response.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/retry.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/timeout.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/url.py -------------------------------------------------------------------------------- /lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-gitlab-pipeline-trigger/urllib3/util/wait.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/bin/gitlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/bin/gitlab -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/bin/normalizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/bin/normalizer -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/LICENSE -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi-2021.5.30.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.05.30" 4 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi/__main__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi/__pycache__/core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi/__pycache__/core.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi/cacert.pem -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/certifi/core.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse-1.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | cfnresponse 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/cfnresponse/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer-2.0.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer-2.0.6.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer-2.0.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | charset_normalizer 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/api.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/assets/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/cd.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/cli/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/cli/normalizer.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/constant.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/legacy.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/md.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/models.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/charset_normalizer/version.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/docs/__pycache__/conf.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/docs/__pycache__/conf.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/docs/conf.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/docs/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/docs/ext/docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/docs/ext/docstrings.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__main__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/base.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/base.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/cli.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/cli.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/const.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/const.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/types.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/types.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/__version__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/base.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/cli.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/client.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/config.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/const.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/mixins.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/types.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/cli.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/access_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/access_requests.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/appearance.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/applications.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/audit_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/audit_events.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/award_emojis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/award_emojis.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/badges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/boards.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/branches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/branches.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/broadcast_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/broadcast_messages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/clusters.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/commits.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/container_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/container_registry.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/custom_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/custom_attributes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/deploy_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/deploy_keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/deploy_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/deploy_tokens.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/deployments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/discussions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/discussions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/environments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/epics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/epics.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/events.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/export_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/export_import.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/features.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/files.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/geo_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/geo_nodes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/groups.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/hooks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/issues.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/jobs.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/labels.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/ldap.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/members.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/merge_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/merge_requests.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/milestones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/milestones.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/namespaces.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/notes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/pages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/pipelines.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/projects.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/push_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/push_rules.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/releases.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/repositories.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/runners.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/services.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/settings.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/sidekiq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/sidekiq.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/snippets.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/statistics.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/tags.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/templates.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/todos.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/triggers.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/users.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/variables.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/wikis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/gitlab/v4/objects/wikis.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/LICENSE.md -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna-3.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/__pycache__/codec.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/__pycache__/codec.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/__pycache__/compat.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/__pycache__/compat.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/__pycache__/core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/__pycache__/core.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/codec.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/compat.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/core.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/idnadata.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/intranges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.2' 2 | 3 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/idna/uts46data.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/lambda_function.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/AUTHORS -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/COPYING -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/python_gitlab-2.10.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docs 2 | gitlab 3 | tests 4 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/LICENSE -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests-2.26.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/__pycache__/api.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/__pycache__/api.cpython-39.pyc -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/__version__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/_internal_utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/adapters.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/api.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/auth.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/certs.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/compat.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/cookies.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/help.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/hooks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/models.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/sessions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/status_codes.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/structures.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests/utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt-0.9.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt-0.9.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt-0.9.1.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt-0.9.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests_toolbelt 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/_compat.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/appengine.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/source.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/ssl.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/x509.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/adapters/x509.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/auth/guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/auth/guess.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/auth/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/auth/handler.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/cookies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/cookies/forgetful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/cookies/forgetful.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/downloadutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/downloadutils/tee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/downloadutils/tee.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/multipart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/multipart/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/multipart/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/multipart/decoder.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/multipart/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/multipart/encoder.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/sessions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/streaming_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/streaming_iterator.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/threaded/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/threaded/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/threaded/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/threaded/pool.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/threaded/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/threaded/thread.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/deprecated.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/dump.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/formdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/formdata.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/requests_toolbelt/utils/user_agent.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_clusters.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_gitlab.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_groups.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_issues.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_projects.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_releases.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_repository.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_snippets.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_users.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/api/test_variables.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/cli/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/cli/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/cli/test_cli_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/cli/test_cli_v4.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/ee-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/functional/ee-test.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/mixins/test_meta_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/mixins/test_meta_mixins.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/mixins/test_mixin_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/mixins/test_mixin_methods.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/conftest.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_appearance.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_applications.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_audit_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_audit_events.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_badges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_badges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_bridges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_bridges.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_commits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_commits.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_deployments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_deployments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_environments.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_groups.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_hooks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_issues.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_jobs.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_keys.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_members.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_mro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_mro.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_packages.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_pipelines.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_projects.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_releases.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_repositories.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_runners.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_services.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_snippets.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_submodules.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_todos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_todos.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_users.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/objects/test_variables.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_base.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_cli.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_config.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_gitlab.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_gitlab_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_gitlab_auth.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_gitlab_http_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_gitlab_http_methods.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_types.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/tests/unit/test_utils.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/METADATA -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/RECORD -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/WHEEL -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3-1.26.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/_collections.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.7" 3 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/connection.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/connectionpool.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/exceptions.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/fields.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/filepost.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/packages/six.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/poolmanager.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/request.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/response.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/__init__.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/connection.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/proxy.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/queue.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/request.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/response.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/retry.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/ssltransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/ssltransport.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/timeout.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/url.py -------------------------------------------------------------------------------- /lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/lambda_functions/lambda-seedcode-checkin-gitlab/urllib3/util/wait.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/.gitlab-ci.yml -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/CONTRIBUTING.md -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/README.md -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/__version__.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/_utils.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/abalone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/abalone/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/abalone/evaluate.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/abalone/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/abalone/pipeline.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/abalone/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/abalone/preprocess.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/get_pipeline_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/get_pipeline_definition.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/run_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/pipelines/run_pipeline.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/sagemaker-pipelines-project.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/sagemaker-pipelines-project.ipynb -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/setup.cfg -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/setup.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-build/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-build/tox.ini -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-deploy/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-deploy/.gitlab-ci.yml -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-deploy/README.md -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-deploy/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-deploy/build.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-deploy/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-deploy/deploy.py -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-deploy/endpoint-config-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-deploy/endpoint-config-template.yml -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-deploy/prod-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-deploy/prod-config.json -------------------------------------------------------------------------------- /seedcode/mlops-gitlab-project-seedcode-model-deploy/staging-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/sagemaker-mlops-with-terraform/HEAD/seedcode/mlops-gitlab-project-seedcode-model-deploy/staging-config.json --------------------------------------------------------------------------------