@aws-sdk/client-servicediscovery
Advanced tools
Comparing version 3.687.0 to 3.691.0
@@ -9,8 +9,8 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; | ||
Name: string | undefined; | ||
CreatorRequestId?: string; | ||
Description?: string; | ||
Tags?: Tag[]; | ||
CreatorRequestId?: string | undefined; | ||
Description?: string | undefined; | ||
Tags?: Tag[] | undefined; | ||
} | ||
export interface CreateHttpNamespaceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
@@ -20,4 +20,4 @@ export declare class DuplicateRequest extends __BaseException { | ||
readonly $fault: "client"; | ||
Message?: string; | ||
DuplicateOperationId?: string; | ||
Message?: string | undefined; | ||
DuplicateOperationId?: string | undefined; | ||
constructor(opts: __ExceptionOptionType<DuplicateRequest, __BaseException>); | ||
@@ -28,3 +28,3 @@ } | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor(opts: __ExceptionOptionType<InvalidInput, __BaseException>); | ||
@@ -35,5 +35,5 @@ } | ||
readonly $fault: "client"; | ||
Message?: string; | ||
CreatorRequestId?: string; | ||
NamespaceId?: string; | ||
Message?: string | undefined; | ||
CreatorRequestId?: string | undefined; | ||
NamespaceId?: string | undefined; | ||
constructor( | ||
@@ -46,3 +46,3 @@ opts: __ExceptionOptionType<NamespaceAlreadyExists, __BaseException> | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor( | ||
@@ -55,4 +55,4 @@ opts: __ExceptionOptionType<ResourceLimitExceeded, __BaseException> | ||
readonly $fault: "client"; | ||
Message?: string; | ||
ResourceName?: string; | ||
Message?: string | undefined; | ||
ResourceName?: string | undefined; | ||
constructor( | ||
@@ -73,10 +73,10 @@ opts: __ExceptionOptionType<TooManyTagsException, __BaseException> | ||
Name: string | undefined; | ||
CreatorRequestId?: string; | ||
Description?: string; | ||
CreatorRequestId?: string | undefined; | ||
Description?: string | undefined; | ||
Vpc: string | undefined; | ||
Tags?: Tag[]; | ||
Properties?: PrivateDnsNamespaceProperties; | ||
Tags?: Tag[] | undefined; | ||
Properties?: PrivateDnsNamespaceProperties | undefined; | ||
} | ||
export interface CreatePrivateDnsNamespaceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
@@ -91,9 +91,9 @@ export interface PublicDnsPropertiesMutable { | ||
Name: string | undefined; | ||
CreatorRequestId?: string; | ||
Description?: string; | ||
Tags?: Tag[]; | ||
Properties?: PublicDnsNamespaceProperties; | ||
CreatorRequestId?: string | undefined; | ||
Description?: string | undefined; | ||
Tags?: Tag[] | undefined; | ||
Properties?: PublicDnsNamespaceProperties | undefined; | ||
} | ||
export interface CreatePublicDnsNamespaceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
@@ -117,4 +117,4 @@ export declare const RecordType: { | ||
export interface DnsConfig { | ||
NamespaceId?: string; | ||
RoutingPolicy?: RoutingPolicy; | ||
NamespaceId?: string | undefined; | ||
RoutingPolicy?: RoutingPolicy | undefined; | ||
DnsRecords: DnsRecord[] | undefined; | ||
@@ -131,7 +131,7 @@ } | ||
Type: HealthCheckType | undefined; | ||
ResourcePath?: string; | ||
FailureThreshold?: number; | ||
ResourcePath?: string | undefined; | ||
FailureThreshold?: number | undefined; | ||
} | ||
export interface HealthCheckCustomConfig { | ||
FailureThreshold?: number; | ||
FailureThreshold?: number | undefined; | ||
} | ||
@@ -145,10 +145,10 @@ export declare const ServiceTypeOption: { | ||
Name: string | undefined; | ||
NamespaceId?: string; | ||
CreatorRequestId?: string; | ||
Description?: string; | ||
DnsConfig?: DnsConfig; | ||
HealthCheckConfig?: HealthCheckConfig; | ||
HealthCheckCustomConfig?: HealthCheckCustomConfig; | ||
Tags?: Tag[]; | ||
Type?: ServiceTypeOption; | ||
NamespaceId?: string | undefined; | ||
CreatorRequestId?: string | undefined; | ||
Description?: string | undefined; | ||
DnsConfig?: DnsConfig | undefined; | ||
HealthCheckConfig?: HealthCheckConfig | undefined; | ||
HealthCheckCustomConfig?: HealthCheckCustomConfig | undefined; | ||
Tags?: Tag[] | undefined; | ||
Type?: ServiceTypeOption | undefined; | ||
} | ||
@@ -162,17 +162,17 @@ export declare const ServiceType: { | ||
export interface Service { | ||
Id?: string; | ||
Arn?: string; | ||
Name?: string; | ||
NamespaceId?: string; | ||
Description?: string; | ||
InstanceCount?: number; | ||
DnsConfig?: DnsConfig; | ||
Type?: ServiceType; | ||
HealthCheckConfig?: HealthCheckConfig; | ||
HealthCheckCustomConfig?: HealthCheckCustomConfig; | ||
CreateDate?: Date; | ||
CreatorRequestId?: string; | ||
Id?: string | undefined; | ||
Arn?: string | undefined; | ||
Name?: string | undefined; | ||
NamespaceId?: string | undefined; | ||
Description?: string | undefined; | ||
InstanceCount?: number | undefined; | ||
DnsConfig?: DnsConfig | undefined; | ||
Type?: ServiceType | undefined; | ||
HealthCheckConfig?: HealthCheckConfig | undefined; | ||
HealthCheckCustomConfig?: HealthCheckCustomConfig | undefined; | ||
CreateDate?: Date | undefined; | ||
CreatorRequestId?: string | undefined; | ||
} | ||
export interface CreateServiceResponse { | ||
Service?: Service; | ||
Service?: Service | undefined; | ||
} | ||
@@ -182,3 +182,3 @@ export declare class NamespaceNotFound extends __BaseException { | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor(opts: __ExceptionOptionType<NamespaceNotFound, __BaseException>); | ||
@@ -189,5 +189,5 @@ } | ||
readonly $fault: "client"; | ||
Message?: string; | ||
CreatorRequestId?: string; | ||
ServiceId?: string; | ||
Message?: string | undefined; | ||
CreatorRequestId?: string | undefined; | ||
ServiceId?: string | undefined; | ||
constructor( | ||
@@ -200,3 +200,3 @@ opts: __ExceptionOptionType<ServiceAlreadyExists, __BaseException> | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor( | ||
@@ -216,3 +216,3 @@ opts: __ExceptionOptionType<CustomHealthNotFound, __BaseException> | ||
export interface DeleteNamespaceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
@@ -222,3 +222,3 @@ export declare class ResourceInUse extends __BaseException { | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>); | ||
@@ -233,3 +233,3 @@ } | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor(opts: __ExceptionOptionType<ServiceNotFound, __BaseException>); | ||
@@ -242,3 +242,3 @@ } | ||
export interface DeregisterInstanceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
@@ -248,3 +248,3 @@ export declare class InstanceNotFound extends __BaseException { | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor(opts: __ExceptionOptionType<InstanceNotFound, __BaseException>); | ||
@@ -263,6 +263,6 @@ } | ||
ServiceName: string | undefined; | ||
MaxResults?: number; | ||
QueryParameters?: Record<string, string>; | ||
OptionalParameters?: Record<string, string>; | ||
HealthStatus?: HealthStatusFilter; | ||
MaxResults?: number | undefined; | ||
QueryParameters?: Record<string, string> | undefined; | ||
OptionalParameters?: Record<string, string> | undefined; | ||
HealthStatus?: HealthStatusFilter | undefined; | ||
} | ||
@@ -276,11 +276,11 @@ export declare const HealthStatus: { | ||
export interface HttpInstanceSummary { | ||
InstanceId?: string; | ||
NamespaceName?: string; | ||
ServiceName?: string; | ||
HealthStatus?: HealthStatus; | ||
Attributes?: Record<string, string>; | ||
InstanceId?: string | undefined; | ||
NamespaceName?: string | undefined; | ||
ServiceName?: string | undefined; | ||
HealthStatus?: HealthStatus | undefined; | ||
Attributes?: Record<string, string> | undefined; | ||
} | ||
export interface DiscoverInstancesResponse { | ||
Instances?: HttpInstanceSummary[]; | ||
InstancesRevision?: number; | ||
Instances?: HttpInstanceSummary[] | undefined; | ||
InstancesRevision?: number | undefined; | ||
} | ||
@@ -290,3 +290,3 @@ export declare class RequestLimitExceeded extends __BaseException { | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor( | ||
@@ -301,3 +301,3 @@ opts: __ExceptionOptionType<RequestLimitExceeded, __BaseException> | ||
export interface DiscoverInstancesRevisionResponse { | ||
InstancesRevision?: number; | ||
InstancesRevision?: number | undefined; | ||
} | ||
@@ -308,4 +308,4 @@ export interface DnsConfigChange { | ||
export interface DnsProperties { | ||
HostedZoneId?: string; | ||
SOA?: SOA; | ||
HostedZoneId?: string | undefined; | ||
SOA?: SOA | undefined; | ||
} | ||
@@ -326,17 +326,17 @@ export declare const FilterCondition: { | ||
Id: string | undefined; | ||
CreatorRequestId?: string; | ||
Attributes?: Record<string, string>; | ||
CreatorRequestId?: string | undefined; | ||
Attributes?: Record<string, string> | undefined; | ||
} | ||
export interface GetInstanceResponse { | ||
Instance?: Instance; | ||
Instance?: Instance | undefined; | ||
} | ||
export interface GetInstancesHealthStatusRequest { | ||
ServiceId: string | undefined; | ||
Instances?: string[]; | ||
MaxResults?: number; | ||
NextToken?: string; | ||
Instances?: string[] | undefined; | ||
MaxResults?: number | undefined; | ||
NextToken?: string | undefined; | ||
} | ||
export interface GetInstancesHealthStatusResponse { | ||
Status?: Record<string, HealthStatus>; | ||
NextToken?: string; | ||
Status?: Record<string, HealthStatus> | undefined; | ||
NextToken?: string | undefined; | ||
} | ||
@@ -347,7 +347,7 @@ export interface GetNamespaceRequest { | ||
export interface HttpProperties { | ||
HttpName?: string; | ||
HttpName?: string | undefined; | ||
} | ||
export interface NamespaceProperties { | ||
DnsProperties?: DnsProperties; | ||
HttpProperties?: HttpProperties; | ||
DnsProperties?: DnsProperties | undefined; | ||
HttpProperties?: HttpProperties | undefined; | ||
} | ||
@@ -361,14 +361,14 @@ export declare const NamespaceType: { | ||
export interface Namespace { | ||
Id?: string; | ||
Arn?: string; | ||
Name?: string; | ||
Type?: NamespaceType; | ||
Description?: string; | ||
ServiceCount?: number; | ||
Properties?: NamespaceProperties; | ||
CreateDate?: Date; | ||
CreatorRequestId?: string; | ||
Id?: string | undefined; | ||
Arn?: string | undefined; | ||
Name?: string | undefined; | ||
Type?: NamespaceType | undefined; | ||
Description?: string | undefined; | ||
ServiceCount?: number | undefined; | ||
Properties?: NamespaceProperties | undefined; | ||
CreateDate?: Date | undefined; | ||
CreatorRequestId?: string | undefined; | ||
} | ||
export interface GetNamespaceResponse { | ||
Namespace?: Namespace; | ||
Namespace?: Namespace | undefined; | ||
} | ||
@@ -403,13 +403,13 @@ export interface GetOperationRequest { | ||
export interface Operation { | ||
Id?: string; | ||
Type?: OperationType; | ||
Status?: OperationStatus; | ||
ErrorMessage?: string; | ||
ErrorCode?: string; | ||
CreateDate?: Date; | ||
UpdateDate?: Date; | ||
Targets?: Partial<Record<OperationTargetType, string>>; | ||
Id?: string | undefined; | ||
Type?: OperationType | undefined; | ||
Status?: OperationStatus | undefined; | ||
ErrorMessage?: string | undefined; | ||
ErrorCode?: string | undefined; | ||
CreateDate?: Date | undefined; | ||
UpdateDate?: Date | undefined; | ||
Targets?: Partial<Record<OperationTargetType, string>> | undefined; | ||
} | ||
export interface GetOperationResponse { | ||
Operation?: Operation; | ||
Operation?: Operation | undefined; | ||
} | ||
@@ -419,3 +419,3 @@ export declare class OperationNotFound extends __BaseException { | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor(opts: __ExceptionOptionType<OperationNotFound, __BaseException>); | ||
@@ -427,3 +427,3 @@ } | ||
export interface GetServiceResponse { | ||
Service?: Service; | ||
Service?: Service | undefined; | ||
} | ||
@@ -434,13 +434,13 @@ export interface HttpNamespaceChange { | ||
export interface InstanceSummary { | ||
Id?: string; | ||
Attributes?: Record<string, string>; | ||
Id?: string | undefined; | ||
Attributes?: Record<string, string> | undefined; | ||
} | ||
export interface ListInstancesRequest { | ||
ServiceId: string | undefined; | ||
NextToken?: string; | ||
MaxResults?: number; | ||
NextToken?: string | undefined; | ||
MaxResults?: number | undefined; | ||
} | ||
export interface ListInstancesResponse { | ||
Instances?: InstanceSummary[]; | ||
NextToken?: string; | ||
Instances?: InstanceSummary[] | undefined; | ||
NextToken?: string | undefined; | ||
} | ||
@@ -457,22 +457,22 @@ export declare const NamespaceFilterName: { | ||
Values: string[] | undefined; | ||
Condition?: FilterCondition; | ||
Condition?: FilterCondition | undefined; | ||
} | ||
export interface ListNamespacesRequest { | ||
NextToken?: string; | ||
MaxResults?: number; | ||
Filters?: NamespaceFilter[]; | ||
NextToken?: string | undefined; | ||
MaxResults?: number | undefined; | ||
Filters?: NamespaceFilter[] | undefined; | ||
} | ||
export interface NamespaceSummary { | ||
Id?: string; | ||
Arn?: string; | ||
Name?: string; | ||
Type?: NamespaceType; | ||
Description?: string; | ||
ServiceCount?: number; | ||
Properties?: NamespaceProperties; | ||
CreateDate?: Date; | ||
Id?: string | undefined; | ||
Arn?: string | undefined; | ||
Name?: string | undefined; | ||
Type?: NamespaceType | undefined; | ||
Description?: string | undefined; | ||
ServiceCount?: number | undefined; | ||
Properties?: NamespaceProperties | undefined; | ||
CreateDate?: Date | undefined; | ||
} | ||
export interface ListNamespacesResponse { | ||
Namespaces?: NamespaceSummary[]; | ||
NextToken?: string; | ||
Namespaces?: NamespaceSummary[] | undefined; | ||
NextToken?: string | undefined; | ||
} | ||
@@ -491,16 +491,16 @@ export declare const OperationFilterName: { | ||
Values: string[] | undefined; | ||
Condition?: FilterCondition; | ||
Condition?: FilterCondition | undefined; | ||
} | ||
export interface ListOperationsRequest { | ||
NextToken?: string; | ||
MaxResults?: number; | ||
Filters?: OperationFilter[]; | ||
NextToken?: string | undefined; | ||
MaxResults?: number | undefined; | ||
Filters?: OperationFilter[] | undefined; | ||
} | ||
export interface OperationSummary { | ||
Id?: string; | ||
Status?: OperationStatus; | ||
Id?: string | undefined; | ||
Status?: OperationStatus | undefined; | ||
} | ||
export interface ListOperationsResponse { | ||
Operations?: OperationSummary[]; | ||
NextToken?: string; | ||
Operations?: OperationSummary[] | undefined; | ||
NextToken?: string | undefined; | ||
} | ||
@@ -515,24 +515,24 @@ export declare const ServiceFilterName: { | ||
Values: string[] | undefined; | ||
Condition?: FilterCondition; | ||
Condition?: FilterCondition | undefined; | ||
} | ||
export interface ListServicesRequest { | ||
NextToken?: string; | ||
MaxResults?: number; | ||
Filters?: ServiceFilter[]; | ||
NextToken?: string | undefined; | ||
MaxResults?: number | undefined; | ||
Filters?: ServiceFilter[] | undefined; | ||
} | ||
export interface ServiceSummary { | ||
Id?: string; | ||
Arn?: string; | ||
Name?: string; | ||
Type?: ServiceType; | ||
Description?: string; | ||
InstanceCount?: number; | ||
DnsConfig?: DnsConfig; | ||
HealthCheckConfig?: HealthCheckConfig; | ||
HealthCheckCustomConfig?: HealthCheckCustomConfig; | ||
CreateDate?: Date; | ||
Id?: string | undefined; | ||
Arn?: string | undefined; | ||
Name?: string | undefined; | ||
Type?: ServiceType | undefined; | ||
Description?: string | undefined; | ||
InstanceCount?: number | undefined; | ||
DnsConfig?: DnsConfig | undefined; | ||
HealthCheckConfig?: HealthCheckConfig | undefined; | ||
HealthCheckCustomConfig?: HealthCheckCustomConfig | undefined; | ||
CreateDate?: Date | undefined; | ||
} | ||
export interface ListServicesResponse { | ||
Services?: ServiceSummary[]; | ||
NextToken?: string; | ||
Services?: ServiceSummary[] | undefined; | ||
NextToken?: string | undefined; | ||
} | ||
@@ -543,3 +543,3 @@ export interface ListTagsForResourceRequest { | ||
export interface ListTagsForResourceResponse { | ||
Tags?: Tag[]; | ||
Tags?: Tag[] | undefined; | ||
} | ||
@@ -549,3 +549,3 @@ export declare class ResourceNotFoundException extends __BaseException { | ||
readonly $fault: "client"; | ||
Message?: string; | ||
Message?: string | undefined; | ||
constructor( | ||
@@ -565,4 +565,4 @@ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException> | ||
export interface PrivateDnsNamespaceChange { | ||
Description?: string; | ||
Properties?: PrivateDnsNamespacePropertiesChange; | ||
Description?: string | undefined; | ||
Properties?: PrivateDnsNamespacePropertiesChange | undefined; | ||
} | ||
@@ -576,4 +576,4 @@ export interface PublicDnsPropertiesMutableChange { | ||
export interface PublicDnsNamespaceChange { | ||
Description?: string; | ||
Properties?: PublicDnsNamespacePropertiesChange; | ||
Description?: string | undefined; | ||
Properties?: PublicDnsNamespacePropertiesChange | undefined; | ||
} | ||
@@ -583,7 +583,7 @@ export interface RegisterInstanceRequest { | ||
InstanceId: string | undefined; | ||
CreatorRequestId?: string; | ||
CreatorRequestId?: string | undefined; | ||
Attributes: Record<string, string> | undefined; | ||
} | ||
export interface RegisterInstanceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
@@ -602,7 +602,7 @@ export interface TagResourceRequest { | ||
Id: string | undefined; | ||
UpdaterRequestId?: string; | ||
UpdaterRequestId?: string | undefined; | ||
Namespace: HttpNamespaceChange | undefined; | ||
} | ||
export interface UpdateHttpNamespaceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
@@ -616,20 +616,20 @@ export interface UpdateInstanceCustomHealthStatusRequest { | ||
Id: string | undefined; | ||
UpdaterRequestId?: string; | ||
UpdaterRequestId?: string | undefined; | ||
Namespace: PrivateDnsNamespaceChange | undefined; | ||
} | ||
export interface UpdatePrivateDnsNamespaceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
export interface UpdatePublicDnsNamespaceRequest { | ||
Id: string | undefined; | ||
UpdaterRequestId?: string; | ||
UpdaterRequestId?: string | undefined; | ||
Namespace: PublicDnsNamespaceChange | undefined; | ||
} | ||
export interface UpdatePublicDnsNamespaceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} | ||
export interface ServiceChange { | ||
Description?: string; | ||
DnsConfig?: DnsConfigChange; | ||
HealthCheckConfig?: HealthCheckConfig; | ||
Description?: string | undefined; | ||
DnsConfig?: DnsConfigChange | undefined; | ||
HealthCheckConfig?: HealthCheckConfig | undefined; | ||
} | ||
@@ -641,3 +641,3 @@ export interface UpdateServiceRequest { | ||
export interface UpdateServiceResponse { | ||
OperationId?: string; | ||
OperationId?: string | undefined; | ||
} |
{ | ||
"name": "@aws-sdk/client-servicediscovery", | ||
"description": "AWS SDK for JavaScript Servicediscovery Client for Node.js, Browser and React Native", | ||
"version": "3.687.0", | ||
"version": "3.691.0", | ||
"scripts": { | ||
@@ -23,10 +23,10 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", | ||
"@aws-crypto/sha256-js": "5.2.0", | ||
"@aws-sdk/client-sso-oidc": "3.687.0", | ||
"@aws-sdk/client-sts": "3.687.0", | ||
"@aws-sdk/core": "3.686.0", | ||
"@aws-sdk/credential-provider-node": "3.687.0", | ||
"@aws-sdk/client-sso-oidc": "3.691.0", | ||
"@aws-sdk/client-sts": "3.691.0", | ||
"@aws-sdk/core": "3.691.0", | ||
"@aws-sdk/credential-provider-node": "3.691.0", | ||
"@aws-sdk/middleware-host-header": "3.686.0", | ||
"@aws-sdk/middleware-logger": "3.686.0", | ||
"@aws-sdk/middleware-recursion-detection": "3.686.0", | ||
"@aws-sdk/middleware-user-agent": "3.687.0", | ||
"@aws-sdk/middleware-user-agent": "3.691.0", | ||
"@aws-sdk/region-config-resolver": "3.686.0", | ||
@@ -36,3 +36,3 @@ "@aws-sdk/types": "3.686.0", | ||
"@aws-sdk/util-user-agent-browser": "3.686.0", | ||
"@aws-sdk/util-user-agent-node": "3.687.0", | ||
"@aws-sdk/util-user-agent-node": "3.691.0", | ||
"@smithy/config-resolver": "^3.0.10", | ||
@@ -39,0 +39,0 @@ "@smithy/core": "^2.5.1", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
683995
+ Added@aws-sdk/client-sso@3.691.0(transitive)
+ Added@aws-sdk/client-sso-oidc@3.691.0(transitive)
+ Added@aws-sdk/client-sts@3.691.0(transitive)
+ Added@aws-sdk/core@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-env@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-http@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-ini@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-node@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-process@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-sso@3.691.0(transitive)
+ Added@aws-sdk/credential-provider-web-identity@3.691.0(transitive)
+ Added@aws-sdk/middleware-user-agent@3.691.0(transitive)
+ Added@aws-sdk/token-providers@3.691.0(transitive)
+ Added@aws-sdk/util-user-agent-node@3.691.0(transitive)
- Removed@aws-sdk/client-sso@3.687.0(transitive)
- Removed@aws-sdk/client-sso-oidc@3.687.0(transitive)
- Removed@aws-sdk/client-sts@3.687.0(transitive)
- Removed@aws-sdk/core@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-env@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-http@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-ini@3.687.0(transitive)
- Removed@aws-sdk/credential-provider-node@3.687.0(transitive)
- Removed@aws-sdk/credential-provider-process@3.686.0(transitive)
- Removed@aws-sdk/credential-provider-sso@3.687.0(transitive)
- Removed@aws-sdk/credential-provider-web-identity@3.686.0(transitive)
- Removed@aws-sdk/middleware-user-agent@3.687.0(transitive)
- Removed@aws-sdk/token-providers@3.686.0(transitive)
- Removed@aws-sdk/util-user-agent-node@3.687.0(transitive)
Updated@aws-sdk/client-sts@3.691.0
Updated@aws-sdk/core@3.691.0