8000 Add CodeStarConnections to the client types by giograno · Pull Request #12308 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Add CodeStarConnections to the client types #12308

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.9.7
rev: v0.9.8
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
4 changes: 4 additions & 0 deletions localstack-core/localstack/utils/aws/client_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
from mypy_boto3_codecommit import CodeCommitClient
from mypy_boto3_codedeploy import CodeDeployClient
from mypy_boto3_codepipeline import CodePipelineClient
from mypy_boto3_codestar_connections import CodeStarconnectionsClient
from mypy_boto3_cognito_identity import CognitoIdentityClient
from mypy_boto3_cognito_idp import CognitoIdentityProviderClient
from mypy_boto3_dms import DatabaseMigrationServiceClient
Expand Down Expand Up @@ -140,6 +141,9 @@ class TypedServiceClientFactory(abc.ABC):
codecommit: Union["CodeCommitClient", "MetadataRequestInjector[CodeCommitClient]"]
codedeploy: Union["CodeDeployClient", "MetadataRequestInjector[CodeDeployClient]"]
codepipeline: Union["CodePipelineClient", "MetadataRequestInjector[CodePipelineClient]"]
codestar_connections: Union[
"CodeStarconnectionsClient", "MetadataRequestInjector[CodeStarconnectionsClient]"
]
cognito_identity: Union[
"CognitoIdentityClient", "MetadataRequestInjector[CognitoIdentityClient]"
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ typehint = [
# typehint is an optional extension of the dev dependencies
"localstack-core[dev]",
# pinned / updated by ASF update action
"boto3-stubs[acm,acm-pca,amplify,apigateway,apigatewayv2,appconfig,appconfigdata,application-autoscaling,appsync,athena,autoscaling,backup,batch,ce,cloudcontrol,cloudformation,cloudfront,cloudtrail,cloudwatch,codebuild,codecommit,codedeploy,codepipeline,cognito-identity,cognito-idp,dms,docdb,dynamodb,dynamodbstreams,ec2,ecr,ecs,efs,eks,elasticache,elasticbeanstalk,elbv2,emr,emr-serverless,es,events,firehose,fis,glacier,glue,iam,identitystore,iot,iot-data,iotanalytics,iotwireless,kafka,kinesis,kinesisanalytics,kinesisanalyticsv2,kms,lakeformation,lambda,logs,managedblockchain,mediaconvert,mediastore,mq,mwaa,neptune,opensearch,organizations,pi,pipes,pinpoint,qldb,qldb-session,rds,rds-data,redshift,redshift-data,resource-groups,resourcegroupstaggingapi,route53,route53resolver,s3,s3control,sagemaker,sagemaker-runtime,secretsmanager,serverlessrepo,servicediscovery,ses,sesv2,sns,sqs,ssm,sso-admin,stepfunctions,sts,timestream-query,timestream-write,transcribe,wafv2,xray]",
"boto3-stubs[acm,acm-pca,amplify,apigateway,apigatewayv2,appconfig,appconfigdata,application-autoscaling,appsync,athena,autoscaling,backup,batch,ce,cloudcontrol,cloudformation,cloudfront,cloudtrail,cloudwatch,codebuild,codecommit,codedeploy,codepipeline,codestar-connections,cognito-identity,cognito-idp,dms,docdb,dynamodb,dynamodbstreams,ec2,ecr,ecs,efs,eks,elasticache,elasticbeanstalk,elbv2,emr,emr-serverless,es,events,firehose,fis,glacier,glue,iam,identitystore,iot,iot-data,iotanalytics,iotwireless,kafka,kinesis,kinesisanalytics,kinesisanalyticsv2,kms,lakeformation,lambda,logs,managedblockchain,mediaconvert,mediastore,mq,mwaa,neptune,opensearch,organizations,pi,pipes,pinpoint,qldb,qldb-session,rds,rds-data,redshift,redshift-data,resource-groups,resourcegroupstaggingapi,route53,route53resolver,s3,s3control,sagemaker,sagemaker-runtime,secretsmanager,serverlessrepo,servicediscovery,ses,sesv2,sns,sqs,ssm,sso-admin,stepfunctions,sts,timestream-query,timestream-write,transcribe,wafv2,xray]",
]

[tool.setuptools]
Expand Down
2 changes: 1 addition & 1 deletion requirements-base-runtime.txt
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ rpds-py==0.23.1
# via
# jsonschema
# referencing
s3transfer==0.11.2
s3transfer==0.11.3
# via boto3
semver==3.0.4
# via localstack-core (pyproject.toml)
Expand Down
8 changes: 4 additions & 4 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ aws-cdk-asset-node-proxy-agent-v6==2.1.0
# via aws-cdk-lib
aws-cdk-cloud-assembly-schema==39.2.20
# via aws-cdk-lib
aws-cdk-lib==2.180.0
aws-cdk-lib==2.181.0
# via localstack-core
aws-sam-translator==1.95.0
# via
Expand Down Expand Up @@ -83,7 +83,7 @@ cffi==1.17.1
# via cryptography
cfgv==3.4.0
# via pre-commit
cfn-lint==1.25.1
cfn-lint==1.26.1
# via moto-ext
charset-normalizer==3.4.1
# via requests
Expand Down Expand Up @@ -426,9 +426,9 @@ rsa==4.7.2
# via awscli
rstr==3.2.2
# via localstack-core (pyproject.toml)
ruff==0.9.7
ruff==0.9.8
# via localstack-core (pyproject.toml)
s3transfer==0.11.2
s3transfer==0.11.3
# via
# awscli
# boto3
Expand Down
4 changes: 2 additions & 2 deletions requirements-runtime.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ certifi==2025.1.31
# requests
cffi==1.17.1
# via cryptography
cfn-lint==1.25.1
cfn-lint==1.26.1
# via moto-ext
charset-normalizer==3.4.1
# via requests
Expand Down Expand Up @@ -312,7 +312,7 @@ rpds-py==0.23.1
# referencing
rsa==4.7.2
# via awscli
s3transfer==0.11.2
s3transfer==0.11.3
# via
# awscli
# boto3
Expand Down
6 changes: 3 additions & 3 deletions requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ aws-cdk-asset-node-proxy-agent-v6==2.1.0
# via aws-cdk-lib
aws-cdk-cloud-assembly-schema==39.2.20
# via aws-cdk-lib
aws-cdk-lib==2.180.0
aws-cdk-lib==2.181.0
# via localstack-core (pyproject.toml)
aws-sam-translator==1.95.0
# via
Expand Down Expand Up @@ -81,7 +81,7 @@ certifi==2025.1.31
# requests
cffi==1.17.1
# via cryptography
cfn-lint==1.25.1
cfn-lint==1.26.1
# via moto-ext
charset-normalizer==3.4.1
# via requests
Expand Down Expand Up @@ -390,7 +390,7 @@ rpds-py==0.23.1
# referencing
rsa==4.7.2
# via awscli
s3transfer==0.11.2
s3transfer==0.11.3
# via
# awscli
# boto3
Expand Down
29 changes: 16 additions & 13 deletions requirements-typehint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ aws-cdk-asset-node-proxy-agent-v6==2.1.0
# via aws-cdk-lib
aws-cdk-cloud-assembly-schema==39.2.20
# via aws-cdk-lib
aws-cdk-lib==2.180.0
aws-cdk-lib==2.181.0
# via localstack-core
aws-sam-translator==1.95.0
# via
Expand All @@ -51,7 +51,7 @@ boto3==1.36.21
# aws-sam-translator
# localstack-core
# moto-ext
boto3-stubs==1.37.0
boto3-stubs==1.37.2
# via localstack-core (pyproject.toml)
botocore==1.36.21
# via
Expand All @@ -62,7 +62,7 @@ botocore==1.36.21
# localstack-snapshot
# moto-ext
# s3transfer
botocore-stubs==1.36.26
botocore-stubs==1.37.1
# via boto3-stubs
build==1.2.2.post1
# via
Expand All @@ -87,7 +87,7 @@ cffi==1.17.1
# via cryptography
cfgv==3.4.0
# via pre-commit
cfn-lint==1.25.1
cfn-lint==1.26.1
# via moto-ext
charset-normalizer==3.4.1
# via requests
Expand Down Expand Up @@ -285,28 +285,30 @@ mypy-boto3-autoscaling==1.37.0
# via boto3-stubs
mypy-boto3-backup==1.37.0
# via boto3-stubs
mypy-boto3-batch==1.37.0
mypy-boto3-batch==1.37.2
# via boto3-stubs
mypy-boto3-ce==1.37.0
# via boto3-stubs
mypy-boto3-cloudcontrol==1.37.0
# via boto3-stubs
mypy-boto3-cloudformation==1.37.0
# via boto3-stubs
mypy-boto3-cloudfront==1.37.0
mypy-boto3-cloudfront==1.37.2
# via boto3-stubs
mypy-boto3-cloudtrail==1.37.0
# via boto3-stubs
mypy-boto3-cloudwatch==1.37.0
# via boto3-stubs
mypy-boto3-codebuild==1.37.0
mypy-boto3-codebuild==1.37.1
# via boto3-stubs
mypy-boto3-codecommit==1.37.0
# via boto3-stubs
mypy-boto3-codedeploy==1.37.0
# via boto3-stubs
mypy-boto3-codepipeline==1.37.0
# via boto3-stubs
mypy-boto3-codestar-connections==1.37.0
# via boto3-stubs
mypy-boto3-cognito-identity==1.37.0
# via boto3-stubs
mypy-boto3-cognito-idp==1.37.0
Expand All @@ -319,7 +321,7 @@ mypy-boto3-dynamodb==1.37.0
# via boto3-stubs
mypy-boto3-dynamodbstreams==1.37.0
# via boto3-stubs
mypy-boto3-ec2==1.37.0
mypy-boto3-ec2==1.37.2
# via boto3-stubs
mypy-boto3-ecr==1.37.0
# via boto3-stubs
Expand Down Expand Up @@ -355,7 +357,7 @@ mypy-boto3-iam==1.37.0
# via boto3-stubs
mypy-boto3-identitystore==1.37.0
# via boto3-stubs
mypy-boto3-iot==1.37.0
mypy-boto3-iot==1.37.1
# via boto3-stubs
mypy-boto3-iot-data==1.37.0
# via boto3-stubs
Expand Down Expand Up @@ -425,7 +427,7 @@ mypy-boto3-s3==1.37.0
# via boto3-stubs
mypy-boto3-s3control==1.37.0
# via boto3-stubs
mypy-boto3-sagemaker==1.37.0
mypy-boto3-sagemaker==1.37.2
# via boto3-stubs
mypy-boto3-sagemaker-runtime==1.37.0
# via boto3-stubs
Expand Down Expand Up @@ -630,9 +632,9 @@ rsa==4.7.2
# via awscli
rstr==3.2.2
# via localstack-core
ruff==0.9.7
ruff==0.9.8
# via localstack-core
s3transfer==0.11.2
s3transfer==0.11.3
# via
# awscli
# boto3
Expand Down Expand Up @@ -664,7 +666,7 @@ typeguard==2.13.3
# jsii
types-awscrt==0.23.10
# via botocore-stubs
types-s3transfer==0.11.2
types-s3transfer==0.11.3
# via boto3-stubs
typing-extensions==4.12.2
# via
Expand Down Expand Up @@ -697,6 +699,7 @@ typing-extensions==4.12.2
# mypy-boto3-codecommit
# mypy-boto3-codedeploy
# mypy-boto3-codepipeline
# mypy-boto3-codestar-connections
# mypy-boto3-cognito-identity
# mypy-boto3-cognito-idp
# mypy-boto3-dms
Expand Down
Loading
0