@aws-sdk/client-codecatalyst 3.540.0 → 3.544.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/dist-cjs/index.js
CHANGED
|
@@ -1283,6 +1283,8 @@ var de_GetSubscriptionCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
1283
1283
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1284
1284
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1285
1285
|
awsAccountName: import_smithy_client.expectString,
|
|
1286
|
+
pendingSubscriptionStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
1287
|
+
pendingSubscriptionType: import_smithy_client.expectString,
|
|
1286
1288
|
subscriptionType: import_smithy_client.expectString
|
|
1287
1289
|
});
|
|
1288
1290
|
Object.assign(contents, doc);
|
|
@@ -797,6 +797,8 @@ export const de_GetSubscriptionCommand = async (output, context) => {
|
|
|
797
797
|
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
798
798
|
const doc = take(data, {
|
|
799
799
|
awsAccountName: __expectString,
|
|
800
|
+
pendingSubscriptionStartTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
801
|
+
pendingSubscriptionType: __expectString,
|
|
800
802
|
subscriptionType: __expectString,
|
|
801
803
|
});
|
|
802
804
|
Object.assign(contents, doc);
|
|
@@ -42,6 +42,8 @@ declare const GetSubscriptionCommand_base: {
|
|
|
42
42
|
* // { // GetSubscriptionResponse
|
|
43
43
|
* // subscriptionType: "STRING_VALUE",
|
|
44
44
|
* // awsAccountName: "STRING_VALUE",
|
|
45
|
+
* // pendingSubscriptionType: "STRING_VALUE",
|
|
46
|
+
* // pendingSubscriptionStartTime: new Date("TIMESTAMP"),
|
|
45
47
|
* // };
|
|
46
48
|
*
|
|
47
49
|
* ```
|
|
@@ -981,7 +981,7 @@ export interface CreateDevEnvironmentRequest {
|
|
|
981
981
|
*/
|
|
982
982
|
persistentStorage: PersistentStorageConfiguration | undefined;
|
|
983
983
|
/**
|
|
984
|
-
* <p>The name of the connection to
|
|
984
|
+
* <p>The name of the connection that will be used to connect to Amazon VPC, if any.</p>
|
|
985
985
|
* @public
|
|
986
986
|
*/
|
|
987
987
|
vpcConnectionName?: string;
|
|
@@ -2671,6 +2671,18 @@ export interface GetSubscriptionResponse {
|
|
|
2671
2671
|
* @public
|
|
2672
2672
|
*/
|
|
2673
2673
|
awsAccountName?: string;
|
|
2674
|
+
/**
|
|
2675
|
+
* <p>The type of the billing plan that the space will be changed to at the start of the next billing cycle. This applies
|
|
2676
|
+
* only to changes that reduce the functionality available for the space. Billing plan changes that increase functionality
|
|
2677
|
+
* are applied immediately. For more information, see <a href="https://codecatalyst.aws/explore/pricing">Pricing</a>.</p>
|
|
2678
|
+
* @public
|
|
2679
|
+
*/
|
|
2680
|
+
pendingSubscriptionType?: string;
|
|
2681
|
+
/**
|
|
2682
|
+
* <p>The day and time the pending change will be applied to the space, in coordinated universal time (UTC) timestamp format as specified in <a href="https://www.rfc-editor.org/rfc/rfc3339#section-5.6">RFC 3339</a>.</p>
|
|
2683
|
+
* @public
|
|
2684
|
+
*/
|
|
2685
|
+
pendingSubscriptionStartTime?: Date;
|
|
2674
2686
|
}
|
|
2675
2687
|
/**
|
|
2676
2688
|
* @public
|
|
@@ -693,6 +693,8 @@ export interface GetSubscriptionRequest {
|
|
|
693
693
|
export interface GetSubscriptionResponse {
|
|
694
694
|
subscriptionType?: string;
|
|
695
695
|
awsAccountName?: string;
|
|
696
|
+
pendingSubscriptionType?: string;
|
|
697
|
+
pendingSubscriptionStartTime?: Date;
|
|
696
698
|
}
|
|
697
699
|
export interface UpdateSpaceRequest {
|
|
698
700
|
name: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecatalyst",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.544.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codecatalyst",
|