@alicloud/gpdb20160503 2.5.3 → 2.5.4

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/client.d.ts CHANGED
@@ -29636,7 +29636,7 @@ export declare class ModifyStreamingJobRequest extends $dara.Model {
29636
29636
  account?: string;
29637
29637
  /**
29638
29638
  * @remarks
29639
- * Delivery guarantee.
29639
+ * The delivery guarantee setting.
29640
29640
  *
29641
29641
  * @example
29642
29642
  * ATLEAST / EXACTLY
@@ -29691,9 +29691,13 @@ export declare class ModifyStreamingJobRequest extends $dara.Model {
29691
29691
  errorLimitCount?: number;
29692
29692
  /**
29693
29693
  * @remarks
29694
- * FallbackOffset rollback position, offset rollback
29694
+ * The fallback offset for data consumption.
29695
29695
  *
29696
- * - The FallbackOffset parameter defines the behavior when the consumer does not request a specific consumption point or the requested consumption point exceeds the current Kafka cluster\\"s recorded points. You can choose to start consuming from the earliest (newest) or latest (oldest) point.
29696
+ * * This parameter specifies the starting offset from which data consumption resumes when a consumer does not request a consumption offset or requests a consumption offset that is beyond the range of the offset information recorded in the current Kafka cluster. You can choose to start data consumption from the earliest or latest offset.
29697
+ *
29698
+ * Valid values:
29699
+ * * EARLIEST
29700
+ * * LATEST
29697
29701
  *
29698
29702
  * @example
29699
29703
  * EARLIEST / LATEST
@@ -29882,10 +29886,10 @@ export declare class ModifyStreamingJobRequest extends $dara.Model {
29882
29886
  srcColumns?: string[];
29883
29887
  /**
29884
29888
  * @remarks
29885
- * Whether to test the real-time task, values:
29889
+ * Specifies whether to test the real-time job. Valid values:
29886
29890
  *
29887
- * - true
29888
- * - false
29891
+ * * true
29892
+ * * false
29889
29893
  *
29890
29894
  * Default value: false.
29891
29895
  *
@@ -29900,7 +29904,13 @@ export declare class ModifyStreamingJobRequest extends $dara.Model {
29900
29904
  updateColumns?: string[];
29901
29905
  /**
29902
29906
  * @remarks
29903
- * Write mode.
29907
+ * The write mode.
29908
+ *
29909
+ * Valid values:
29910
+ *
29911
+ * * MERGE
29912
+ * * INSERT
29913
+ * * UPDATE
29904
29914
  *
29905
29915
  * @example
29906
29916
  * INSERT/UPDATE/MERGE
@@ -29928,7 +29938,7 @@ export declare class ModifyStreamingJobShrinkRequest extends $dara.Model {
29928
29938
  account?: string;
29929
29939
  /**
29930
29940
  * @remarks
29931
- * Delivery guarantee.
29941
+ * The delivery guarantee setting.
29932
29942
  *
29933
29943
  * @example
29934
29944
  * ATLEAST / EXACTLY
@@ -29983,9 +29993,13 @@ export declare class ModifyStreamingJobShrinkRequest extends $dara.Model {
29983
29993
  errorLimitCount?: number;
29984
29994
  /**
29985
29995
  * @remarks
29986
- * FallbackOffset rollback position, offset rollback
29996
+ * The fallback offset for data consumption.
29987
29997
  *
29988
- * - The FallbackOffset parameter defines the behavior when the consumer does not request a specific consumption point or the requested consumption point exceeds the current Kafka cluster\\"s recorded points. You can choose to start consuming from the earliest (newest) or latest (oldest) point.
29998
+ * * This parameter specifies the starting offset from which data consumption resumes when a consumer does not request a consumption offset or requests a consumption offset that is beyond the range of the offset information recorded in the current Kafka cluster. You can choose to start data consumption from the earliest or latest offset.
29999
+ *
30000
+ * Valid values:
30001
+ * * EARLIEST
30002
+ * * LATEST
29989
30003
  *
29990
30004
  * @example
29991
30005
  * EARLIEST / LATEST
@@ -30174,10 +30188,10 @@ export declare class ModifyStreamingJobShrinkRequest extends $dara.Model {
30174
30188
  srcColumnsShrink?: string;
30175
30189
  /**
30176
30190
  * @remarks
30177
- * Whether to test the real-time task, values:
30191
+ * Specifies whether to test the real-time job. Valid values:
30178
30192
  *
30179
- * - true
30180
- * - false
30193
+ * * true
30194
+ * * false
30181
30195
  *
30182
30196
  * Default value: false.
30183
30197
  *
@@ -30192,7 +30206,13 @@ export declare class ModifyStreamingJobShrinkRequest extends $dara.Model {
30192
30206
  updateColumnsShrink?: string;
30193
30207
  /**
30194
30208
  * @remarks
30195
- * Write mode.
30209
+ * The write mode.
30210
+ *
30211
+ * Valid values:
30212
+ *
30213
+ * * MERGE
30214
+ * * INSERT
30215
+ * * UPDATE
30196
30216
  *
30197
30217
  * @example
30198
30218
  * INSERT/UPDATE/MERGE
@@ -30535,16 +30555,6 @@ export declare class QueryCollectionDataRequest extends $dara.Model {
30535
30555
  * gp-xxxxxxxxx
30536
30556
  */
30537
30557
  DBInstanceId?: string;
30538
- /**
30539
- * @remarks
30540
- * Filter conditions for the data to be queried, in SQL WHERE format. It is an expression that returns a boolean value (true or false). Conditions can be simple comparison operators such as equal (=), not equal (<> or !=), greater than (>), less than (<), greater than or equal to (>=), less than or equal to (<=), or more complex expressions combined with logical operators (AND, OR, NOT), as well as conditions using keywords like IN, BETWEEN, and LIKE.
30541
- *
30542
- * >
30543
- * > - For detailed syntax, refer to: https://www.postgresqltutorial.com/postgresql-tutorial/postgresql-where/
30544
- *
30545
- * @example
30546
- * response > 200
30547
- */
30548
30558
  filter?: string;
30549
30559
  /**
30550
30560
  * @remarks
@@ -30753,16 +30763,6 @@ export declare class QueryCollectionDataShrinkRequest extends $dara.Model {
30753
30763
  * gp-xxxxxxxxx
30754
30764
  */
30755
30765
  DBInstanceId?: string;
30756
- /**
30757
- * @remarks
30758
- * Filter conditions for the data to be queried, in SQL WHERE format. It is an expression that returns a boolean value (true or false). Conditions can be simple comparison operators such as equal (=), not equal (<> or !=), greater than (>), less than (<), greater than or equal to (>=), less than or equal to (<=), or more complex expressions combined with logical operators (AND, OR, NOT), as well as conditions using keywords like IN, BETWEEN, and LIKE.
30759
- *
30760
- * >
30761
- * > - For detailed syntax, refer to: https://www.postgresqltutorial.com/postgresql-tutorial/postgresql-where/
30762
- *
30763
- * @example
30764
- * response > 200
30765
- */
30766
30766
  filter?: string;
30767
30767
  /**
30768
30768
  * @remarks