You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The properties related to a cosmos DB sql collection endpoint. */
397
+
/** The properties related to a cosmos DB sql container endpoint. */
398
398
exportinterfaceRoutingCosmosDBSqlApiProperties{
399
399
/** The name that identifies this endpoint. The name can only include alphanumeric characters, periods, underscores, hyphens and has a maximum length of 64 characters. The following names are reserved: events, fileNotifications, $default. Endpoint names must be unique across endpoint types. */
400
400
name: string;
401
-
/** Id of the cosmos DB sql collection endpoint */
401
+
/** Id of the cosmos DB sql container endpoint */
402
402
id?: string;
403
403
/** The subscription identifier of the cosmos DB account. */
404
404
subscriptionId?: string;
405
405
/** The name of the resource group of the cosmos DB account. */
406
406
resourceGroup?: string;
407
407
/** The url of the cosmos DB account. It must include the protocol https:// */
408
408
endpointUri: string;
409
-
/** Method used to authenticate against the cosmos DB sql collection endpoint */
409
+
/** Method used to authenticate against the cosmos DB sql container endpoint */
410
410
authenticationType?: AuthenticationType;
411
-
/** Managed identity properties of routing cosmos DB collection endpoint. */
411
+
/** Managed identity properties of routing cosmos DB container endpoint. */
412
412
identity?: ManagedIdentity;
413
413
/** The primary key of the cosmos DB account. */
414
414
primaryKey?: string;
415
415
/** The secondary key of the cosmos DB account. */
416
416
secondaryKey?: string;
417
417
/** The name of the cosmos DB database in the cosmos DB account. */
418
418
databaseName: string;
419
-
/** The name of the cosmos DB sql collection in the cosmos DB database. */
420
-
collectionName: string;
421
-
/** The name of the partition key associated with this cosmos DB sql collection if one exists. This is an optional parameter. */
419
+
/** The name of the cosmos DB sql container in the cosmos DB database. */
420
+
containerName: string;
421
+
/** The name of the partition key associated with this cosmos DB sql container if one exists. This is an optional parameter. */
422
422
partitionKeyName?: string;
423
-
/** The template for generating a synthetic partition key value for use with this cosmos DB sql collection. The template must include at least one of the following placeholders: {iothub}, {deviceid}, {DD}, {MM}, and {YYYY}. Any one placeholder may be specified at most once, but order and non-placeholder components are arbitrary. This parameter is only required if PartitionKeyName is specified. */
423
+
/** The template for generating a synthetic partition key value for use with this cosmos DB sql container. The template must include at least one of the following placeholders: {iothub}, {deviceid}, {DD}, {MM}, and {YYYY}. Any one placeholder may be specified at most once, but order and non-placeholder components are arbitrary. This parameter is only required if PartitionKeyName is specified. */
0 commit comments