cdk-docker-image-deployment 0.0.165 → 0.0.167

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.
Files changed (28) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +12 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/elasticmapreduce-2009-03-31.min.json +147 -111
  8. package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.min.json +186 -61
  9. package/node_modules/aws-sdk/apis/frauddetector-2019-11-15.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +329 -311
  11. package/node_modules/aws-sdk/apis/grafana-2020-08-18.min.json +70 -41
  12. package/node_modules/aws-sdk/apis/privatenetworks-2021-12-03.min.json +49 -8
  13. package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +234 -111
  14. package/node_modules/aws-sdk/clients/efs.d.ts +4 -4
  15. package/node_modules/aws-sdk/clients/emr.d.ts +39 -5
  16. package/node_modules/aws-sdk/clients/frauddetector.d.ts +179 -0
  17. package/node_modules/aws-sdk/clients/glue.d.ts +28 -0
  18. package/node_modules/aws-sdk/clients/grafana.d.ts +34 -4
  19. package/node_modules/aws-sdk/clients/privatenetworks.d.ts +59 -3
  20. package/node_modules/aws-sdk/clients/rds.d.ts +81 -81
  21. package/node_modules/aws-sdk/clients/wafv2.d.ts +119 -7
  22. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  23. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
  24. package/node_modules/aws-sdk/dist/aws-sdk.js +150 -114
  25. package/node_modules/aws-sdk/dist/aws-sdk.min.js +55 -55
  26. package/node_modules/aws-sdk/lib/core.js +1 -1
  27. package/node_modules/aws-sdk/package.json +1 -1
  28. package/package.json +4 -4
@@ -124,11 +124,11 @@ declare class PrivateNetworks extends Service {
124
124
  */
125
125
  getOrder(callback?: (err: AWSError, data: PrivateNetworks.Types.GetOrderResponse) => void): Request<PrivateNetworks.Types.GetOrderResponse, AWSError>;
126
126
  /**
127
- * Lists device identifiers. Add filters to your request to return a more specific list of results. Use filters to match the Amazon Resource Name (ARN) of an order, the status of device identifiers, or the ARN of the traffic group. &lt;p&gt;If you specify multiple filters, filters are joined with an OR, and the request returns results that match all of the specified filters.
127
+ * Lists device identifiers. Add filters to your request to return a more specific list of results. Use filters to match the Amazon Resource Name (ARN) of an order, the status of device identifiers, or the ARN of the traffic group. If you specify multiple filters, filters are joined with an OR, and the request returns results that match all of the specified filters.
128
128
  */
129
129
  listDeviceIdentifiers(params: PrivateNetworks.Types.ListDeviceIdentifiersRequest, callback?: (err: AWSError, data: PrivateNetworks.Types.ListDeviceIdentifiersResponse) => void): Request<PrivateNetworks.Types.ListDeviceIdentifiersResponse, AWSError>;
130
130
  /**
131
- * Lists device identifiers. Add filters to your request to return a more specific list of results. Use filters to match the Amazon Resource Name (ARN) of an order, the status of device identifiers, or the ARN of the traffic group. &lt;p&gt;If you specify multiple filters, filters are joined with an OR, and the request returns results that match all of the specified filters.
131
+ * Lists device identifiers. Add filters to your request to return a more specific list of results. Use filters to match the Amazon Resource Name (ARN) of an order, the status of device identifiers, or the ARN of the traffic group. If you specify multiple filters, filters are joined with an OR, and the request returns results that match all of the specified filters.
132
132
  */
133
133
  listDeviceIdentifiers(callback?: (err: AWSError, data: PrivateNetworks.Types.ListDeviceIdentifiersResponse) => void): Request<PrivateNetworks.Types.ListDeviceIdentifiersResponse, AWSError>;
134
134
  /**
@@ -175,6 +175,14 @@ declare class PrivateNetworks extends Service {
175
175
  * Checks the health of the service.
176
176
  */
177
177
  ping(callback?: (err: AWSError, data: PrivateNetworks.Types.PingResponse) => void): Request<PrivateNetworks.Types.PingResponse, AWSError>;
178
+ /**
179
+ * Starts an update of the specified network resource. After you submit a request to replace or return a network resource, the status of the network resource is CREATING_SHIPPING_LABEL. The shipping label is available when the status of the network resource is PENDING_RETURN. After the network resource is successfully returned, its status is DELETED. For more information, see Return a radio unit.
180
+ */
181
+ startNetworkResourceUpdate(params: PrivateNetworks.Types.StartNetworkResourceUpdateRequest, callback?: (err: AWSError, data: PrivateNetworks.Types.StartNetworkResourceUpdateResponse) => void): Request<PrivateNetworks.Types.StartNetworkResourceUpdateResponse, AWSError>;
182
+ /**
183
+ * Starts an update of the specified network resource. After you submit a request to replace or return a network resource, the status of the network resource is CREATING_SHIPPING_LABEL. The shipping label is available when the status of the network resource is PENDING_RETURN. After the network resource is successfully returned, its status is DELETED. For more information, see Return a radio unit.
184
+ */
185
+ startNetworkResourceUpdate(callback?: (err: AWSError, data: PrivateNetworks.Types.StartNetworkResourceUpdateResponse) => void): Request<PrivateNetworks.Types.StartNetworkResourceUpdateResponse, AWSError>;
178
186
  /**
179
187
  * Adds tags to the specified resource.
180
188
  */
@@ -828,6 +836,10 @@ declare namespace PrivateNetworks {
828
836
  * The position of the network resource.
829
837
  */
830
838
  position?: Position;
839
+ /**
840
+ * Information about a request to return the network resource.
841
+ */
842
+ returnInformation?: ReturnInformation;
831
843
  /**
832
844
  * The serial number of the network resource.
833
845
  */
@@ -870,7 +882,7 @@ declare namespace PrivateNetworks {
870
882
  export type NetworkResourceFilterValues = String[];
871
883
  export type NetworkResourceFilters = {[key: string]: NetworkResourceFilterValues};
872
884
  export type NetworkResourceList = NetworkResource[];
873
- export type NetworkResourceStatus = "PENDING"|"SHIPPED"|"PROVISIONING"|"PROVISIONED"|"AVAILABLE"|"DELETING"|"PENDING_RETURN"|"DELETED"|string;
885
+ export type NetworkResourceStatus = "PENDING"|"SHIPPED"|"PROVISIONING"|"PROVISIONED"|"AVAILABLE"|"DELETING"|"PENDING_RETURN"|"DELETED"|"CREATING_SHIPPING_LABEL"|string;
874
886
  export type NetworkResourceType = "RADIO_UNIT"|string;
875
887
  export interface NetworkSite {
876
888
  /**
@@ -988,6 +1000,24 @@ declare namespace PrivateNetworks {
988
1000
  */
989
1001
  longitude?: Double;
990
1002
  }
1003
+ export interface ReturnInformation {
1004
+ /**
1005
+ * The Amazon Resource Name (ARN) of the replacement order.
1006
+ */
1007
+ replacementOrderArn?: Arn;
1008
+ /**
1009
+ * The reason for the return. If the return request did not include a reason for the return, this value is null.
1010
+ */
1011
+ returnReason?: String;
1012
+ /**
1013
+ * The shipping address.
1014
+ */
1015
+ shippingAddress?: Address;
1016
+ /**
1017
+ * The URL of the shipping label. The shipping label is available for download only if the status of the network resource is PENDING_RETURN. For more information, see Return a radio unit.
1018
+ */
1019
+ shippingLabel?: String;
1020
+ }
991
1021
  export interface SitePlan {
992
1022
  /**
993
1023
  * The options of the plan.
@@ -998,6 +1028,31 @@ declare namespace PrivateNetworks {
998
1028
  */
999
1029
  resourceDefinitions?: NetworkResourceDefinitions;
1000
1030
  }
1031
+ export interface StartNetworkResourceUpdateRequest {
1032
+ /**
1033
+ * The Amazon Resource Name (ARN) of the network resource.
1034
+ */
1035
+ networkResourceArn: Arn;
1036
+ /**
1037
+ * The reason for the return. Providing a reason for a return is optional.
1038
+ */
1039
+ returnReason?: StartNetworkResourceUpdateRequestReturnReasonString;
1040
+ /**
1041
+ * The shipping address. If you don't provide a shipping address when replacing or returning a network resource, we use the address from the original order for the network resource.
1042
+ */
1043
+ shippingAddress?: Address;
1044
+ /**
1045
+ * The update type. REPLACE - Submits a request to replace a defective radio unit. We provide a shipping label that you can use for the return process and we ship a replacement radio unit to you. RETURN - Submits a request to replace a radio unit that you no longer need. We provide a shipping label that you can use for the return process.
1046
+ */
1047
+ updateType: UpdateType;
1048
+ }
1049
+ export type StartNetworkResourceUpdateRequestReturnReasonString = string;
1050
+ export interface StartNetworkResourceUpdateResponse {
1051
+ /**
1052
+ * The network resource.
1053
+ */
1054
+ networkResource?: NetworkResource;
1055
+ }
1001
1056
  export type String = string;
1002
1057
  export type TagKey = string;
1003
1058
  export type TagKeyList = TagKey[];
@@ -1073,6 +1128,7 @@ declare namespace PrivateNetworks {
1073
1128
  */
1074
1129
  tags?: TagMap;
1075
1130
  }
1131
+ export type UpdateType = "REPLACE"|"RETURN"|string;
1076
1132
  /**
1077
1133
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
1078
1134
  */