@azure/arm-datafactory 14.0.0 → 14.1.0-alpha.20240315.1

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.
@@ -53,6 +53,7 @@ export type LinkedServiceUnion =
53
53
  | AzureMySqlLinkedService
54
54
  | MySqlLinkedService
55
55
  | PostgreSqlLinkedService
56
+ | PostgreSqlV2LinkedService
56
57
  | SybaseLinkedService
57
58
  | Db2LinkedService
58
59
  | TeradataLinkedService
@@ -104,6 +105,7 @@ export type LinkedServiceUnion =
104
105
  | DrillLinkedService
105
106
  | EloquaLinkedService
106
107
  | GoogleBigQueryLinkedService
108
+ | GoogleBigQueryV2LinkedService
107
109
  | GreenplumLinkedService
108
110
  | HBaseLinkedService
109
111
  | HiveLinkedService
@@ -145,7 +147,8 @@ export type LinkedServiceUnion =
145
147
  | LakeHouseLinkedService
146
148
  | SalesforceV2LinkedService
147
149
  | SalesforceServiceCloudV2LinkedService
148
- | WarehouseLinkedService;
150
+ | WarehouseLinkedService
151
+ | ServiceNowV2LinkedService;
149
152
  export type DatasetUnion =
150
153
  | Dataset
151
154
  | AmazonS3Dataset
@@ -189,6 +192,7 @@ export type DatasetUnion =
189
192
  | OdbcTableDataset
190
193
  | MySqlTableDataset
191
194
  | PostgreSqlTableDataset
195
+ | PostgreSqlV2TableDataset
192
196
  | MicrosoftAccessTableDataset
193
197
  | SalesforceObjectDataset
194
198
  | SalesforceServiceCloudObjectDataset
@@ -213,6 +217,7 @@ export type DatasetUnion =
213
217
  | DrillTableDataset
214
218
  | EloquaObjectDataset
215
219
  | GoogleBigQueryObjectDataset
220
+ | GoogleBigQueryV2ObjectDataset
216
221
  | GreenplumTableDataset
217
222
  | HBaseObjectDataset
218
223
  | HiveObjectDataset
@@ -248,7 +253,8 @@ export type DatasetUnion =
248
253
  | LakeHouseTableDataset
249
254
  | SalesforceV2ObjectDataset
250
255
  | SalesforceServiceCloudV2ObjectDataset
251
- | WarehouseTableDataset;
256
+ | WarehouseTableDataset
257
+ | ServiceNowV2ObjectDataset;
252
258
  export type ActivityUnion =
253
259
  | Activity
254
260
  | ControlActivityUnion
@@ -512,6 +518,7 @@ export type TabularSourceUnion =
512
518
  | OdbcSource
513
519
  | MySqlSource
514
520
  | PostgreSqlSource
521
+ | PostgreSqlV2Source
515
522
  | SybaseSource
516
523
  | SapBwSource
517
524
  | SalesforceSource
@@ -537,6 +544,7 @@ export type TabularSourceUnion =
537
544
  | DrillSource
538
545
  | EloquaSource
539
546
  | GoogleBigQuerySource
547
+ | GoogleBigQueryV2Source
540
548
  | GreenplumSource
541
549
  | HBaseSource
542
550
  | HiveSource
@@ -566,7 +574,8 @@ export type TabularSourceUnion =
566
574
  | GoogleAdWordsSource
567
575
  | AmazonRedshiftSource
568
576
  | WarehouseSource
569
- | SalesforceV2Source;
577
+ | SalesforceV2Source
578
+ | ServiceNowV2Source;
570
579
  export type TriggerDependencyReferenceUnion =
571
580
  | TriggerDependencyReference
572
581
  | TumblingWindowTriggerDependencyReference;
@@ -1296,6 +1305,7 @@ export interface LinkedService {
1296
1305
  | "AzureMySql"
1297
1306
  | "MySql"
1298
1307
  | "PostgreSql"
1308
+ | "PostgreSqlV2"
1299
1309
  | "Sybase"
1300
1310
  | "Db2"
1301
1311
  | "Teradata"
@@ -1347,6 +1357,7 @@ export interface LinkedService {
1347
1357
  | "Drill"
1348
1358
  | "Eloqua"
1349
1359
  | "GoogleBigQuery"
1360
+ | "GoogleBigQueryV2"
1350
1361
  | "Greenplum"
1351
1362
  | "HBase"
1352
1363
  | "Hive"
@@ -1388,7 +1399,8 @@ export interface LinkedService {
1388
1399
  | "LakeHouse"
1389
1400
  | "SalesforceV2"
1390
1401
  | "SalesforceServiceCloudV2"
1391
- | "Warehouse";
1402
+ | "Warehouse"
1403
+ | "ServiceNowV2";
1392
1404
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
1393
1405
  [property: string]: any;
1394
1406
  /** The integration runtime reference. */
@@ -1472,6 +1484,7 @@ export interface Dataset {
1472
1484
  | "OdbcTable"
1473
1485
  | "MySqlTable"
1474
1486
  | "PostgreSqlTable"
1487
+ | "PostgreSqlV2Table"
1475
1488
  | "MicrosoftAccessTable"
1476
1489
  | "SalesforceObject"
1477
1490
  | "SalesforceServiceCloudObject"
@@ -1496,6 +1509,7 @@ export interface Dataset {
1496
1509
  | "DrillTable"
1497
1510
  | "EloquaObject"
1498
1511
  | "GoogleBigQueryObject"
1512
+ | "GoogleBigQueryV2Object"
1499
1513
  | "GreenplumTable"
1500
1514
  | "HBaseObject"
1501
1515
  | "HiveObject"
@@ -1531,7 +1545,8 @@ export interface Dataset {
1531
1545
  | "LakeHouseTable"
1532
1546
  | "SalesforceV2Object"
1533
1547
  | "SalesforceServiceCloudV2Object"
1534
- | "WarehouseTable";
1548
+ | "WarehouseTable"
1549
+ | "ServiceNowV2Object";
1535
1550
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
1536
1551
  [property: string]: any;
1537
1552
  /** Dataset description. */
@@ -3217,6 +3232,7 @@ export interface CopySource {
3217
3232
  | "OdbcSource"
3218
3233
  | "MySqlSource"
3219
3234
  | "PostgreSqlSource"
3235
+ | "PostgreSqlV2Source"
3220
3236
  | "SybaseSource"
3221
3237
  | "SapBwSource"
3222
3238
  | "ODataSource"
@@ -3259,6 +3275,7 @@ export interface CopySource {
3259
3275
  | "DrillSource"
3260
3276
  | "EloquaSource"
3261
3277
  | "GoogleBigQuerySource"
3278
+ | "GoogleBigQueryV2Source"
3262
3279
  | "GreenplumSource"
3263
3280
  | "HBaseSource"
3264
3281
  | "HiveSource"
@@ -3294,7 +3311,8 @@ export interface CopySource {
3294
3311
  | "WarehouseSource"
3295
3312
  | "SharePointOnlineListSource"
3296
3313
  | "SalesforceV2Source"
3297
- | "SalesforceServiceCloudV2Source";
3314
+ | "SalesforceServiceCloudV2Source"
3315
+ | "ServiceNowV2Source";
3298
3316
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
3299
3317
  [property: string]: any;
3300
3318
  /** Source retry count. Type: integer (or Expression with resultType integer). */
@@ -3893,6 +3911,18 @@ export interface SynapseSparkJobReference {
3893
3911
  referenceName: any;
3894
3912
  }
3895
3913
 
3914
+ /** Nested representation of a complex expression. */
3915
+ export interface ExpressionV2 {
3916
+ /** Type of expressions supported by the system. Type: string. */
3917
+ type?: ExpressionV2Type;
3918
+ /** Value for Constant/Field Type: string. */
3919
+ value?: string;
3920
+ /** Expression operator value Type: string. */
3921
+ operator?: string;
3922
+ /** List of nested expressions. */
3923
+ operands?: ExpressionV2[];
3924
+ }
3925
+
3896
3926
  /** The workflow trigger recurrence. */
3897
3927
  export interface ScheduleTriggerRecurrence {
3898
3928
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
@@ -4826,6 +4856,50 @@ export interface PostgreSqlLinkedService extends LinkedService {
4826
4856
  encryptedCredential?: string;
4827
4857
  }
4828
4858
 
4859
+ /** Linked service for PostgreSQLV2 data source. */
4860
+ export interface PostgreSqlV2LinkedService extends LinkedService {
4861
+ /** Polymorphic discriminator, which specifies the different types this object can be */
4862
+ type: "PostgreSqlV2";
4863
+ /** Server name for connection. Type: string. */
4864
+ server: any;
4865
+ /** The port for the connection. Type: integer. */
4866
+ port?: any;
4867
+ /** Username for authentication. Type: string. */
4868
+ username: any;
4869
+ /** Database name for connection. Type: string. */
4870
+ database: any;
4871
+ /** SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer. */
4872
+ sslMode: any;
4873
+ /** Sets the schema search path. Type: string. */
4874
+ schema?: any;
4875
+ /** Whether connection pooling should be used. Type: boolean. */
4876
+ pooling?: any;
4877
+ /** The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer. */
4878
+ connectionTimeout?: any;
4879
+ /** The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer. */
4880
+ commandTimeout?: any;
4881
+ /** Whether to trust the server certificate without validating it. Type: boolean. */
4882
+ trustServerCertificate?: any;
4883
+ /** Location of a client certificate to be sent to the server. Type: string. */
4884
+ sslCertificate?: any;
4885
+ /** Location of a client key for a client certificate to be sent to the server. Type: string. */
4886
+ sslKey?: any;
4887
+ /** Password for a key for a client certificate. Type: string. */
4888
+ sslPassword?: any;
4889
+ /** Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer. */
4890
+ readBufferSize?: any;
4891
+ /** When enabled, parameter values are logged when commands are executed. Type: boolean. */
4892
+ logParameters?: any;
4893
+ /** Gets or sets the session timezone. Type: string. */
4894
+ timezone?: any;
4895
+ /** Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string */
4896
+ encoding?: any;
4897
+ /** The Azure key vault secret reference of password in connection string. Type: string. */
4898
+ password?: AzureKeyVaultSecretReference;
4899
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4900
+ encryptedCredential?: string;
4901
+ }
4902
+
4829
4903
  /** Linked service for Sybase data source. */
4830
4904
  export interface SybaseLinkedService extends LinkedService {
4831
4905
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -5782,6 +5856,26 @@ export interface GoogleBigQueryLinkedService extends LinkedService {
5782
5856
  encryptedCredential?: string;
5783
5857
  }
5784
5858
 
5859
+ /** Google BigQuery service linked service. */
5860
+ export interface GoogleBigQueryV2LinkedService extends LinkedService {
5861
+ /** Polymorphic discriminator, which specifies the different types this object can be */
5862
+ type: "GoogleBigQueryV2";
5863
+ /** The default BigQuery project id to query against. Type: string (or Expression with resultType string). */
5864
+ projectId: any;
5865
+ /** The OAuth 2.0 authentication mechanism used for authentication. */
5866
+ authenticationType: GoogleBigQueryV2AuthenticationType;
5867
+ /** The client id of the google application used to acquire the refresh token. Type: string (or Expression with resultType string). */
5868
+ clientId?: any;
5869
+ /** The client secret of the google application used to acquire the refresh token. */
5870
+ clientSecret?: SecretBaseUnion;
5871
+ /** The refresh token obtained from Google for authorizing access to BigQuery for UserAuthentication. */
5872
+ refreshToken?: SecretBaseUnion;
5873
+ /** The content of the .json key file that is used to authenticate the service account. Type: string (or Expression with resultType string). */
5874
+ keyFileContent?: SecretBaseUnion;
5875
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5876
+ encryptedCredential?: string;
5877
+ }
5878
+
5785
5879
  /** Greenplum Database linked service. */
5786
5880
  export interface GreenplumLinkedService extends LinkedService {
5787
5881
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -6787,6 +6881,28 @@ export interface WarehouseLinkedService extends LinkedService {
6787
6881
  servicePrincipalCredential?: SecretBaseUnion;
6788
6882
  }
6789
6883
 
6884
+ /** ServiceNowV2 server linked service. */
6885
+ export interface ServiceNowV2LinkedService extends LinkedService {
6886
+ /** Polymorphic discriminator, which specifies the different types this object can be */
6887
+ type: "ServiceNowV2";
6888
+ /** The endpoint of the ServiceNowV2 server. (i.e. <instance>.service-now.com) */
6889
+ endpoint: any;
6890
+ /** The authentication type to use. */
6891
+ authenticationType: ServiceNowV2AuthenticationType;
6892
+ /** The user name used to connect to the ServiceNowV2 server for Basic and OAuth2 authentication. */
6893
+ username?: any;
6894
+ /** The password corresponding to the user name for Basic and OAuth2 authentication. */
6895
+ password?: SecretBaseUnion;
6896
+ /** The client id for OAuth2 authentication. */
6897
+ clientId?: any;
6898
+ /** The client secret for OAuth2 authentication. */
6899
+ clientSecret?: SecretBaseUnion;
6900
+ /** GrantType for OAuth2 authentication. Default value is password. */
6901
+ grantType?: any;
6902
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6903
+ encryptedCredential?: string;
6904
+ }
6905
+
6790
6906
  /** A single Amazon Simple Storage Service (S3) object or a set of S3 objects. */
6791
6907
  export interface AmazonS3Dataset extends Dataset {
6792
6908
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -7252,6 +7368,16 @@ export interface PostgreSqlTableDataset extends Dataset {
7252
7368
  schemaTypePropertiesSchema?: any;
7253
7369
  }
7254
7370
 
7371
+ /** The PostgreSQLV2 table dataset. */
7372
+ export interface PostgreSqlV2TableDataset extends Dataset {
7373
+ /** Polymorphic discriminator, which specifies the different types this object can be */
7374
+ type: "PostgreSqlV2Table";
7375
+ /** The PostgreSQL table name. Type: string (or Expression with resultType string). */
7376
+ table?: any;
7377
+ /** The PostgreSQL schema name. Type: string (or Expression with resultType string). */
7378
+ schemaTypePropertiesSchema?: any;
7379
+ }
7380
+
7255
7381
  /** The Microsoft Access table dataset. */
7256
7382
  export interface MicrosoftAccessTableDataset extends Dataset {
7257
7383
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -7492,6 +7618,16 @@ export interface GoogleBigQueryObjectDataset extends Dataset {
7492
7618
  dataset?: any;
7493
7619
  }
7494
7620
 
7621
+ /** Google BigQuery service dataset. */
7622
+ export interface GoogleBigQueryV2ObjectDataset extends Dataset {
7623
+ /** Polymorphic discriminator, which specifies the different types this object can be */
7624
+ type: "GoogleBigQueryV2Object";
7625
+ /** The table name of the Google BigQuery. Type: string (or Expression with resultType string). */
7626
+ table?: any;
7627
+ /** The database name of the Google BigQuery. Type: string (or Expression with resultType string). */
7628
+ dataset?: any;
7629
+ }
7630
+
7495
7631
  /** Greenplum Database dataset. */
7496
7632
  export interface GreenplumTableDataset extends Dataset {
7497
7633
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -7824,6 +7960,14 @@ export interface WarehouseTableDataset extends Dataset {
7824
7960
  table?: any;
7825
7961
  }
7826
7962
 
7963
+ /** ServiceNowV2 server dataset. */
7964
+ export interface ServiceNowV2ObjectDataset extends Dataset {
7965
+ /** Polymorphic discriminator, which specifies the different types this object can be */
7966
+ type: "ServiceNowV2Object";
7967
+ /** The table name. Type: string (or Expression with resultType string). */
7968
+ tableName?: any;
7969
+ }
7970
+
7827
7971
  /** Base class for all control activities like IfCondition, ForEach , Until. */
7828
7972
  export interface ControlActivity extends Activity {
7829
7973
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -8977,6 +9121,7 @@ export interface TabularSource extends CopySource {
8977
9121
  | "OdbcSource"
8978
9122
  | "MySqlSource"
8979
9123
  | "PostgreSqlSource"
9124
+ | "PostgreSqlV2Source"
8980
9125
  | "SybaseSource"
8981
9126
  | "SapBwSource"
8982
9127
  | "SalesforceSource"
@@ -9002,6 +9147,7 @@ export interface TabularSource extends CopySource {
9002
9147
  | "DrillSource"
9003
9148
  | "EloquaSource"
9004
9149
  | "GoogleBigQuerySource"
9150
+ | "GoogleBigQueryV2Source"
9005
9151
  | "GreenplumSource"
9006
9152
  | "HBaseSource"
9007
9153
  | "HiveSource"
@@ -9031,7 +9177,8 @@ export interface TabularSource extends CopySource {
9031
9177
  | "GoogleAdWordsSource"
9032
9178
  | "AmazonRedshiftSource"
9033
9179
  | "WarehouseSource"
9034
- | "SalesforceV2Source";
9180
+ | "SalesforceV2Source"
9181
+ | "ServiceNowV2Source";
9035
9182
  /** Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
9036
9183
  queryTimeout?: any;
9037
9184
  /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
@@ -10806,6 +10953,14 @@ export interface PostgreSqlSource extends TabularSource {
10806
10953
  query?: any;
10807
10954
  }
10808
10955
 
10956
+ /** A copy activity source for PostgreSQL databases. */
10957
+ export interface PostgreSqlV2Source extends TabularSource {
10958
+ /** Polymorphic discriminator, which specifies the different types this object can be */
10959
+ type: "PostgreSqlV2Source";
10960
+ /** Database query. Type: string (or Expression with resultType string). */
10961
+ query?: any;
10962
+ }
10963
+
10809
10964
  /** A copy activity source for Sybase databases. */
10810
10965
  export interface SybaseSource extends TabularSource {
10811
10966
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -11120,6 +11275,14 @@ export interface GoogleBigQuerySource extends TabularSource {
11120
11275
  query?: any;
11121
11276
  }
11122
11277
 
11278
+ /** A copy activity Google BigQuery service source. */
11279
+ export interface GoogleBigQueryV2Source extends TabularSource {
11280
+ /** Polymorphic discriminator, which specifies the different types this object can be */
11281
+ type: "GoogleBigQueryV2Source";
11282
+ /** A query to retrieve data from source. Type: string (or Expression with resultType string). */
11283
+ query?: any;
11284
+ }
11285
+
11123
11286
  /** A copy activity Greenplum Database source. */
11124
11287
  export interface GreenplumSource extends TabularSource {
11125
11288
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -11380,6 +11543,14 @@ export interface SalesforceV2Source extends TabularSource {
11380
11543
  includeDeletedObjects?: any;
11381
11544
  }
11382
11545
 
11546
+ /** A copy activity ServiceNowV2 server source. */
11547
+ export interface ServiceNowV2Source extends TabularSource {
11548
+ /** Polymorphic discriminator, which specifies the different types this object can be */
11549
+ type: "ServiceNowV2Source";
11550
+ /** Expression to filter data from source. */
11551
+ expression?: ExpressionV2;
11552
+ }
11553
+
11383
11554
  /** Referenced tumbling window trigger dependency. */
11384
11555
  export interface TumblingWindowTriggerDependencyReference
11385
11556
  extends TriggerDependencyReference {
@@ -12609,6 +12780,24 @@ export enum KnownGoogleBigQueryAuthenticationType {
12609
12780
  */
12610
12781
  export type GoogleBigQueryAuthenticationType = string;
12611
12782
 
12783
+ /** Known values of {@link GoogleBigQueryV2AuthenticationType} that the service accepts. */
12784
+ export enum KnownGoogleBigQueryV2AuthenticationType {
12785
+ /** ServiceAuthentication */
12786
+ ServiceAuthentication = "ServiceAuthentication",
12787
+ /** UserAuthentication */
12788
+ UserAuthentication = "UserAuthentication",
12789
+ }
12790
+
12791
+ /**
12792
+ * Defines values for GoogleBigQueryV2AuthenticationType. \
12793
+ * {@link KnownGoogleBigQueryV2AuthenticationType} can be used interchangeably with GoogleBigQueryV2AuthenticationType,
12794
+ * this enum contains the known values that the service supports.
12795
+ * ### Known values supported by the service
12796
+ * **ServiceAuthentication** \
12797
+ * **UserAuthentication**
12798
+ */
12799
+ export type GoogleBigQueryV2AuthenticationType = string;
12800
+
12612
12801
  /** Known values of {@link HBaseAuthenticationType} that the service accepts. */
12613
12802
  export enum KnownHBaseAuthenticationType {
12614
12803
  /** Anonymous */
@@ -12876,6 +13065,24 @@ export enum KnownSnowflakeAuthenticationType {
12876
13065
  */
12877
13066
  export type SnowflakeAuthenticationType = string;
12878
13067
 
13068
+ /** Known values of {@link ServiceNowV2AuthenticationType} that the service accepts. */
13069
+ export enum KnownServiceNowV2AuthenticationType {
13070
+ /** Basic */
13071
+ Basic = "Basic",
13072
+ /** OAuth2 */
13073
+ OAuth2 = "OAuth2",
13074
+ }
13075
+
13076
+ /**
13077
+ * Defines values for ServiceNowV2AuthenticationType. \
13078
+ * {@link KnownServiceNowV2AuthenticationType} can be used interchangeably with ServiceNowV2AuthenticationType,
13079
+ * this enum contains the known values that the service supports.
13080
+ * ### Known values supported by the service
13081
+ * **Basic** \
13082
+ * **OAuth2**
13083
+ */
13084
+ export type ServiceNowV2AuthenticationType = string;
13085
+
12879
13086
  /** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
12880
13087
  export enum KnownCassandraSourceReadConsistencyLevels {
12881
13088
  /** ALL */
@@ -13398,6 +13605,30 @@ export enum KnownSalesforceV2SinkWriteBehavior {
13398
13605
  */
13399
13606
  export type SalesforceV2SinkWriteBehavior = string;
13400
13607
 
13608
+ /** Known values of {@link ExpressionV2Type} that the service accepts. */
13609
+ export enum KnownExpressionV2Type {
13610
+ /** Constant */
13611
+ Constant = "Constant",
13612
+ /** Field */
13613
+ Field = "Field",
13614
+ /** Unary */
13615
+ Unary = "Unary",
13616
+ /** Binary */
13617
+ Binary = "Binary",
13618
+ }
13619
+
13620
+ /**
13621
+ * Defines values for ExpressionV2Type. \
13622
+ * {@link KnownExpressionV2Type} can be used interchangeably with ExpressionV2Type,
13623
+ * this enum contains the known values that the service supports.
13624
+ * ### Known values supported by the service
13625
+ * **Constant** \
13626
+ * **Field** \
13627
+ * **Unary** \
13628
+ * **Binary**
13629
+ */
13630
+ export type ExpressionV2Type = string;
13631
+
13401
13632
  /** Known values of {@link RecurrenceFrequency} that the service accepts. */
13402
13633
  export enum KnownRecurrenceFrequency {
13403
13634
  /** NotSpecified */