yandexcloud 0.306.0__py3-none-any.whl → 0.307.0__py3-none-any.whl
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.
Potentially problematic release.
This version of yandexcloud might be problematic. Click here for more details.
- yandex/cloud/iam/v1/service_control_pb2.py +3 -1
- yandex/cloud/iam/v1/service_control_pb2.pyi +24 -0
- yandex/cloud/iam/v1/service_control_service_pb2.py +13 -3
- yandex/cloud/iam/v1/service_control_service_pb2.pyi +27 -0
- yandex/cloud/iam/v1/service_control_service_pb2_grpc.py +34 -0
- yandex/cloud/iam/v1/service_control_service_pb2_grpc.pyi +20 -0
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2.py +53 -43
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2.pyi +44 -0
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2_grpc.py +34 -0
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2_grpc.pyi +20 -0
- yandex/cloud/mdb/mongodb/v1/cluster_pb2.py +144 -133
- yandex/cloud/mdb/mongodb/v1/cluster_pb2.pyi +165 -3
- yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.py +242 -231
- yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.pyi +180 -6
- yandex/cloud/mdb/mongodb/v1/config/mongodb_pb2.py +108 -0
- yandex/cloud/mdb/mongodb/v1/config/mongodb_pb2.pyi +794 -0
- yandex/cloud/mdb/mongodb/v1/config/mongodb_pb2_grpc.py +4 -0
- yandex/cloud/mdb/mongodb/v1/config/mongodb_pb2_grpc.pyi +17 -0
- {yandexcloud-0.306.0.dist-info → yandexcloud-0.307.0.dist-info}/METADATA +1 -1
- {yandexcloud-0.306.0.dist-info → yandexcloud-0.307.0.dist-info}/RECORD +24 -20
- {yandexcloud-0.306.0.dist-info → yandexcloud-0.307.0.dist-info}/WHEEL +1 -1
- {yandexcloud-0.306.0.dist-info → yandexcloud-0.307.0.dist-info}/AUTHORS +0 -0
- {yandexcloud-0.306.0.dist-info → yandexcloud-0.307.0.dist-info}/LICENSE +0 -0
- {yandexcloud-0.306.0.dist-info → yandexcloud-0.307.0.dist-info}/top_level.txt +0 -0
|
@@ -26,6 +26,7 @@ import yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2
|
|
|
26
26
|
import yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2
|
|
27
27
|
import yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2
|
|
28
28
|
import yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2
|
|
29
|
+
import yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2
|
|
29
30
|
import yandex.cloud.mdb.mongodb.v1.database_pb2
|
|
30
31
|
import yandex.cloud.mdb.mongodb.v1.maintenance_pb2
|
|
31
32
|
import yandex.cloud.mdb.mongodb.v1.user_pb2
|
|
@@ -155,6 +156,7 @@ class CreateClusterRequest(google.protobuf.message.Message):
|
|
|
155
156
|
NETWORK_ID_FIELD_NUMBER: builtins.int
|
|
156
157
|
SECURITY_GROUP_IDS_FIELD_NUMBER: builtins.int
|
|
157
158
|
DELETION_PROTECTION_FIELD_NUMBER: builtins.int
|
|
159
|
+
MAINTENANCE_WINDOW_FIELD_NUMBER: builtins.int
|
|
158
160
|
folder_id: builtins.str
|
|
159
161
|
"""ID of the folder to create MongoDB cluster in."""
|
|
160
162
|
name: builtins.str
|
|
@@ -193,6 +195,10 @@ class CreateClusterRequest(google.protobuf.message.Message):
|
|
|
193
195
|
def security_group_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
194
196
|
"""User security groups"""
|
|
195
197
|
|
|
198
|
+
@property
|
|
199
|
+
def maintenance_window(self) -> yandex.cloud.mdb.mongodb.v1.maintenance_pb2.MaintenanceWindow:
|
|
200
|
+
"""Maintenance window settings for the cluster."""
|
|
201
|
+
|
|
196
202
|
def __init__(
|
|
197
203
|
self,
|
|
198
204
|
*,
|
|
@@ -208,9 +214,10 @@ class CreateClusterRequest(google.protobuf.message.Message):
|
|
|
208
214
|
network_id: builtins.str = ...,
|
|
209
215
|
security_group_ids: collections.abc.Iterable[builtins.str] | None = ...,
|
|
210
216
|
deletion_protection: builtins.bool = ...,
|
|
217
|
+
maintenance_window: yandex.cloud.mdb.mongodb.v1.maintenance_pb2.MaintenanceWindow | None = ...,
|
|
211
218
|
) -> None: ...
|
|
212
|
-
def HasField(self, field_name: typing.Literal["config_spec", b"config_spec"]) -> builtins.bool: ...
|
|
213
|
-
def ClearField(self, field_name: typing.Literal["config_spec", b"config_spec", "database_specs", b"database_specs", "deletion_protection", b"deletion_protection", "description", b"description", "environment", b"environment", "folder_id", b"folder_id", "host_specs", b"host_specs", "labels", b"labels", "name", b"name", "network_id", b"network_id", "security_group_ids", b"security_group_ids", "user_specs", b"user_specs"]) -> None: ...
|
|
219
|
+
def HasField(self, field_name: typing.Literal["config_spec", b"config_spec", "maintenance_window", b"maintenance_window"]) -> builtins.bool: ...
|
|
220
|
+
def ClearField(self, field_name: typing.Literal["config_spec", b"config_spec", "database_specs", b"database_specs", "deletion_protection", b"deletion_protection", "description", b"description", "environment", b"environment", "folder_id", b"folder_id", "host_specs", b"host_specs", "labels", b"labels", "maintenance_window", b"maintenance_window", "name", b"name", "network_id", b"network_id", "security_group_ids", b"security_group_ids", "user_specs", b"user_specs"]) -> None: ...
|
|
214
221
|
|
|
215
222
|
global___CreateClusterRequest = CreateClusterRequest
|
|
216
223
|
|
|
@@ -550,6 +557,7 @@ class RestoreClusterRequest(google.protobuf.message.Message):
|
|
|
550
557
|
RECOVERY_TARGET_SPEC_FIELD_NUMBER: builtins.int
|
|
551
558
|
SECURITY_GROUP_IDS_FIELD_NUMBER: builtins.int
|
|
552
559
|
DELETION_PROTECTION_FIELD_NUMBER: builtins.int
|
|
560
|
+
MAINTENANCE_WINDOW_FIELD_NUMBER: builtins.int
|
|
553
561
|
backup_id: builtins.str
|
|
554
562
|
"""ID of the backup to create a cluster from.
|
|
555
563
|
To get the backup ID, use a [ClusterService.ListBackups] request.
|
|
@@ -592,6 +600,10 @@ class RestoreClusterRequest(google.protobuf.message.Message):
|
|
|
592
600
|
def security_group_ids(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
593
601
|
"""User security groups"""
|
|
594
602
|
|
|
603
|
+
@property
|
|
604
|
+
def maintenance_window(self) -> yandex.cloud.mdb.mongodb.v1.maintenance_pb2.MaintenanceWindow:
|
|
605
|
+
"""Maintenance window settings for the cluster."""
|
|
606
|
+
|
|
595
607
|
def __init__(
|
|
596
608
|
self,
|
|
597
609
|
*,
|
|
@@ -607,9 +619,10 @@ class RestoreClusterRequest(google.protobuf.message.Message):
|
|
|
607
619
|
recovery_target_spec: global___RestoreClusterRequest.RecoveryTargetSpec | None = ...,
|
|
608
620
|
security_group_ids: collections.abc.Iterable[builtins.str] | None = ...,
|
|
609
621
|
deletion_protection: builtins.bool = ...,
|
|
622
|
+
maintenance_window: yandex.cloud.mdb.mongodb.v1.maintenance_pb2.MaintenanceWindow | None = ...,
|
|
610
623
|
) -> None: ...
|
|
611
|
-
def HasField(self, field_name: typing.Literal["config_spec", b"config_spec", "recovery_target_spec", b"recovery_target_spec"]) -> builtins.bool: ...
|
|
612
|
-
def ClearField(self, field_name: typing.Literal["backup_id", b"backup_id", "config_spec", b"config_spec", "deletion_protection", b"deletion_protection", "description", b"description", "environment", b"environment", "folder_id", b"folder_id", "host_specs", b"host_specs", "labels", b"labels", "name", b"name", "network_id", b"network_id", "recovery_target_spec", b"recovery_target_spec", "security_group_ids", b"security_group_ids"]) -> None: ...
|
|
624
|
+
def HasField(self, field_name: typing.Literal["config_spec", b"config_spec", "maintenance_window", b"maintenance_window", "recovery_target_spec", b"recovery_target_spec"]) -> builtins.bool: ...
|
|
625
|
+
def ClearField(self, field_name: typing.Literal["backup_id", b"backup_id", "config_spec", b"config_spec", "deletion_protection", b"deletion_protection", "description", b"description", "environment", b"environment", "folder_id", b"folder_id", "host_specs", b"host_specs", "labels", b"labels", "maintenance_window", b"maintenance_window", "name", b"name", "network_id", b"network_id", "recovery_target_spec", b"recovery_target_spec", "security_group_ids", b"security_group_ids"]) -> None: ...
|
|
613
626
|
|
|
614
627
|
global___RestoreClusterRequest = RestoreClusterRequest
|
|
615
628
|
|
|
@@ -3258,6 +3271,161 @@ class MongodbSpec6_0_enterprise(google.protobuf.message.Message):
|
|
|
3258
3271
|
|
|
3259
3272
|
global___MongodbSpec6_0_enterprise = MongodbSpec6_0_enterprise
|
|
3260
3273
|
|
|
3274
|
+
@typing.final
|
|
3275
|
+
class MongodbSpec(google.protobuf.message.Message):
|
|
3276
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3277
|
+
|
|
3278
|
+
@typing.final
|
|
3279
|
+
class Mongod(google.protobuf.message.Message):
|
|
3280
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3281
|
+
|
|
3282
|
+
CONFIG_FIELD_NUMBER: builtins.int
|
|
3283
|
+
RESOURCES_FIELD_NUMBER: builtins.int
|
|
3284
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
3285
|
+
@property
|
|
3286
|
+
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongodConfig: ...
|
|
3287
|
+
@property
|
|
3288
|
+
def resources(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources:
|
|
3289
|
+
"""Resources allocated to each mongod host."""
|
|
3290
|
+
|
|
3291
|
+
@property
|
|
3292
|
+
def disk_size_autoscaling(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling:
|
|
3293
|
+
"""Disk size autoscaling settings"""
|
|
3294
|
+
|
|
3295
|
+
def __init__(
|
|
3296
|
+
self,
|
|
3297
|
+
*,
|
|
3298
|
+
config: yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongodConfig | None = ...,
|
|
3299
|
+
resources: yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources | None = ...,
|
|
3300
|
+
disk_size_autoscaling: yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling | None = ...,
|
|
3301
|
+
) -> None: ...
|
|
3302
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
3303
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
3304
|
+
|
|
3305
|
+
@typing.final
|
|
3306
|
+
class MongoCfg(google.protobuf.message.Message):
|
|
3307
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3308
|
+
|
|
3309
|
+
CONFIG_FIELD_NUMBER: builtins.int
|
|
3310
|
+
RESOURCES_FIELD_NUMBER: builtins.int
|
|
3311
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
3312
|
+
@property
|
|
3313
|
+
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongoCfgConfig:
|
|
3314
|
+
"""Configuration for mongocfg hosts."""
|
|
3315
|
+
|
|
3316
|
+
@property
|
|
3317
|
+
def resources(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources:
|
|
3318
|
+
"""Resources allocated to each mongocfg host."""
|
|
3319
|
+
|
|
3320
|
+
@property
|
|
3321
|
+
def disk_size_autoscaling(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling:
|
|
3322
|
+
"""Disk size autoscaling settings"""
|
|
3323
|
+
|
|
3324
|
+
def __init__(
|
|
3325
|
+
self,
|
|
3326
|
+
*,
|
|
3327
|
+
config: yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongoCfgConfig | None = ...,
|
|
3328
|
+
resources: yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources | None = ...,
|
|
3329
|
+
disk_size_autoscaling: yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling | None = ...,
|
|
3330
|
+
) -> None: ...
|
|
3331
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
3332
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
3333
|
+
|
|
3334
|
+
@typing.final
|
|
3335
|
+
class Mongos(google.protobuf.message.Message):
|
|
3336
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3337
|
+
|
|
3338
|
+
CONFIG_FIELD_NUMBER: builtins.int
|
|
3339
|
+
RESOURCES_FIELD_NUMBER: builtins.int
|
|
3340
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
3341
|
+
@property
|
|
3342
|
+
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongosConfig:
|
|
3343
|
+
"""Configuration for mongos hosts."""
|
|
3344
|
+
|
|
3345
|
+
@property
|
|
3346
|
+
def resources(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources:
|
|
3347
|
+
"""Resources allocated to each mongos host."""
|
|
3348
|
+
|
|
3349
|
+
@property
|
|
3350
|
+
def disk_size_autoscaling(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling:
|
|
3351
|
+
"""Disk size autoscaling settings"""
|
|
3352
|
+
|
|
3353
|
+
def __init__(
|
|
3354
|
+
self,
|
|
3355
|
+
*,
|
|
3356
|
+
config: yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongosConfig | None = ...,
|
|
3357
|
+
resources: yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources | None = ...,
|
|
3358
|
+
disk_size_autoscaling: yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling | None = ...,
|
|
3359
|
+
) -> None: ...
|
|
3360
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
3361
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
3362
|
+
|
|
3363
|
+
@typing.final
|
|
3364
|
+
class MongoInfra(google.protobuf.message.Message):
|
|
3365
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
3366
|
+
|
|
3367
|
+
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
3368
|
+
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
3369
|
+
RESOURCES_FIELD_NUMBER: builtins.int
|
|
3370
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
3371
|
+
@property
|
|
3372
|
+
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongosConfig:
|
|
3373
|
+
"""Configuration for mongoinfra hosts."""
|
|
3374
|
+
|
|
3375
|
+
@property
|
|
3376
|
+
def config_mongocfg(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongoCfgConfig: ...
|
|
3377
|
+
@property
|
|
3378
|
+
def resources(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources:
|
|
3379
|
+
"""Resources allocated to each mongoinfra (mongos+mongocfg) host."""
|
|
3380
|
+
|
|
3381
|
+
@property
|
|
3382
|
+
def disk_size_autoscaling(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling:
|
|
3383
|
+
"""Disk size autoscaling settings"""
|
|
3384
|
+
|
|
3385
|
+
def __init__(
|
|
3386
|
+
self,
|
|
3387
|
+
*,
|
|
3388
|
+
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongosConfig | None = ...,
|
|
3389
|
+
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2.MongoCfgConfig | None = ...,
|
|
3390
|
+
resources: yandex.cloud.mdb.mongodb.v1.cluster_pb2.Resources | None = ...,
|
|
3391
|
+
disk_size_autoscaling: yandex.cloud.mdb.mongodb.v1.cluster_pb2.DiskSizeAutoscaling | None = ...,
|
|
3392
|
+
) -> None: ...
|
|
3393
|
+
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
3394
|
+
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
3395
|
+
|
|
3396
|
+
MONGOD_FIELD_NUMBER: builtins.int
|
|
3397
|
+
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
3398
|
+
MONGOS_FIELD_NUMBER: builtins.int
|
|
3399
|
+
MONGOINFRA_FIELD_NUMBER: builtins.int
|
|
3400
|
+
@property
|
|
3401
|
+
def mongod(self) -> global___MongodbSpec.Mongod:
|
|
3402
|
+
"""Configuration and resource allocation for mongod hosts."""
|
|
3403
|
+
|
|
3404
|
+
@property
|
|
3405
|
+
def mongocfg(self) -> global___MongodbSpec.MongoCfg:
|
|
3406
|
+
"""Configuration and resource allocation for mongocfg hosts."""
|
|
3407
|
+
|
|
3408
|
+
@property
|
|
3409
|
+
def mongos(self) -> global___MongodbSpec.Mongos:
|
|
3410
|
+
"""Configuration and resource allocation for mongos hosts."""
|
|
3411
|
+
|
|
3412
|
+
@property
|
|
3413
|
+
def mongoinfra(self) -> global___MongodbSpec.MongoInfra:
|
|
3414
|
+
"""Configuration and resource allocation for mongoinfra (mongos+mongocfg) hosts."""
|
|
3415
|
+
|
|
3416
|
+
def __init__(
|
|
3417
|
+
self,
|
|
3418
|
+
*,
|
|
3419
|
+
mongod: global___MongodbSpec.Mongod | None = ...,
|
|
3420
|
+
mongocfg: global___MongodbSpec.MongoCfg | None = ...,
|
|
3421
|
+
mongos: global___MongodbSpec.Mongos | None = ...,
|
|
3422
|
+
mongoinfra: global___MongodbSpec.MongoInfra | None = ...,
|
|
3423
|
+
) -> None: ...
|
|
3424
|
+
def HasField(self, field_name: typing.Literal["mongocfg", b"mongocfg", "mongod", b"mongod", "mongoinfra", b"mongoinfra", "mongos", b"mongos"]) -> builtins.bool: ...
|
|
3425
|
+
def ClearField(self, field_name: typing.Literal["mongocfg", b"mongocfg", "mongod", b"mongod", "mongoinfra", b"mongoinfra", "mongos", b"mongos"]) -> None: ...
|
|
3426
|
+
|
|
3427
|
+
global___MongodbSpec = MongodbSpec
|
|
3428
|
+
|
|
3261
3429
|
@typing.final
|
|
3262
3430
|
class ConfigSpec(google.protobuf.message.Message):
|
|
3263
3431
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
@@ -3277,6 +3445,7 @@ class ConfigSpec(google.protobuf.message.Message):
|
|
|
3277
3445
|
BACKUP_RETAIN_PERIOD_DAYS_FIELD_NUMBER: builtins.int
|
|
3278
3446
|
PERFORMANCE_DIAGNOSTICS_FIELD_NUMBER: builtins.int
|
|
3279
3447
|
ACCESS_FIELD_NUMBER: builtins.int
|
|
3448
|
+
MONGODB_FIELD_NUMBER: builtins.int
|
|
3280
3449
|
version: builtins.str
|
|
3281
3450
|
"""Version of MongoDB used in the cluster. Possible values: `3.6`, `4.0`, `4.2`, `4.4`, `4.4-enterprise`, `5.0`, `5.0-enterprise`, `6.0`, `6.0-enterprise`."""
|
|
3282
3451
|
feature_compatibility_version: builtins.str
|
|
@@ -3342,6 +3511,10 @@ class ConfigSpec(google.protobuf.message.Message):
|
|
|
3342
3511
|
def access(self) -> yandex.cloud.mdb.mongodb.v1.cluster_pb2.Access:
|
|
3343
3512
|
"""Access policy to DB"""
|
|
3344
3513
|
|
|
3514
|
+
@property
|
|
3515
|
+
def mongodb(self) -> global___MongodbSpec:
|
|
3516
|
+
"""Configuration and resource allocation for a MongoDB 7.0 Enterprise cluster."""
|
|
3517
|
+
|
|
3345
3518
|
def __init__(
|
|
3346
3519
|
self,
|
|
3347
3520
|
*,
|
|
@@ -3360,9 +3533,10 @@ class ConfigSpec(google.protobuf.message.Message):
|
|
|
3360
3533
|
backup_retain_period_days: google.protobuf.wrappers_pb2.Int64Value | None = ...,
|
|
3361
3534
|
performance_diagnostics: yandex.cloud.mdb.mongodb.v1.cluster_pb2.PerformanceDiagnosticsConfig | None = ...,
|
|
3362
3535
|
access: yandex.cloud.mdb.mongodb.v1.cluster_pb2.Access | None = ...,
|
|
3536
|
+
mongodb: global___MongodbSpec | None = ...,
|
|
3363
3537
|
) -> None: ...
|
|
3364
|
-
def HasField(self, field_name: typing.Literal["access", b"access", "backup_retain_period_days", b"backup_retain_period_days", "backup_window_start", b"backup_window_start", "mongodb_spec", b"mongodb_spec", "mongodb_spec_3_6", b"mongodb_spec_3_6", "mongodb_spec_4_0", b"mongodb_spec_4_0", "mongodb_spec_4_2", b"mongodb_spec_4_2", "mongodb_spec_4_4", b"mongodb_spec_4_4", "mongodb_spec_4_4_enterprise", b"mongodb_spec_4_4_enterprise", "mongodb_spec_5_0", b"mongodb_spec_5_0", "mongodb_spec_5_0_enterprise", b"mongodb_spec_5_0_enterprise", "mongodb_spec_6_0", b"mongodb_spec_6_0", "mongodb_spec_6_0_enterprise", b"mongodb_spec_6_0_enterprise", "performance_diagnostics", b"performance_diagnostics"]) -> builtins.bool: ...
|
|
3365
|
-
def ClearField(self, field_name: typing.Literal["access", b"access", "backup_retain_period_days", b"backup_retain_period_days", "backup_window_start", b"backup_window_start", "feature_compatibility_version", b"feature_compatibility_version", "mongodb_spec", b"mongodb_spec", "mongodb_spec_3_6", b"mongodb_spec_3_6", "mongodb_spec_4_0", b"mongodb_spec_4_0", "mongodb_spec_4_2", b"mongodb_spec_4_2", "mongodb_spec_4_4", b"mongodb_spec_4_4", "mongodb_spec_4_4_enterprise", b"mongodb_spec_4_4_enterprise", "mongodb_spec_5_0", b"mongodb_spec_5_0", "mongodb_spec_5_0_enterprise", b"mongodb_spec_5_0_enterprise", "mongodb_spec_6_0", b"mongodb_spec_6_0", "mongodb_spec_6_0_enterprise", b"mongodb_spec_6_0_enterprise", "performance_diagnostics", b"performance_diagnostics", "version", b"version"]) -> None: ...
|
|
3538
|
+
def HasField(self, field_name: typing.Literal["access", b"access", "backup_retain_period_days", b"backup_retain_period_days", "backup_window_start", b"backup_window_start", "mongodb", b"mongodb", "mongodb_spec", b"mongodb_spec", "mongodb_spec_3_6", b"mongodb_spec_3_6", "mongodb_spec_4_0", b"mongodb_spec_4_0", "mongodb_spec_4_2", b"mongodb_spec_4_2", "mongodb_spec_4_4", b"mongodb_spec_4_4", "mongodb_spec_4_4_enterprise", b"mongodb_spec_4_4_enterprise", "mongodb_spec_5_0", b"mongodb_spec_5_0", "mongodb_spec_5_0_enterprise", b"mongodb_spec_5_0_enterprise", "mongodb_spec_6_0", b"mongodb_spec_6_0", "mongodb_spec_6_0_enterprise", b"mongodb_spec_6_0_enterprise", "performance_diagnostics", b"performance_diagnostics"]) -> builtins.bool: ...
|
|
3539
|
+
def ClearField(self, field_name: typing.Literal["access", b"access", "backup_retain_period_days", b"backup_retain_period_days", "backup_window_start", b"backup_window_start", "feature_compatibility_version", b"feature_compatibility_version", "mongodb", b"mongodb", "mongodb_spec", b"mongodb_spec", "mongodb_spec_3_6", b"mongodb_spec_3_6", "mongodb_spec_4_0", b"mongodb_spec_4_0", "mongodb_spec_4_2", b"mongodb_spec_4_2", "mongodb_spec_4_4", b"mongodb_spec_4_4", "mongodb_spec_4_4_enterprise", b"mongodb_spec_4_4_enterprise", "mongodb_spec_5_0", b"mongodb_spec_5_0", "mongodb_spec_5_0_enterprise", b"mongodb_spec_5_0_enterprise", "mongodb_spec_6_0", b"mongodb_spec_6_0", "mongodb_spec_6_0_enterprise", b"mongodb_spec_6_0_enterprise", "performance_diagnostics", b"performance_diagnostics", "version", b"version"]) -> None: ...
|
|
3366
3540
|
def WhichOneof(self, oneof_group: typing.Literal["mongodb_spec", b"mongodb_spec"]) -> typing.Literal["mongodb_spec_3_6", "mongodb_spec_4_0", "mongodb_spec_4_2", "mongodb_spec_4_4", "mongodb_spec_5_0", "mongodb_spec_6_0", "mongodb_spec_4_4_enterprise", "mongodb_spec_5_0_enterprise", "mongodb_spec_6_0_enterprise"] | None: ...
|
|
3367
3541
|
|
|
3368
3542
|
global___ConfigSpec = ConfigSpec
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: yandex/cloud/mdb/mongodb/v1/config/mongodb.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
|
6
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
7
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
8
|
+
from google.protobuf.internal import builder as _builder
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
|
|
15
|
+
from yandex.cloud import validation_pb2 as yandex_dot_cloud_dot_validation__pb2
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n0yandex/cloud/mdb/mongodb/v1/config/mongodb.proto\x12\"yandex.cloud.mdb.mongodb.v1.config\x1a\x1egoogle/protobuf/wrappers.proto\x1a\x1dyandex/cloud/validation.proto\"\xcd\x15\n\x0cMongodConfig\x12I\n\x07storage\x18\x01 \x01(\x0b\x32\x38.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Storage\x12`\n\x13operation_profiling\x18\x02 \x01(\x0b\x32\x43.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.OperationProfiling\x12\x45\n\x03net\x18\x03 \x01(\x0b\x32\x38.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Network\x12K\n\x08security\x18\x04 \x01(\x0b\x32\x39.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Security\x12L\n\taudit_log\x18\x05 \x01(\x0b\x32\x39.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.AuditLog\x12T\n\rset_parameter\x18\x06 \x01(\x0b\x32=.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.SetParameter\x1a\xc2\x07\n\x07Storage\x12X\n\x0bwired_tiger\x18\x01 \x01(\x0b\x32\x43.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Storage.WiredTiger\x12Q\n\x07journal\x18\x02 \x01(\x0b\x32@.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Storage.Journal\x1a\xbd\x05\n\nWiredTiger\x12g\n\rengine_config\x18\x01 \x01(\x0b\x32P.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Storage.WiredTiger.EngineConfig\x12o\n\x11\x63ollection_config\x18\x02 \x01(\x0b\x32T.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Storage.WiredTiger.CollectionConfig\x12\x65\n\x0cindex_config\x18\x03 \x01(\x0b\x32O.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Storage.WiredTiger.IndexConfig\x1a\x43\n\x0c\x45ngineConfig\x12\x33\n\rcache_size_gb\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1a\xe1\x01\n\x10\x43ollectionConfig\x12y\n\x10\x62lock_compressor\x18\x01 \x01(\x0e\x32_.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Storage.WiredTiger.CollectionConfig.Compressor\"R\n\nCompressor\x12\x1a\n\x16\x43OMPRESSOR_UNSPECIFIED\x10\x00\x12\x08\n\x04NONE\x10\x01\x12\n\n\x06SNAPPY\x10\x02\x12\x08\n\x04ZLIB\x10\x03\x12\x08\n\x04ZSTD\x10\x04\x1a\x45\n\x0bIndexConfig\x12\x36\n\x12prefix_compression\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1aJ\n\x07Journal\x12?\n\x0f\x63ommit_interval\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\t\xfa\xc7\x31\x05\x31-500\x1a\xad\x02\n\x12OperationProfiling\x12V\n\x04mode\x18\x01 \x01(\x0e\x32H.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.OperationProfiling.Mode\x12>\n\x11slow_op_threshold\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\x06\xfa\xc7\x31\x02>0\x12\x42\n\x13slow_op_sample_rate\x18\x03 \x01(\x0b\x32\x1c.google.protobuf.DoubleValueB\x07\xfa\xc7\x31\x03\x30-1\";\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x07\n\x03OFF\x10\x01\x12\x0b\n\x07SLOW_OP\x10\x02\x12\x07\n\x03\x41LL\x10\x03\x1a\x88\x03\n\x07Network\x12K\n\x18max_incoming_connections\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\x0c\xfa\xc7\x31\x08\x31\x30-16384\x12Y\n\x0b\x63ompression\x18\x02 \x01(\x0b\x32\x44.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Network.Compression\x1a\xd4\x01\n\x0b\x43ompression\x12m\n\x0b\x63ompressors\x18\x01 \x03(\x0e\x32O.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Network.Compression.CompressorB\x07\x82\xc8\x31\x03\x31-3\"V\n\nCompressor\x12\x1a\n\x16\x43OMPRESSOR_UNSPECIFIED\x10\x00\x12\n\n\x06SNAPPY\x10\x01\x12\x08\n\x04ZLIB\x10\x02\x12\x08\n\x04ZSTD\x10\x03\x12\x0c\n\x08\x44ISABLED\x10\x04\x1a\x9f\x02\n\x08Security\x12\x35\n\x11\x65nable_encryption\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12L\n\x04kmip\x18\x02 \x01(\x0b\x32>.yandex.cloud.mdb.mongodb.v1.config.MongodConfig.Security.KMIP\x1a\x8d\x01\n\x04KMIP\x12\x13\n\x0bserver_name\x18\x01 \x01(\t\x12)\n\x04port\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64Value\x12\x11\n\tserver_ca\x18\x03 \x01(\t\x12\x1a\n\x12\x63lient_certificate\x18\x04 \x01(\t\x12\x16\n\x0ekey_identifier\x18\x05 \x01(\t\x1aU\n\x08\x41uditLog\x12\x0e\n\x06\x66ilter\x18\x01 \x01(\t\x12\x39\n\x15runtime_configuration\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x1a\xde\x01\n\x0cSetParameter\x12?\n\x1b\x61udit_authorization_success\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12\x37\n\x13\x65nable_flow_control\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.BoolValue\x12T\n&min_snapshot_history_window_in_seconds\x18\x03 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\x07\xfa\xc7\x31\x03>=0\"\xf7\x06\n\x0eMongoCfgConfig\x12K\n\x07storage\x18\x01 \x01(\x0b\x32:.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig.Storage\x12\x62\n\x13operation_profiling\x18\x02 \x01(\x0b\x32\x45.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig.OperationProfiling\x12G\n\x03net\x18\x03 \x01(\x0b\x32:.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig.Network\x1a\xa4\x02\n\x07Storage\x12Z\n\x0bwired_tiger\x18\x01 \x01(\x0b\x32\x45.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig.Storage.WiredTiger\x1a\xbc\x01\n\nWiredTiger\x12i\n\rengine_config\x18\x01 \x01(\x0b\x32R.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig.Storage.WiredTiger.EngineConfig\x1a\x43\n\x0c\x45ngineConfig\x12\x33\n\rcache_size_gb\x18\x01 \x01(\x0b\x32\x1c.google.protobuf.DoubleValue\x1a\xeb\x01\n\x12OperationProfiling\x12X\n\x04mode\x18\x01 \x01(\x0e\x32J.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig.OperationProfiling.Mode\x12>\n\x11slow_op_threshold\x18\x02 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\x06\xfa\xc7\x31\x02>0\";\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x07\n\x03OFF\x10\x01\x12\x0b\n\x07SLOW_OP\x10\x02\x12\x07\n\x03\x41LL\x10\x03\x1aV\n\x07Network\x12K\n\x18max_incoming_connections\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\x0c\xfa\xc7\x31\x08\x31\x30-16384\"\xe0\x03\n\x0cMongosConfig\x12\x45\n\x03net\x18\x03 \x01(\x0b\x32\x38.yandex.cloud.mdb.mongodb.v1.config.MongosConfig.Network\x1a\x88\x03\n\x07Network\x12K\n\x18max_incoming_connections\x18\x01 \x01(\x0b\x32\x1b.google.protobuf.Int64ValueB\x0c\xfa\xc7\x31\x08\x31\x30-16384\x12Y\n\x0b\x63ompression\x18\x02 \x01(\x0b\x32\x44.yandex.cloud.mdb.mongodb.v1.config.MongosConfig.Network.Compression\x1a\xd4\x01\n\x0b\x43ompression\x12m\n\x0b\x63ompressors\x18\x01 \x03(\x0e\x32O.yandex.cloud.mdb.mongodb.v1.config.MongosConfig.Network.Compression.CompressorB\x07\x82\xc8\x31\x03\x31-3\"V\n\nCompressor\x12\x1a\n\x16\x43OMPRESSOR_UNSPECIFIED\x10\x00\x12\n\n\x06SNAPPY\x10\x01\x12\x08\n\x04ZLIB\x10\x02\x12\x08\n\x04ZSTD\x10\x03\x12\x0c\n\x08\x44ISABLED\x10\x04\"\xee\x01\n\x0fMongodConfigSet\x12J\n\x10\x65\x66\x66\x65\x63tive_config\x18\x01 \x01(\x0b\x32\x30.yandex.cloud.mdb.mongodb.v1.config.MongodConfig\x12\x45\n\x0buser_config\x18\x02 \x01(\x0b\x32\x30.yandex.cloud.mdb.mongodb.v1.config.MongodConfig\x12H\n\x0e\x64\x65\x66\x61ult_config\x18\x03 \x01(\x0b\x32\x30.yandex.cloud.mdb.mongodb.v1.config.MongodConfig\"\xf6\x01\n\x11MongoCfgConfigSet\x12L\n\x10\x65\x66\x66\x65\x63tive_config\x18\x01 \x01(\x0b\x32\x32.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig\x12G\n\x0buser_config\x18\x02 \x01(\x0b\x32\x32.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig\x12J\n\x0e\x64\x65\x66\x61ult_config\x18\x03 \x01(\x0b\x32\x32.yandex.cloud.mdb.mongodb.v1.config.MongoCfgConfig\"\xee\x01\n\x0fMongosConfigSet\x12J\n\x10\x65\x66\x66\x65\x63tive_config\x18\x01 \x01(\x0b\x32\x30.yandex.cloud.mdb.mongodb.v1.config.MongosConfig\x12\x45\n\x0buser_config\x18\x02 \x01(\x0b\x32\x30.yandex.cloud.mdb.mongodb.v1.config.MongosConfig\x12H\n\x0e\x64\x65\x66\x61ult_config\x18\x03 \x01(\x0b\x32\x30.yandex.cloud.mdb.mongodb.v1.config.MongosConfigBx\n&yandex.cloud.api.mdb.mongodb.v1.configZNgithub.com/yandex-cloud/go-genproto/yandex/cloud/mdb/mongodb/v1/config;mongodbb\x06proto3')
|
|
19
|
+
|
|
20
|
+
_globals = globals()
|
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'yandex.cloud.mdb.mongodb.v1.config.mongodb_pb2', _globals)
|
|
23
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
24
|
+
DESCRIPTOR._options = None
|
|
25
|
+
DESCRIPTOR._serialized_options = b'\n&yandex.cloud.api.mdb.mongodb.v1.configZNgithub.com/yandex-cloud/go-genproto/yandex/cloud/mdb/mongodb/v1/config;mongodb'
|
|
26
|
+
_MONGODCONFIG_STORAGE_JOURNAL.fields_by_name['commit_interval']._options = None
|
|
27
|
+
_MONGODCONFIG_STORAGE_JOURNAL.fields_by_name['commit_interval']._serialized_options = b'\372\3071\0051-500'
|
|
28
|
+
_MONGODCONFIG_OPERATIONPROFILING.fields_by_name['slow_op_threshold']._options = None
|
|
29
|
+
_MONGODCONFIG_OPERATIONPROFILING.fields_by_name['slow_op_threshold']._serialized_options = b'\372\3071\002>0'
|
|
30
|
+
_MONGODCONFIG_OPERATIONPROFILING.fields_by_name['slow_op_sample_rate']._options = None
|
|
31
|
+
_MONGODCONFIG_OPERATIONPROFILING.fields_by_name['slow_op_sample_rate']._serialized_options = b'\372\3071\0030-1'
|
|
32
|
+
_MONGODCONFIG_NETWORK_COMPRESSION.fields_by_name['compressors']._options = None
|
|
33
|
+
_MONGODCONFIG_NETWORK_COMPRESSION.fields_by_name['compressors']._serialized_options = b'\202\3101\0031-3'
|
|
34
|
+
_MONGODCONFIG_NETWORK.fields_by_name['max_incoming_connections']._options = None
|
|
35
|
+
_MONGODCONFIG_NETWORK.fields_by_name['max_incoming_connections']._serialized_options = b'\372\3071\01010-16384'
|
|
36
|
+
_MONGODCONFIG_SETPARAMETER.fields_by_name['min_snapshot_history_window_in_seconds']._options = None
|
|
37
|
+
_MONGODCONFIG_SETPARAMETER.fields_by_name['min_snapshot_history_window_in_seconds']._serialized_options = b'\372\3071\003>=0'
|
|
38
|
+
_MONGOCFGCONFIG_OPERATIONPROFILING.fields_by_name['slow_op_threshold']._options = None
|
|
39
|
+
_MONGOCFGCONFIG_OPERATIONPROFILING.fields_by_name['slow_op_threshold']._serialized_options = b'\372\3071\002>0'
|
|
40
|
+
_MONGOCFGCONFIG_NETWORK.fields_by_name['max_incoming_connections']._options = None
|
|
41
|
+
_MONGOCFGCONFIG_NETWORK.fields_by_name['max_incoming_connections']._serialized_options = b'\372\3071\01010-16384'
|
|
42
|
+
_MONGOSCONFIG_NETWORK_COMPRESSION.fields_by_name['compressors']._options = None
|
|
43
|
+
_MONGOSCONFIG_NETWORK_COMPRESSION.fields_by_name['compressors']._serialized_options = b'\202\3101\0031-3'
|
|
44
|
+
_MONGOSCONFIG_NETWORK.fields_by_name['max_incoming_connections']._options = None
|
|
45
|
+
_MONGOSCONFIG_NETWORK.fields_by_name['max_incoming_connections']._serialized_options = b'\372\3071\01010-16384'
|
|
46
|
+
_globals['_MONGODCONFIG']._serialized_start=152
|
|
47
|
+
_globals['_MONGODCONFIG']._serialized_end=2917
|
|
48
|
+
_globals['_MONGODCONFIG_STORAGE']._serialized_start=654
|
|
49
|
+
_globals['_MONGODCONFIG_STORAGE']._serialized_end=1616
|
|
50
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER']._serialized_start=839
|
|
51
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER']._serialized_end=1540
|
|
52
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_ENGINECONFIG']._serialized_start=1174
|
|
53
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_ENGINECONFIG']._serialized_end=1241
|
|
54
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_COLLECTIONCONFIG']._serialized_start=1244
|
|
55
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_COLLECTIONCONFIG']._serialized_end=1469
|
|
56
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_COLLECTIONCONFIG_COMPRESSOR']._serialized_start=1387
|
|
57
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_COLLECTIONCONFIG_COMPRESSOR']._serialized_end=1469
|
|
58
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_INDEXCONFIG']._serialized_start=1471
|
|
59
|
+
_globals['_MONGODCONFIG_STORAGE_WIREDTIGER_INDEXCONFIG']._serialized_end=1540
|
|
60
|
+
_globals['_MONGODCONFIG_STORAGE_JOURNAL']._serialized_start=1542
|
|
61
|
+
_globals['_MONGODCONFIG_STORAGE_JOURNAL']._serialized_end=1616
|
|
62
|
+
_globals['_MONGODCONFIG_OPERATIONPROFILING']._serialized_start=1619
|
|
63
|
+
_globals['_MONGODCONFIG_OPERATIONPROFILING']._serialized_end=1920
|
|
64
|
+
_globals['_MONGODCONFIG_OPERATIONPROFILING_MODE']._serialized_start=1861
|
|
65
|
+
_globals['_MONGODCONFIG_OPERATIONPROFILING_MODE']._serialized_end=1920
|
|
66
|
+
_globals['_MONGODCONFIG_NETWORK']._serialized_start=1923
|
|
67
|
+
_globals['_MONGODCONFIG_NETWORK']._serialized_end=2315
|
|
68
|
+
_globals['_MONGODCONFIG_NETWORK_COMPRESSION']._serialized_start=2103
|
|
69
|
+
_globals['_MONGODCONFIG_NETWORK_COMPRESSION']._serialized_end=2315
|
|
70
|
+
_globals['_MONGODCONFIG_NETWORK_COMPRESSION_COMPRESSOR']._serialized_start=2229
|
|
71
|
+
_globals['_MONGODCONFIG_NETWORK_COMPRESSION_COMPRESSOR']._serialized_end=2315
|
|
72
|
+
_globals['_MONGODCONFIG_SECURITY']._serialized_start=2318
|
|
73
|
+
_globals['_MONGODCONFIG_SECURITY']._serialized_end=2605
|
|
74
|
+
_globals['_MONGODCONFIG_SECURITY_KMIP']._serialized_start=2464
|
|
75
|
+
_globals['_MONGODCONFIG_SECURITY_KMIP']._serialized_end=2605
|
|
76
|
+
_globals['_MONGODCONFIG_AUDITLOG']._serialized_start=2607
|
|
77
|
+
_globals['_MONGODCONFIG_AUDITLOG']._serialized_end=2692
|
|
78
|
+
_globals['_MONGODCONFIG_SETPARAMETER']._serialized_start=2695
|
|
79
|
+
_globals['_MONGODCONFIG_SETPARAMETER']._serialized_end=2917
|
|
80
|
+
_globals['_MONGOCFGCONFIG']._serialized_start=2920
|
|
81
|
+
_globals['_MONGOCFGCONFIG']._serialized_end=3807
|
|
82
|
+
_globals['_MONGOCFGCONFIG_STORAGE']._serialized_start=3189
|
|
83
|
+
_globals['_MONGOCFGCONFIG_STORAGE']._serialized_end=3481
|
|
84
|
+
_globals['_MONGOCFGCONFIG_STORAGE_WIREDTIGER']._serialized_start=3293
|
|
85
|
+
_globals['_MONGOCFGCONFIG_STORAGE_WIREDTIGER']._serialized_end=3481
|
|
86
|
+
_globals['_MONGOCFGCONFIG_STORAGE_WIREDTIGER_ENGINECONFIG']._serialized_start=1174
|
|
87
|
+
_globals['_MONGOCFGCONFIG_STORAGE_WIREDTIGER_ENGINECONFIG']._serialized_end=1241
|
|
88
|
+
_globals['_MONGOCFGCONFIG_OPERATIONPROFILING']._serialized_start=3484
|
|
89
|
+
_globals['_MONGOCFGCONFIG_OPERATIONPROFILING']._serialized_end=3719
|
|
90
|
+
_globals['_MONGOCFGCONFIG_OPERATIONPROFILING_MODE']._serialized_start=1861
|
|
91
|
+
_globals['_MONGOCFGCONFIG_OPERATIONPROFILING_MODE']._serialized_end=1920
|
|
92
|
+
_globals['_MONGOCFGCONFIG_NETWORK']._serialized_start=1923
|
|
93
|
+
_globals['_MONGOCFGCONFIG_NETWORK']._serialized_end=2009
|
|
94
|
+
_globals['_MONGOSCONFIG']._serialized_start=3810
|
|
95
|
+
_globals['_MONGOSCONFIG']._serialized_end=4290
|
|
96
|
+
_globals['_MONGOSCONFIG_NETWORK']._serialized_start=3898
|
|
97
|
+
_globals['_MONGOSCONFIG_NETWORK']._serialized_end=4290
|
|
98
|
+
_globals['_MONGOSCONFIG_NETWORK_COMPRESSION']._serialized_start=4078
|
|
99
|
+
_globals['_MONGOSCONFIG_NETWORK_COMPRESSION']._serialized_end=4290
|
|
100
|
+
_globals['_MONGOSCONFIG_NETWORK_COMPRESSION_COMPRESSOR']._serialized_start=2229
|
|
101
|
+
_globals['_MONGOSCONFIG_NETWORK_COMPRESSION_COMPRESSOR']._serialized_end=2315
|
|
102
|
+
_globals['_MONGODCONFIGSET']._serialized_start=4293
|
|
103
|
+
_globals['_MONGODCONFIGSET']._serialized_end=4531
|
|
104
|
+
_globals['_MONGOCFGCONFIGSET']._serialized_start=4534
|
|
105
|
+
_globals['_MONGOCFGCONFIGSET']._serialized_end=4780
|
|
106
|
+
_globals['_MONGOSCONFIGSET']._serialized_start=4783
|
|
107
|
+
_globals['_MONGOSCONFIGSET']._serialized_end=5021
|
|
108
|
+
# @@protoc_insertion_point(module_scope)
|