aws-sdk 2.1355.0 → 2.1357.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -1
- package/README.md +1 -1
- package/apis/groundstation-2019-05-23.min.json +58 -48
- package/apis/iot-2015-05-28.min.json +274 -289
- package/clients/groundstation.d.ts +32 -17
- package/clients/iot.d.ts +0 -19
- package/clients/managedblockchain.d.ts +7 -7
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +3 -3
- package/dist/aws-sdk.js +277 -292
- package/dist/aws-sdk.min.js +19 -19
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -101,11 +101,11 @@ declare class GroundStation extends Service { | |
| 101 101 | 
             
               */
         | 
| 102 102 | 
             
              describeEphemeris(callback?: (err: AWSError, data: GroundStation.Types.DescribeEphemerisResponse) => void): Request<GroundStation.Types.DescribeEphemerisResponse, AWSError>;
         | 
| 103 103 | 
             
              /**
         | 
| 104 | 
            -
               * Gets the latest configuration information for a registered agent.
         | 
| 104 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Gets the latest configuration information for a registered agent.
         | 
| 105 105 | 
             
               */
         | 
| 106 106 | 
             
              getAgentConfiguration(params: GroundStation.Types.GetAgentConfigurationRequest, callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
         | 
| 107 107 | 
             
              /**
         | 
| 108 | 
            -
               * Gets the latest configuration information for a registered agent.
         | 
| 108 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Gets the latest configuration information for a registered agent.
         | 
| 109 109 | 
             
               */
         | 
| 110 110 | 
             
              getAgentConfiguration(callback?: (err: AWSError, data: GroundStation.Types.GetAgentConfigurationResponse) => void): Request<GroundStation.Types.GetAgentConfigurationResponse, AWSError>;
         | 
| 111 111 | 
             
              /**
         | 
| @@ -213,11 +213,11 @@ declare class GroundStation extends Service { | |
| 213 213 | 
             
               */
         | 
| 214 214 | 
             
              listTagsForResource(callback?: (err: AWSError, data: GroundStation.Types.ListTagsForResourceResponse) => void): Request<GroundStation.Types.ListTagsForResourceResponse, AWSError>;
         | 
| 215 215 | 
             
              /**
         | 
| 216 | 
            -
               * Registers a new agent with AWS  | 
| 216 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.   Registers a new agent with AWS Ground Station. 
         | 
| 217 217 | 
             
               */
         | 
| 218 218 | 
             
              registerAgent(params: GroundStation.Types.RegisterAgentRequest, callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
         | 
| 219 219 | 
             
              /**
         | 
| 220 | 
            -
               * Registers a new agent with AWS  | 
| 220 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.   Registers a new agent with AWS Ground Station. 
         | 
| 221 221 | 
             
               */
         | 
| 222 222 | 
             
              registerAgent(callback?: (err: AWSError, data: GroundStation.Types.RegisterAgentResponse) => void): Request<GroundStation.Types.RegisterAgentResponse, AWSError>;
         | 
| 223 223 | 
             
              /**
         | 
| @@ -245,11 +245,11 @@ declare class GroundStation extends Service { | |
| 245 245 | 
             
               */
         | 
| 246 246 | 
             
              untagResource(callback?: (err: AWSError, data: GroundStation.Types.UntagResourceResponse) => void): Request<GroundStation.Types.UntagResourceResponse, AWSError>;
         | 
| 247 247 | 
             
              /**
         | 
| 248 | 
            -
               * Update the status of the agent.
         | 
| 248 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Update the status of the agent.
         | 
| 249 249 | 
             
               */
         | 
| 250 250 | 
             
              updateAgentStatus(params: GroundStation.Types.UpdateAgentStatusRequest, callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
         | 
| 251 251 | 
             
              /**
         | 
| 252 | 
            -
               * Update the status of the agent.
         | 
| 252 | 
            +
               *   For use by AWS Ground Station Agent and shouldn't be called directly.  Update the status of the agent.
         | 
| 253 253 | 
             
               */
         | 
| 254 254 | 
             
              updateAgentStatus(callback?: (err: AWSError, data: GroundStation.Types.UpdateAgentStatusResponse) => void): Request<GroundStation.Types.UpdateAgentStatusResponse, AWSError>;
         | 
| 255 255 | 
             
              /**
         | 
| @@ -287,7 +287,12 @@ declare class GroundStation extends Service { | |
| 287 287 | 
             
            }
         | 
| 288 288 | 
             
            declare namespace GroundStation {
         | 
| 289 289 | 
             
              export type AWSRegion = string;
         | 
| 290 | 
            +
              export type AgentCpuCoresList = Integer[];
         | 
| 290 291 | 
             
              export interface AgentDetails {
         | 
| 292 | 
            +
                /**
         | 
| 293 | 
            +
                 * List of CPU cores reserved for the agent.
         | 
| 294 | 
            +
                 */
         | 
| 295 | 
            +
                agentCpuCores?: AgentCpuCoresList;
         | 
| 291 296 | 
             
                /**
         | 
| 292 297 | 
             
                 * Current agent version.
         | 
| 293 298 | 
             
                 */
         | 
| @@ -305,9 +310,9 @@ declare namespace GroundStation { | |
| 305 310 | 
             
                 */
         | 
| 306 311 | 
             
                instanceType: InstanceType;
         | 
| 307 312 | 
             
                /**
         | 
| 308 | 
            -
                 *  | 
| 313 | 
            +
                 *  This field should not be used. Use agentCpuCores instead.  List of CPU cores reserved for processes other than the agent running on the EC2 instance.
         | 
| 309 314 | 
             
                 */
         | 
| 310 | 
            -
                reservedCpuCores | 
| 315 | 
            +
                reservedCpuCores?: AgentCpuCoresList;
         | 
| 311 316 | 
             
              }
         | 
| 312 317 | 
             
              export type AgentStatus = "SUCCESS"|"FAILED"|"ACTIVE"|"INACTIVE"|string;
         | 
| 313 318 | 
             
              export interface AggregateStatus {
         | 
| @@ -396,6 +401,9 @@ declare namespace GroundStation { | |
| 396 401 | 
             
              }
         | 
| 397 402 | 
             
              export type CapabilityArn = string;
         | 
| 398 403 | 
             
              export type CapabilityArnList = CapabilityArn[];
         | 
| 404 | 
            +
              export type CapabilityHealth = "UNHEALTHY"|"HEALTHY"|string;
         | 
| 405 | 
            +
              export type CapabilityHealthReason = "NO_REGISTERED_AGENT"|"INVALID_IP_OWNERSHIP"|"NOT_AUTHORIZED_TO_CREATE_SLR"|"UNVERIFIED_IP_OWNERSHIP"|"INITIALIZING_DATAPLANE"|"DATAPLANE_FAILURE"|"HEALTHY"|string;
         | 
| 406 | 
            +
              export type CapabilityHealthReasonList = CapabilityHealthReason[];
         | 
| 399 407 | 
             
              export interface ComponentStatusData {
         | 
| 400 408 | 
             
                /**
         | 
| 401 409 | 
             
                 * Bytes received by the component.
         | 
| @@ -412,7 +420,7 @@ declare namespace GroundStation { | |
| 412 420 | 
             
                /**
         | 
| 413 421 | 
             
                 * The Component type.
         | 
| 414 422 | 
             
                 */
         | 
| 415 | 
            -
                componentType:  | 
| 423 | 
            +
                componentType: ComponentTypeString;
         | 
| 416 424 | 
             
                /**
         | 
| 417 425 | 
             
                 * Dataflow UUID associated with the component.
         | 
| 418 426 | 
             
                 */
         | 
| @@ -427,12 +435,12 @@ declare namespace GroundStation { | |
| 427 435 | 
             
                status: AgentStatus;
         | 
| 428 436 | 
             
              }
         | 
| 429 437 | 
             
              export type ComponentStatusList = ComponentStatusData[];
         | 
| 430 | 
            -
              export type  | 
| 438 | 
            +
              export type ComponentTypeString = string;
         | 
| 431 439 | 
             
              export interface ComponentVersion {
         | 
| 432 440 | 
             
                /**
         | 
| 433 441 | 
             
                 * Component type.
         | 
| 434 442 | 
             
                 */
         | 
| 435 | 
            -
                componentType:  | 
| 443 | 
            +
                componentType: ComponentTypeString;
         | 
| 436 444 | 
             
                /**
         | 
| 437 445 | 
             
                 * List of versions.
         | 
| 438 446 | 
             
                 */
         | 
| @@ -603,11 +611,11 @@ declare namespace GroundStation { | |
| 603 611 | 
             
              }
         | 
| 604 612 | 
             
              export interface CreateDataflowEndpointGroupRequest {
         | 
| 605 613 | 
             
                /**
         | 
| 606 | 
            -
                 * Amount of time, in seconds, after a contact ends  | 
| 614 | 
            +
                 * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
         | 
| 607 615 | 
             
                 */
         | 
| 608 616 | 
             
                contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 609 617 | 
             
                /**
         | 
| 610 | 
            -
                 * Amount of time, in seconds,  | 
| 618 | 
            +
                 * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
         | 
| 611 619 | 
             
                 */
         | 
| 612 620 | 
             
                contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 613 621 | 
             
                /**
         | 
| @@ -968,6 +976,14 @@ declare namespace GroundStation { | |
| 968 976 | 
             
                 * A dataflow endpoint.
         | 
| 969 977 | 
             
                 */
         | 
| 970 978 | 
             
                endpoint?: DataflowEndpoint;
         | 
| 979 | 
            +
                /**
         | 
| 980 | 
            +
                 * Health reasons for a dataflow endpoint. This field is ignored when calling CreateDataflowEndpointGroup.
         | 
| 981 | 
            +
                 */
         | 
| 982 | 
            +
                healthReasons?: CapabilityHealthReasonList;
         | 
| 983 | 
            +
                /**
         | 
| 984 | 
            +
                 * A dataflow endpoint health status. This field is ignored when calling CreateDataflowEndpointGroup.
         | 
| 985 | 
            +
                 */
         | 
| 986 | 
            +
                healthStatus?: CapabilityHealth;
         | 
| 971 987 | 
             
                /**
         | 
| 972 988 | 
             
                 * Endpoint security details including a list of subnets, a list of security groups and a role to connect streams to instances.
         | 
| 973 989 | 
             
                 */
         | 
| @@ -1134,11 +1150,11 @@ declare namespace GroundStation { | |
| 1134 1150 | 
             
              }
         | 
| 1135 1151 | 
             
              export interface GetDataflowEndpointGroupResponse {
         | 
| 1136 1152 | 
             
                /**
         | 
| 1137 | 
            -
                 * Amount of time, in seconds, after a contact ends  | 
| 1153 | 
            +
                 * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
         | 
| 1138 1154 | 
             
                 */
         | 
| 1139 1155 | 
             
                contactPostPassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 1140 1156 | 
             
                /**
         | 
| 1141 | 
            -
                 * Amount of time, in seconds,  | 
| 1157 | 
            +
                 * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
         | 
| 1142 1158 | 
             
                 */
         | 
| 1143 1159 | 
             
                contactPrePassDurationSeconds?: DataflowEndpointGroupDurationInSeconds;
         | 
| 1144 1160 | 
             
                /**
         | 
| @@ -1584,7 +1600,7 @@ declare namespace GroundStation { | |
| 1584 1600 | 
             
                 */
         | 
| 1585 1601 | 
             
                agentDetails: AgentDetails;
         | 
| 1586 1602 | 
             
                /**
         | 
| 1587 | 
            -
                 * Data for associating  | 
| 1603 | 
            +
                 * Data for associating an agent with the capabilities it is managing.
         | 
| 1588 1604 | 
             
                 */
         | 
| 1589 1605 | 
             
                discoveryData: DiscoveryData;
         | 
| 1590 1606 | 
             
              }
         | 
| @@ -1620,7 +1636,6 @@ declare namespace GroundStation { | |
| 1620 1636 | 
             
                 */
         | 
| 1621 1637 | 
             
                tags?: TagsMap;
         | 
| 1622 1638 | 
             
              }
         | 
| 1623 | 
            -
              export type ReservedCpuCoresList = Integer[];
         | 
| 1624 1639 | 
             
              export type RoleArn = string;
         | 
| 1625 1640 | 
             
              export type S3BucketName = string;
         | 
| 1626 1641 | 
             
              export type S3KeyPrefix = string;
         | 
    
        package/clients/iot.d.ts
    CHANGED
    
    | @@ -3454,10 +3454,6 @@ declare namespace Iot { | |
| 3454 3454 | 
             
                 * Metadata which can be used to manage the domain configuration.  For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..." 
         | 
| 3455 3455 | 
             
                 */
         | 
| 3456 3456 | 
             
                tags?: TagList;
         | 
| 3457 | 
            -
                /**
         | 
| 3458 | 
            -
                 * An object that specifies the TLS configuration for a domain.
         | 
| 3459 | 
            -
                 */
         | 
| 3460 | 
            -
                tlsConfig?: TlsConfig;
         | 
| 3461 3457 | 
             
              }
         | 
| 3462 3458 | 
             
              export interface CreateDomainConfigurationResponse {
         | 
| 3463 3459 | 
             
                /**
         | 
| @@ -4922,10 +4918,6 @@ declare namespace Iot { | |
| 4922 4918 | 
             
                 * The date and time the domain configuration's status was last changed.
         | 
| 4923 4919 | 
             
                 */
         | 
| 4924 4920 | 
             
                lastStatusChangeDate?: DateType;
         | 
| 4925 | 
            -
                /**
         | 
| 4926 | 
            -
                 * An object that specifies the TLS configuration for a domain.
         | 
| 4927 | 
            -
                 */
         | 
| 4928 | 
            -
                tlsConfig?: TlsConfig;
         | 
| 4929 4921 | 
             
              }
         | 
| 4930 4922 | 
             
              export interface DescribeEndpointRequest {
         | 
| 4931 4923 | 
             
                /**
         | 
| @@ -9656,7 +9648,6 @@ declare namespace Iot { | |
| 9656 9648 | 
             
              export type Seconds = number;
         | 
| 9657 9649 | 
             
              export type SecurityGroupId = string;
         | 
| 9658 9650 | 
             
              export type SecurityGroupList = SecurityGroupId[];
         | 
| 9659 | 
            -
              export type SecurityPolicy = string;
         | 
| 9660 9651 | 
             
              export type SecurityProfileArn = string;
         | 
| 9661 9652 | 
             
              export type SecurityProfileDescription = string;
         | 
| 9662 9653 | 
             
              export interface SecurityProfileIdentifier {
         | 
| @@ -10566,12 +10557,6 @@ declare namespace Iot { | |
| 10566 10557 | 
             
              export type TimestreamTimestampUnit = string;
         | 
| 10567 10558 | 
             
              export type TimestreamTimestampValue = string;
         | 
| 10568 10559 | 
             
              export type TinyMaxResults = number;
         | 
| 10569 | 
            -
              export interface TlsConfig {
         | 
| 10570 | 
            -
                /**
         | 
| 10571 | 
            -
                 * The security policy for a domain configuration. For more information, see Security policies  in the Amazon Web Services IoT Core developer guide.
         | 
| 10572 | 
            -
                 */
         | 
| 10573 | 
            -
                securityPolicy?: SecurityPolicy;
         | 
| 10574 | 
            -
              }
         | 
| 10575 10560 | 
             
              export interface TlsContext {
         | 
| 10576 10561 | 
             
                /**
         | 
| 10577 10562 | 
             
                 * The value of the serverName key in a TLS authorization request.
         | 
| @@ -11022,10 +11007,6 @@ declare namespace Iot { | |
| 11022 11007 | 
             
                 * Removes the authorization configuration from a domain.
         | 
| 11023 11008 | 
             
                 */
         | 
| 11024 11009 | 
             
                removeAuthorizerConfig?: RemoveAuthorizerConfig;
         | 
| 11025 | 
            -
                /**
         | 
| 11026 | 
            -
                 * An object that specifies the TLS configuration for a domain.
         | 
| 11027 | 
            -
                 */
         | 
| 11028 | 
            -
                tlsConfig?: TlsConfig;
         | 
| 11029 11010 | 
             
              }
         | 
| 11030 11011 | 
             
              export interface UpdateDomainConfigurationResponse {
         | 
| 11031 11012 | 
             
                /**
         | 
| @@ -235,7 +235,7 @@ declare namespace ManagedBlockchain { | |
| 235 235 | 
             
                 */
         | 
| 236 236 | 
             
                Id?: ResourceIdString;
         | 
| 237 237 | 
             
                /**
         | 
| 238 | 
            -
                 * The type of the accessor.  Currently accessor type is restricted to BILLING_TOKEN. 
         | 
| 238 | 
            +
                 * The type of the accessor.  Currently, accessor type is restricted to BILLING_TOKEN. 
         | 
| 239 239 | 
             
                 */
         | 
| 240 240 | 
             
                Type?: AccessorType;
         | 
| 241 241 | 
             
                /**
         | 
| @@ -309,7 +309,7 @@ declare namespace ManagedBlockchain { | |
| 309 309 | 
             
                 */
         | 
| 310 310 | 
             
                ClientRequestToken: ClientRequestTokenString;
         | 
| 311 311 | 
             
                /**
         | 
| 312 | 
            -
                 * The type of accessor.  Currently accessor type is restricted to BILLING_TOKEN. 
         | 
| 312 | 
            +
                 * The type of accessor.  Currently, accessor type is restricted to BILLING_TOKEN. 
         | 
| 313 313 | 
             
                 */
         | 
| 314 314 | 
             
                AccessorType: AccessorType;
         | 
| 315 315 | 
             
                /**
         | 
| @@ -405,7 +405,7 @@ declare namespace ManagedBlockchain { | |
| 405 405 | 
             
                 */
         | 
| 406 406 | 
             
                ClientRequestToken: ClientRequestTokenString;
         | 
| 407 407 | 
             
                /**
         | 
| 408 | 
            -
                 * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby | 
| 408 | 
            +
                 * The unique identifier of the network for the node. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby   
         | 
| 409 409 | 
             
                 */
         | 
| 410 410 | 
             
                NetworkId: ResourceIdString;
         | 
| 411 411 | 
             
                /**
         | 
| @@ -481,7 +481,7 @@ declare namespace ManagedBlockchain { | |
| 481 481 | 
             
              }
         | 
| 482 482 | 
             
              export interface DeleteNodeInput {
         | 
| 483 483 | 
             
                /**
         | 
| 484 | 
            -
                 * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby | 
| 484 | 
            +
                 * The unique identifier of the network that the node is on. Ethereum public networks have the following NetworkIds:    n-ethereum-mainnet     n-ethereum-goerli     n-ethereum-rinkeby   
         | 
| 485 485 | 
             
                 */
         | 
| 486 486 | 
             
                NetworkId: ResourceIdString;
         | 
| 487 487 | 
             
                /**
         | 
| @@ -915,7 +915,7 @@ declare namespace ManagedBlockchain { | |
| 915 915 | 
             
                 */
         | 
| 916 916 | 
             
                AdminUsername: UsernameString;
         | 
| 917 917 | 
             
                /**
         | 
| 918 | 
            -
                 * The password for the member's initial administrative user. The AdminPassword must be at least  | 
| 918 | 
            +
                 * The password for the member's initial administrative user. The AdminPassword must be at least 8 characters long and no more than 32 characters. It must contain at least one uppercase letter, one lowercase letter, and one digit. It cannot have a single quotation mark (‘), a double quotation marks (“), a forward slash(/), a backward slash(\), @, or a space.
         | 
| 919 919 | 
             
                 */
         | 
| 920 920 | 
             
                AdminPassword: PasswordString;
         | 
| 921 921 | 
             
              }
         | 
| @@ -1007,7 +1007,7 @@ declare namespace ManagedBlockchain { | |
| 1007 1007 | 
             
                 */
         | 
| 1008 1008 | 
             
                VpcEndpointServiceName?: String;
         | 
| 1009 1009 | 
             
                /**
         | 
| 1010 | 
            -
                 * The voting rules  | 
| 1010 | 
            +
                 * The voting rules that the network uses to decide if a proposal is accepted.
         | 
| 1011 1011 | 
             
                 */
         | 
| 1012 1012 | 
             
                VotingPolicy?: VotingPolicy;
         | 
| 1013 1013 | 
             
                /**
         | 
| @@ -1029,7 +1029,7 @@ declare namespace ManagedBlockchain { | |
| 1029 1029 | 
             
              }
         | 
| 1030 1030 | 
             
              export interface NetworkEthereumAttributes {
         | 
| 1031 1031 | 
             
                /**
         | 
| 1032 | 
            -
                 * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows:   mainnet = 1    goerli = 5    rinkeby = 4 | 
| 1032 | 
            +
                 * The Ethereum CHAIN_ID associated with the Ethereum network. Chain IDs are as follows:   mainnet = 1    goerli = 5    rinkeby = 4   
         | 
| 1033 1033 | 
             
                 */
         | 
| 1034 1034 | 
             
                ChainId?: String;
         | 
| 1035 1035 | 
             
              }
         |