yandexcloud 0.296.0__py3-none-any.whl → 0.298.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/datasphere/v2/community_pb2.py +4 -4
- yandex/cloud/datasphere/v2/community_pb2.pyi +5 -1
- yandex/cloud/datasphere/v2/community_service_pb2.py +38 -36
- yandex/cloud/datasphere/v2/community_service_pb2.pyi +5 -1
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2.py +56 -56
- yandex/cloud/mdb/greenplum/v1/cluster_service_pb2.pyi +13 -1
- yandex/cloud/mdb/mongodb/v1/cluster_pb2.py +138 -131
- yandex/cloud/mdb/mongodb/v1/cluster_pb2.pyi +319 -72
- yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.py +93 -93
- yandex/cloud/mdb/mongodb/v1/cluster_service_pb2.pyi +288 -72
- yandex/cloud/mdb/redis/v1/cluster_pb2.py +42 -35
- yandex/cloud/mdb/redis/v1/cluster_pb2.pyi +39 -2
- yandex/cloud/mdb/redis/v1/cluster_service_pb2.py +114 -114
- yandex/cloud/mdb/redis/v1/cluster_service_pb2.pyi +24 -6
- yandexcloud/_sdk.py +1 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/METADATA +1 -1
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/RECORD +21 -21
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/AUTHORS +0 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/LICENSE +0 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/WHEEL +0 -0
- {yandexcloud-0.296.0.dist-info → yandexcloud-0.298.0.dist-info}/top_level.txt +0 -0
|
@@ -387,6 +387,7 @@ class Mongodb3_6(google.protobuf.message.Message):
|
|
|
387
387
|
|
|
388
388
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
389
389
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
390
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
390
391
|
@property
|
|
391
392
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongodConfigSet3_6:
|
|
392
393
|
"""Configuration for a mongod 3.6 hosts."""
|
|
@@ -395,14 +396,19 @@ class Mongodb3_6(google.protobuf.message.Message):
|
|
|
395
396
|
def resources(self) -> global___Resources:
|
|
396
397
|
"""Resources allocated to MongoDB hosts."""
|
|
397
398
|
|
|
399
|
+
@property
|
|
400
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
401
|
+
"""Disk size autoscaling settings"""
|
|
402
|
+
|
|
398
403
|
def __init__(
|
|
399
404
|
self,
|
|
400
405
|
*,
|
|
401
406
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongodConfigSet3_6 | None = ...,
|
|
402
407
|
resources: global___Resources | None = ...,
|
|
408
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
403
409
|
) -> None: ...
|
|
404
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
405
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
410
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
411
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
406
412
|
|
|
407
413
|
@typing.final
|
|
408
414
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -410,20 +416,26 @@ class Mongodb3_6(google.protobuf.message.Message):
|
|
|
410
416
|
|
|
411
417
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
412
418
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
419
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
413
420
|
@property
|
|
414
421
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongoCfgConfigSet3_6: ...
|
|
415
422
|
@property
|
|
416
423
|
def resources(self) -> global___Resources:
|
|
417
424
|
"""Resources allocated to mongocfg hosts."""
|
|
418
425
|
|
|
426
|
+
@property
|
|
427
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
428
|
+
"""Disk size autoscaling settings"""
|
|
429
|
+
|
|
419
430
|
def __init__(
|
|
420
431
|
self,
|
|
421
432
|
*,
|
|
422
433
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongoCfgConfigSet3_6 | None = ...,
|
|
423
434
|
resources: global___Resources | None = ...,
|
|
435
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
424
436
|
) -> None: ...
|
|
425
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
426
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
437
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
438
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
427
439
|
|
|
428
440
|
@typing.final
|
|
429
441
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -431,20 +443,26 @@ class Mongodb3_6(google.protobuf.message.Message):
|
|
|
431
443
|
|
|
432
444
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
433
445
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
446
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
434
447
|
@property
|
|
435
448
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongosConfigSet3_6: ...
|
|
436
449
|
@property
|
|
437
450
|
def resources(self) -> global___Resources:
|
|
438
451
|
"""Resources allocated to mongos hosts."""
|
|
439
452
|
|
|
453
|
+
@property
|
|
454
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
455
|
+
"""Disk size autoscaling settings"""
|
|
456
|
+
|
|
440
457
|
def __init__(
|
|
441
458
|
self,
|
|
442
459
|
*,
|
|
443
460
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongosConfigSet3_6 | None = ...,
|
|
444
461
|
resources: global___Resources | None = ...,
|
|
462
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
445
463
|
) -> None: ...
|
|
446
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
447
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
464
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
465
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
448
466
|
|
|
449
467
|
@typing.final
|
|
450
468
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -453,6 +471,7 @@ class Mongodb3_6(google.protobuf.message.Message):
|
|
|
453
471
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
454
472
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
455
473
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
474
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
456
475
|
@property
|
|
457
476
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongosConfigSet3_6: ...
|
|
458
477
|
@property
|
|
@@ -461,15 +480,20 @@ class Mongodb3_6(google.protobuf.message.Message):
|
|
|
461
480
|
def resources(self) -> global___Resources:
|
|
462
481
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
463
482
|
|
|
483
|
+
@property
|
|
484
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
485
|
+
"""Disk size autoscaling settings"""
|
|
486
|
+
|
|
464
487
|
def __init__(
|
|
465
488
|
self,
|
|
466
489
|
*,
|
|
467
490
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongosConfigSet3_6 | None = ...,
|
|
468
491
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb3_6_pb2.MongoCfgConfigSet3_6 | None = ...,
|
|
469
492
|
resources: global___Resources | None = ...,
|
|
493
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
470
494
|
) -> None: ...
|
|
471
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
472
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
495
|
+
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: ...
|
|
496
|
+
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: ...
|
|
473
497
|
|
|
474
498
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
475
499
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -514,6 +538,7 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
514
538
|
|
|
515
539
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
516
540
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
541
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
517
542
|
@property
|
|
518
543
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongodConfigSet4_0:
|
|
519
544
|
"""Configuration for mongod 4.0 hosts."""
|
|
@@ -522,14 +547,19 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
522
547
|
def resources(self) -> global___Resources:
|
|
523
548
|
"""Resources allocated to mongod hosts."""
|
|
524
549
|
|
|
550
|
+
@property
|
|
551
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
552
|
+
"""Disk size autoscaling settings"""
|
|
553
|
+
|
|
525
554
|
def __init__(
|
|
526
555
|
self,
|
|
527
556
|
*,
|
|
528
557
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongodConfigSet4_0 | None = ...,
|
|
529
558
|
resources: global___Resources | None = ...,
|
|
559
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
530
560
|
) -> None: ...
|
|
531
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
532
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
561
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
562
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
533
563
|
|
|
534
564
|
@typing.final
|
|
535
565
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -537,6 +567,7 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
537
567
|
|
|
538
568
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
539
569
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
570
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
540
571
|
@property
|
|
541
572
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongoCfgConfigSet4_0:
|
|
542
573
|
"""Configuration for mongocfg 4.0 hosts."""
|
|
@@ -545,14 +576,19 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
545
576
|
def resources(self) -> global___Resources:
|
|
546
577
|
"""Resources allocated to mongocfg hosts."""
|
|
547
578
|
|
|
579
|
+
@property
|
|
580
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
581
|
+
"""Disk size autoscaling settings"""
|
|
582
|
+
|
|
548
583
|
def __init__(
|
|
549
584
|
self,
|
|
550
585
|
*,
|
|
551
586
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongoCfgConfigSet4_0 | None = ...,
|
|
552
587
|
resources: global___Resources | None = ...,
|
|
588
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
553
589
|
) -> None: ...
|
|
554
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
555
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
590
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
591
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
556
592
|
|
|
557
593
|
@typing.final
|
|
558
594
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -560,6 +596,7 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
560
596
|
|
|
561
597
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
562
598
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
599
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
563
600
|
@property
|
|
564
601
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongosConfigSet4_0:
|
|
565
602
|
"""Configuration for mongos 4.0 hosts."""
|
|
@@ -568,14 +605,19 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
568
605
|
def resources(self) -> global___Resources:
|
|
569
606
|
"""Resources allocated to mongos hosts."""
|
|
570
607
|
|
|
608
|
+
@property
|
|
609
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
610
|
+
"""Disk size autoscaling settings"""
|
|
611
|
+
|
|
571
612
|
def __init__(
|
|
572
613
|
self,
|
|
573
614
|
*,
|
|
574
615
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongosConfigSet4_0 | None = ...,
|
|
575
616
|
resources: global___Resources | None = ...,
|
|
617
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
576
618
|
) -> None: ...
|
|
577
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
578
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
619
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
620
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
579
621
|
|
|
580
622
|
@typing.final
|
|
581
623
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -584,6 +626,7 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
584
626
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
585
627
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
586
628
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
629
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
587
630
|
@property
|
|
588
631
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongosConfigSet4_0: ...
|
|
589
632
|
@property
|
|
@@ -592,15 +635,20 @@ class Mongodb4_0(google.protobuf.message.Message):
|
|
|
592
635
|
def resources(self) -> global___Resources:
|
|
593
636
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
594
637
|
|
|
638
|
+
@property
|
|
639
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
640
|
+
"""Disk size autoscaling settings"""
|
|
641
|
+
|
|
595
642
|
def __init__(
|
|
596
643
|
self,
|
|
597
644
|
*,
|
|
598
645
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongosConfigSet4_0 | None = ...,
|
|
599
646
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb4_0_pb2.MongoCfgConfigSet4_0 | None = ...,
|
|
600
647
|
resources: global___Resources | None = ...,
|
|
648
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
601
649
|
) -> None: ...
|
|
602
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
603
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
650
|
+
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: ...
|
|
651
|
+
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: ...
|
|
604
652
|
|
|
605
653
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
606
654
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -645,6 +693,7 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
645
693
|
|
|
646
694
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
647
695
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
696
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
648
697
|
@property
|
|
649
698
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongodConfigSet4_2:
|
|
650
699
|
"""Configuration for mongod 4.2 hosts."""
|
|
@@ -653,14 +702,19 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
653
702
|
def resources(self) -> global___Resources:
|
|
654
703
|
"""Resources allocated to mongod hosts."""
|
|
655
704
|
|
|
705
|
+
@property
|
|
706
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
707
|
+
"""Disk size autoscaling settings"""
|
|
708
|
+
|
|
656
709
|
def __init__(
|
|
657
710
|
self,
|
|
658
711
|
*,
|
|
659
712
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongodConfigSet4_2 | None = ...,
|
|
660
713
|
resources: global___Resources | None = ...,
|
|
714
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
661
715
|
) -> None: ...
|
|
662
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
663
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
716
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
717
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
664
718
|
|
|
665
719
|
@typing.final
|
|
666
720
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -668,6 +722,7 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
668
722
|
|
|
669
723
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
670
724
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
725
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
671
726
|
@property
|
|
672
727
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongoCfgConfigSet4_2:
|
|
673
728
|
"""Configuration for mongocfg 4.2 hosts."""
|
|
@@ -676,14 +731,19 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
676
731
|
def resources(self) -> global___Resources:
|
|
677
732
|
"""Resources allocated to mongocfg hosts."""
|
|
678
733
|
|
|
734
|
+
@property
|
|
735
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
736
|
+
"""Disk size autoscaling settings"""
|
|
737
|
+
|
|
679
738
|
def __init__(
|
|
680
739
|
self,
|
|
681
740
|
*,
|
|
682
741
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongoCfgConfigSet4_2 | None = ...,
|
|
683
742
|
resources: global___Resources | None = ...,
|
|
743
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
684
744
|
) -> None: ...
|
|
685
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
686
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
745
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
746
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
687
747
|
|
|
688
748
|
@typing.final
|
|
689
749
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -691,6 +751,7 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
691
751
|
|
|
692
752
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
693
753
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
754
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
694
755
|
@property
|
|
695
756
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongosConfigSet4_2:
|
|
696
757
|
"""Configuration for mongos 4.2 hosts."""
|
|
@@ -699,14 +760,19 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
699
760
|
def resources(self) -> global___Resources:
|
|
700
761
|
"""Resources allocated to mongos hosts."""
|
|
701
762
|
|
|
763
|
+
@property
|
|
764
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
765
|
+
"""Disk size autoscaling settings"""
|
|
766
|
+
|
|
702
767
|
def __init__(
|
|
703
768
|
self,
|
|
704
769
|
*,
|
|
705
770
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongosConfigSet4_2 | None = ...,
|
|
706
771
|
resources: global___Resources | None = ...,
|
|
772
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
707
773
|
) -> None: ...
|
|
708
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
709
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
774
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
775
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
710
776
|
|
|
711
777
|
@typing.final
|
|
712
778
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -715,6 +781,7 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
715
781
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
716
782
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
717
783
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
784
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
718
785
|
@property
|
|
719
786
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongosConfigSet4_2: ...
|
|
720
787
|
@property
|
|
@@ -723,15 +790,20 @@ class Mongodb4_2(google.protobuf.message.Message):
|
|
|
723
790
|
def resources(self) -> global___Resources:
|
|
724
791
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
725
792
|
|
|
793
|
+
@property
|
|
794
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
795
|
+
"""Disk size autoscaling settings"""
|
|
796
|
+
|
|
726
797
|
def __init__(
|
|
727
798
|
self,
|
|
728
799
|
*,
|
|
729
800
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongosConfigSet4_2 | None = ...,
|
|
730
801
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb4_2_pb2.MongoCfgConfigSet4_2 | None = ...,
|
|
731
802
|
resources: global___Resources | None = ...,
|
|
803
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
732
804
|
) -> None: ...
|
|
733
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
734
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
805
|
+
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: ...
|
|
806
|
+
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: ...
|
|
735
807
|
|
|
736
808
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
737
809
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -776,6 +848,7 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
776
848
|
|
|
777
849
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
778
850
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
851
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
779
852
|
@property
|
|
780
853
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongodConfigSet4_4:
|
|
781
854
|
"""Configuration for mongod 4.4 hosts."""
|
|
@@ -784,14 +857,19 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
784
857
|
def resources(self) -> global___Resources:
|
|
785
858
|
"""Resources allocated to mongod hosts."""
|
|
786
859
|
|
|
860
|
+
@property
|
|
861
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
862
|
+
"""Disk size autoscaling settings"""
|
|
863
|
+
|
|
787
864
|
def __init__(
|
|
788
865
|
self,
|
|
789
866
|
*,
|
|
790
867
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongodConfigSet4_4 | None = ...,
|
|
791
868
|
resources: global___Resources | None = ...,
|
|
869
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
792
870
|
) -> None: ...
|
|
793
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
794
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
871
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
872
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
795
873
|
|
|
796
874
|
@typing.final
|
|
797
875
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -799,6 +877,7 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
799
877
|
|
|
800
878
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
801
879
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
880
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
802
881
|
@property
|
|
803
882
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongoCfgConfigSet4_4:
|
|
804
883
|
"""Configuration for mongocfg 4.4 hosts."""
|
|
@@ -807,14 +886,19 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
807
886
|
def resources(self) -> global___Resources:
|
|
808
887
|
"""Resources allocated to mongocfg hosts."""
|
|
809
888
|
|
|
889
|
+
@property
|
|
890
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
891
|
+
"""Disk size autoscaling settings"""
|
|
892
|
+
|
|
810
893
|
def __init__(
|
|
811
894
|
self,
|
|
812
895
|
*,
|
|
813
896
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongoCfgConfigSet4_4 | None = ...,
|
|
814
897
|
resources: global___Resources | None = ...,
|
|
898
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
815
899
|
) -> None: ...
|
|
816
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
817
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
900
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
901
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
818
902
|
|
|
819
903
|
@typing.final
|
|
820
904
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -822,6 +906,7 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
822
906
|
|
|
823
907
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
824
908
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
909
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
825
910
|
@property
|
|
826
911
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongosConfigSet4_4:
|
|
827
912
|
"""Configuration for mongos 4.4 hosts."""
|
|
@@ -830,14 +915,19 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
830
915
|
def resources(self) -> global___Resources:
|
|
831
916
|
"""Resources allocated to mongos hosts."""
|
|
832
917
|
|
|
918
|
+
@property
|
|
919
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
920
|
+
"""Disk size autoscaling settings"""
|
|
921
|
+
|
|
833
922
|
def __init__(
|
|
834
923
|
self,
|
|
835
924
|
*,
|
|
836
925
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongosConfigSet4_4 | None = ...,
|
|
837
926
|
resources: global___Resources | None = ...,
|
|
927
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
838
928
|
) -> None: ...
|
|
839
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
840
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
929
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
930
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
841
931
|
|
|
842
932
|
@typing.final
|
|
843
933
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -846,6 +936,7 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
846
936
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
847
937
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
848
938
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
939
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
849
940
|
@property
|
|
850
941
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongosConfigSet4_4: ...
|
|
851
942
|
@property
|
|
@@ -854,15 +945,20 @@ class Mongodb4_4(google.protobuf.message.Message):
|
|
|
854
945
|
def resources(self) -> global___Resources:
|
|
855
946
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
856
947
|
|
|
948
|
+
@property
|
|
949
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
950
|
+
"""Disk size autoscaling settings"""
|
|
951
|
+
|
|
857
952
|
def __init__(
|
|
858
953
|
self,
|
|
859
954
|
*,
|
|
860
955
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongosConfigSet4_4 | None = ...,
|
|
861
956
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_pb2.MongoCfgConfigSet4_4 | None = ...,
|
|
862
957
|
resources: global___Resources | None = ...,
|
|
958
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
863
959
|
) -> None: ...
|
|
864
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
865
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
960
|
+
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: ...
|
|
961
|
+
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: ...
|
|
866
962
|
|
|
867
963
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
868
964
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -907,6 +1003,7 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
907
1003
|
|
|
908
1004
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
909
1005
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1006
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
910
1007
|
@property
|
|
911
1008
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongodConfigSet4_4_enterprise:
|
|
912
1009
|
"""Configuration for mongod 4.4 hosts."""
|
|
@@ -915,14 +1012,19 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
915
1012
|
def resources(self) -> global___Resources:
|
|
916
1013
|
"""Resources allocated to mongod hosts."""
|
|
917
1014
|
|
|
1015
|
+
@property
|
|
1016
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1017
|
+
"""Disk size autoscaling settings"""
|
|
1018
|
+
|
|
918
1019
|
def __init__(
|
|
919
1020
|
self,
|
|
920
1021
|
*,
|
|
921
1022
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongodConfigSet4_4_enterprise | None = ...,
|
|
922
1023
|
resources: global___Resources | None = ...,
|
|
1024
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
923
1025
|
) -> None: ...
|
|
924
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
925
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1026
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1027
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
926
1028
|
|
|
927
1029
|
@typing.final
|
|
928
1030
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -930,6 +1032,7 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
930
1032
|
|
|
931
1033
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
932
1034
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1035
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
933
1036
|
@property
|
|
934
1037
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongoCfgConfigSet4_4_enterprise:
|
|
935
1038
|
"""Configuration for mongocfg 4.4 hosts."""
|
|
@@ -938,14 +1041,19 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
938
1041
|
def resources(self) -> global___Resources:
|
|
939
1042
|
"""Resources allocated to mongocfg hosts."""
|
|
940
1043
|
|
|
1044
|
+
@property
|
|
1045
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1046
|
+
"""Disk size autoscaling settings"""
|
|
1047
|
+
|
|
941
1048
|
def __init__(
|
|
942
1049
|
self,
|
|
943
1050
|
*,
|
|
944
1051
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongoCfgConfigSet4_4_enterprise | None = ...,
|
|
945
1052
|
resources: global___Resources | None = ...,
|
|
1053
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
946
1054
|
) -> None: ...
|
|
947
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
948
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1055
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1056
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
949
1057
|
|
|
950
1058
|
@typing.final
|
|
951
1059
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -953,6 +1061,7 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
953
1061
|
|
|
954
1062
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
955
1063
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1064
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
956
1065
|
@property
|
|
957
1066
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongosConfigSet4_4_enterprise:
|
|
958
1067
|
"""Configuration for mongos 4.4 hosts."""
|
|
@@ -961,14 +1070,19 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
961
1070
|
def resources(self) -> global___Resources:
|
|
962
1071
|
"""Resources allocated to mongos hosts."""
|
|
963
1072
|
|
|
1073
|
+
@property
|
|
1074
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1075
|
+
"""Disk size autoscaling settings"""
|
|
1076
|
+
|
|
964
1077
|
def __init__(
|
|
965
1078
|
self,
|
|
966
1079
|
*,
|
|
967
1080
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongosConfigSet4_4_enterprise | None = ...,
|
|
968
1081
|
resources: global___Resources | None = ...,
|
|
1082
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
969
1083
|
) -> None: ...
|
|
970
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
971
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1084
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1085
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
972
1086
|
|
|
973
1087
|
@typing.final
|
|
974
1088
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -977,6 +1091,7 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
977
1091
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
978
1092
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
979
1093
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1094
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
980
1095
|
@property
|
|
981
1096
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongosConfigSet4_4_enterprise: ...
|
|
982
1097
|
@property
|
|
@@ -985,15 +1100,20 @@ class Mongodb4_4_enterprise(google.protobuf.message.Message):
|
|
|
985
1100
|
def resources(self) -> global___Resources:
|
|
986
1101
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
987
1102
|
|
|
1103
|
+
@property
|
|
1104
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1105
|
+
"""Disk size autoscaling settings"""
|
|
1106
|
+
|
|
988
1107
|
def __init__(
|
|
989
1108
|
self,
|
|
990
1109
|
*,
|
|
991
1110
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongosConfigSet4_4_enterprise | None = ...,
|
|
992
1111
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb4_4_enterprise_pb2.MongoCfgConfigSet4_4_enterprise | None = ...,
|
|
993
1112
|
resources: global___Resources | None = ...,
|
|
1113
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
994
1114
|
) -> None: ...
|
|
995
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
996
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
1115
|
+
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: ...
|
|
1116
|
+
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: ...
|
|
997
1117
|
|
|
998
1118
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
999
1119
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -1038,6 +1158,7 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1038
1158
|
|
|
1039
1159
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1040
1160
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1161
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1041
1162
|
@property
|
|
1042
1163
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongodConfigSet5_0:
|
|
1043
1164
|
"""Configuration for mongod 5.0 hosts."""
|
|
@@ -1046,14 +1167,19 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1046
1167
|
def resources(self) -> global___Resources:
|
|
1047
1168
|
"""Resources allocated to mongod hosts."""
|
|
1048
1169
|
|
|
1170
|
+
@property
|
|
1171
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1172
|
+
"""Disk size autoscaling settings"""
|
|
1173
|
+
|
|
1049
1174
|
def __init__(
|
|
1050
1175
|
self,
|
|
1051
1176
|
*,
|
|
1052
1177
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongodConfigSet5_0 | None = ...,
|
|
1053
1178
|
resources: global___Resources | None = ...,
|
|
1179
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1054
1180
|
) -> None: ...
|
|
1055
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1056
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1181
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1182
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1057
1183
|
|
|
1058
1184
|
@typing.final
|
|
1059
1185
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -1061,6 +1187,7 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1061
1187
|
|
|
1062
1188
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1063
1189
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1190
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1064
1191
|
@property
|
|
1065
1192
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongoCfgConfigSet5_0:
|
|
1066
1193
|
"""Configuration for mongocfg 5.0 hosts."""
|
|
@@ -1069,14 +1196,19 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1069
1196
|
def resources(self) -> global___Resources:
|
|
1070
1197
|
"""Resources allocated to mongocfg hosts."""
|
|
1071
1198
|
|
|
1199
|
+
@property
|
|
1200
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1201
|
+
"""Disk size autoscaling settings"""
|
|
1202
|
+
|
|
1072
1203
|
def __init__(
|
|
1073
1204
|
self,
|
|
1074
1205
|
*,
|
|
1075
1206
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongoCfgConfigSet5_0 | None = ...,
|
|
1076
1207
|
resources: global___Resources | None = ...,
|
|
1208
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1077
1209
|
) -> None: ...
|
|
1078
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1079
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1210
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1211
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1080
1212
|
|
|
1081
1213
|
@typing.final
|
|
1082
1214
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -1084,6 +1216,7 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1084
1216
|
|
|
1085
1217
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1086
1218
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1219
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1087
1220
|
@property
|
|
1088
1221
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongosConfigSet5_0:
|
|
1089
1222
|
"""Configuration for mongos 5.0 hosts."""
|
|
@@ -1092,14 +1225,19 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1092
1225
|
def resources(self) -> global___Resources:
|
|
1093
1226
|
"""Resources allocated to mongos hosts."""
|
|
1094
1227
|
|
|
1228
|
+
@property
|
|
1229
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1230
|
+
"""Disk size autoscaling settings"""
|
|
1231
|
+
|
|
1095
1232
|
def __init__(
|
|
1096
1233
|
self,
|
|
1097
1234
|
*,
|
|
1098
1235
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongosConfigSet5_0 | None = ...,
|
|
1099
1236
|
resources: global___Resources | None = ...,
|
|
1237
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1100
1238
|
) -> None: ...
|
|
1101
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1102
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1239
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1240
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1103
1241
|
|
|
1104
1242
|
@typing.final
|
|
1105
1243
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -1108,6 +1246,7 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1108
1246
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
1109
1247
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
1110
1248
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1249
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1111
1250
|
@property
|
|
1112
1251
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongosConfigSet5_0: ...
|
|
1113
1252
|
@property
|
|
@@ -1116,15 +1255,20 @@ class Mongodb5_0(google.protobuf.message.Message):
|
|
|
1116
1255
|
def resources(self) -> global___Resources:
|
|
1117
1256
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
1118
1257
|
|
|
1258
|
+
@property
|
|
1259
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1260
|
+
"""Disk size autoscaling settings"""
|
|
1261
|
+
|
|
1119
1262
|
def __init__(
|
|
1120
1263
|
self,
|
|
1121
1264
|
*,
|
|
1122
1265
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongosConfigSet5_0 | None = ...,
|
|
1123
1266
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_pb2.MongoCfgConfigSet5_0 | None = ...,
|
|
1124
1267
|
resources: global___Resources | None = ...,
|
|
1268
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1125
1269
|
) -> None: ...
|
|
1126
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
1127
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
1270
|
+
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: ...
|
|
1271
|
+
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: ...
|
|
1128
1272
|
|
|
1129
1273
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
1130
1274
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -1169,6 +1313,7 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1169
1313
|
|
|
1170
1314
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1171
1315
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1316
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1172
1317
|
@property
|
|
1173
1318
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongodConfigSet5_0_enterprise:
|
|
1174
1319
|
"""Configuration for mongod 5.0 hosts."""
|
|
@@ -1177,14 +1322,19 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1177
1322
|
def resources(self) -> global___Resources:
|
|
1178
1323
|
"""Resources allocated to mongod hosts."""
|
|
1179
1324
|
|
|
1325
|
+
@property
|
|
1326
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1327
|
+
"""Disk size autoscaling settings"""
|
|
1328
|
+
|
|
1180
1329
|
def __init__(
|
|
1181
1330
|
self,
|
|
1182
1331
|
*,
|
|
1183
1332
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongodConfigSet5_0_enterprise | None = ...,
|
|
1184
1333
|
resources: global___Resources | None = ...,
|
|
1334
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1185
1335
|
) -> None: ...
|
|
1186
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1187
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1336
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1337
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1188
1338
|
|
|
1189
1339
|
@typing.final
|
|
1190
1340
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -1192,6 +1342,7 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1192
1342
|
|
|
1193
1343
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1194
1344
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1345
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1195
1346
|
@property
|
|
1196
1347
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongoCfgConfigSet5_0_enterprise:
|
|
1197
1348
|
"""Configuration for mongocfg 5.0 hosts."""
|
|
@@ -1200,14 +1351,19 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1200
1351
|
def resources(self) -> global___Resources:
|
|
1201
1352
|
"""Resources allocated to mongocfg hosts."""
|
|
1202
1353
|
|
|
1354
|
+
@property
|
|
1355
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1356
|
+
"""Disk size autoscaling settings"""
|
|
1357
|
+
|
|
1203
1358
|
def __init__(
|
|
1204
1359
|
self,
|
|
1205
1360
|
*,
|
|
1206
1361
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongoCfgConfigSet5_0_enterprise | None = ...,
|
|
1207
1362
|
resources: global___Resources | None = ...,
|
|
1363
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1208
1364
|
) -> None: ...
|
|
1209
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1210
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1365
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1366
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1211
1367
|
|
|
1212
1368
|
@typing.final
|
|
1213
1369
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -1215,6 +1371,7 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1215
1371
|
|
|
1216
1372
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1217
1373
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1374
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1218
1375
|
@property
|
|
1219
1376
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongosConfigSet5_0_enterprise:
|
|
1220
1377
|
"""Configuration for mongos 5.0 hosts."""
|
|
@@ -1223,14 +1380,19 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1223
1380
|
def resources(self) -> global___Resources:
|
|
1224
1381
|
"""Resources allocated to mongos hosts."""
|
|
1225
1382
|
|
|
1383
|
+
@property
|
|
1384
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1385
|
+
"""Disk size autoscaling settings"""
|
|
1386
|
+
|
|
1226
1387
|
def __init__(
|
|
1227
1388
|
self,
|
|
1228
1389
|
*,
|
|
1229
1390
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongosConfigSet5_0_enterprise | None = ...,
|
|
1230
1391
|
resources: global___Resources | None = ...,
|
|
1392
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1231
1393
|
) -> None: ...
|
|
1232
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1233
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1394
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1395
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1234
1396
|
|
|
1235
1397
|
@typing.final
|
|
1236
1398
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -1239,6 +1401,7 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1239
1401
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
1240
1402
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
1241
1403
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1404
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1242
1405
|
@property
|
|
1243
1406
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongosConfigSet5_0_enterprise: ...
|
|
1244
1407
|
@property
|
|
@@ -1247,15 +1410,20 @@ class Mongodb5_0_enterprise(google.protobuf.message.Message):
|
|
|
1247
1410
|
def resources(self) -> global___Resources:
|
|
1248
1411
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
1249
1412
|
|
|
1413
|
+
@property
|
|
1414
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1415
|
+
"""Disk size autoscaling settings"""
|
|
1416
|
+
|
|
1250
1417
|
def __init__(
|
|
1251
1418
|
self,
|
|
1252
1419
|
*,
|
|
1253
1420
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongosConfigSet5_0_enterprise | None = ...,
|
|
1254
1421
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb5_0_enterprise_pb2.MongoCfgConfigSet5_0_enterprise | None = ...,
|
|
1255
1422
|
resources: global___Resources | None = ...,
|
|
1423
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1256
1424
|
) -> None: ...
|
|
1257
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
1258
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
1425
|
+
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: ...
|
|
1426
|
+
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: ...
|
|
1259
1427
|
|
|
1260
1428
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
1261
1429
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -1300,6 +1468,7 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1300
1468
|
|
|
1301
1469
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1302
1470
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1471
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1303
1472
|
@property
|
|
1304
1473
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongodConfigSet6_0:
|
|
1305
1474
|
"""Configuration for mongod 6.0 hosts."""
|
|
@@ -1308,14 +1477,19 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1308
1477
|
def resources(self) -> global___Resources:
|
|
1309
1478
|
"""Resources allocated to mongod hosts."""
|
|
1310
1479
|
|
|
1480
|
+
@property
|
|
1481
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1482
|
+
"""Disk size autoscaling settings"""
|
|
1483
|
+
|
|
1311
1484
|
def __init__(
|
|
1312
1485
|
self,
|
|
1313
1486
|
*,
|
|
1314
1487
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongodConfigSet6_0 | None = ...,
|
|
1315
1488
|
resources: global___Resources | None = ...,
|
|
1489
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1316
1490
|
) -> None: ...
|
|
1317
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1318
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1491
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1492
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1319
1493
|
|
|
1320
1494
|
@typing.final
|
|
1321
1495
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -1323,6 +1497,7 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1323
1497
|
|
|
1324
1498
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1325
1499
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1500
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1326
1501
|
@property
|
|
1327
1502
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongoCfgConfigSet6_0:
|
|
1328
1503
|
"""Configuration for mongocfg 6.0 hosts."""
|
|
@@ -1331,14 +1506,19 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1331
1506
|
def resources(self) -> global___Resources:
|
|
1332
1507
|
"""Resources allocated to mongocfg hosts."""
|
|
1333
1508
|
|
|
1509
|
+
@property
|
|
1510
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1511
|
+
"""Disk size autoscaling settings"""
|
|
1512
|
+
|
|
1334
1513
|
def __init__(
|
|
1335
1514
|
self,
|
|
1336
1515
|
*,
|
|
1337
1516
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongoCfgConfigSet6_0 | None = ...,
|
|
1338
1517
|
resources: global___Resources | None = ...,
|
|
1518
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1339
1519
|
) -> None: ...
|
|
1340
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1341
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1520
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1521
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1342
1522
|
|
|
1343
1523
|
@typing.final
|
|
1344
1524
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -1346,6 +1526,7 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1346
1526
|
|
|
1347
1527
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1348
1528
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1529
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1349
1530
|
@property
|
|
1350
1531
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongosConfigSet6_0:
|
|
1351
1532
|
"""Configuration for mongos 6.0 hosts."""
|
|
@@ -1354,14 +1535,19 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1354
1535
|
def resources(self) -> global___Resources:
|
|
1355
1536
|
"""Resources allocated to mongos hosts."""
|
|
1356
1537
|
|
|
1538
|
+
@property
|
|
1539
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1540
|
+
"""Disk size autoscaling settings"""
|
|
1541
|
+
|
|
1357
1542
|
def __init__(
|
|
1358
1543
|
self,
|
|
1359
1544
|
*,
|
|
1360
1545
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongosConfigSet6_0 | None = ...,
|
|
1361
1546
|
resources: global___Resources | None = ...,
|
|
1547
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1362
1548
|
) -> None: ...
|
|
1363
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1364
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1549
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1550
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1365
1551
|
|
|
1366
1552
|
@typing.final
|
|
1367
1553
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -1370,6 +1556,7 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1370
1556
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
1371
1557
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
1372
1558
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1559
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1373
1560
|
@property
|
|
1374
1561
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongosConfigSet6_0: ...
|
|
1375
1562
|
@property
|
|
@@ -1378,15 +1565,20 @@ class Mongodb6_0(google.protobuf.message.Message):
|
|
|
1378
1565
|
def resources(self) -> global___Resources:
|
|
1379
1566
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
1380
1567
|
|
|
1568
|
+
@property
|
|
1569
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1570
|
+
"""Disk size autoscaling settings"""
|
|
1571
|
+
|
|
1381
1572
|
def __init__(
|
|
1382
1573
|
self,
|
|
1383
1574
|
*,
|
|
1384
1575
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongosConfigSet6_0 | None = ...,
|
|
1385
1576
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_pb2.MongoCfgConfigSet6_0 | None = ...,
|
|
1386
1577
|
resources: global___Resources | None = ...,
|
|
1578
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1387
1579
|
) -> None: ...
|
|
1388
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
1389
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
1580
|
+
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: ...
|
|
1581
|
+
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: ...
|
|
1390
1582
|
|
|
1391
1583
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
1392
1584
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -1431,6 +1623,7 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1431
1623
|
|
|
1432
1624
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1433
1625
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1626
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1434
1627
|
@property
|
|
1435
1628
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongodConfigSet6_0_enterprise:
|
|
1436
1629
|
"""Configuration for mongod 6.0 hosts."""
|
|
@@ -1439,14 +1632,19 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1439
1632
|
def resources(self) -> global___Resources:
|
|
1440
1633
|
"""Resources allocated to mongod hosts."""
|
|
1441
1634
|
|
|
1635
|
+
@property
|
|
1636
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1637
|
+
"""Disk size autoscaling settings"""
|
|
1638
|
+
|
|
1442
1639
|
def __init__(
|
|
1443
1640
|
self,
|
|
1444
1641
|
*,
|
|
1445
1642
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongodConfigSet6_0_enterprise | None = ...,
|
|
1446
1643
|
resources: global___Resources | None = ...,
|
|
1644
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1447
1645
|
) -> None: ...
|
|
1448
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1449
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1646
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1647
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1450
1648
|
|
|
1451
1649
|
@typing.final
|
|
1452
1650
|
class MongoCfg(google.protobuf.message.Message):
|
|
@@ -1454,6 +1652,7 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1454
1652
|
|
|
1455
1653
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1456
1654
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1655
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1457
1656
|
@property
|
|
1458
1657
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongoCfgConfigSet6_0_enterprise:
|
|
1459
1658
|
"""Configuration for mongocfg 6.0 hosts."""
|
|
@@ -1462,14 +1661,19 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1462
1661
|
def resources(self) -> global___Resources:
|
|
1463
1662
|
"""Resources allocated to mongocfg hosts."""
|
|
1464
1663
|
|
|
1664
|
+
@property
|
|
1665
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1666
|
+
"""Disk size autoscaling settings"""
|
|
1667
|
+
|
|
1465
1668
|
def __init__(
|
|
1466
1669
|
self,
|
|
1467
1670
|
*,
|
|
1468
1671
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongoCfgConfigSet6_0_enterprise | None = ...,
|
|
1469
1672
|
resources: global___Resources | None = ...,
|
|
1673
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1470
1674
|
) -> None: ...
|
|
1471
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1472
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1675
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1676
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1473
1677
|
|
|
1474
1678
|
@typing.final
|
|
1475
1679
|
class Mongos(google.protobuf.message.Message):
|
|
@@ -1477,6 +1681,7 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1477
1681
|
|
|
1478
1682
|
CONFIG_FIELD_NUMBER: builtins.int
|
|
1479
1683
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1684
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1480
1685
|
@property
|
|
1481
1686
|
def config(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongosConfigSet6_0_enterprise:
|
|
1482
1687
|
"""Configuration for mongos 6.0 hosts."""
|
|
@@ -1485,14 +1690,19 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1485
1690
|
def resources(self) -> global___Resources:
|
|
1486
1691
|
"""Resources allocated to mongos hosts."""
|
|
1487
1692
|
|
|
1693
|
+
@property
|
|
1694
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1695
|
+
"""Disk size autoscaling settings"""
|
|
1696
|
+
|
|
1488
1697
|
def __init__(
|
|
1489
1698
|
self,
|
|
1490
1699
|
*,
|
|
1491
1700
|
config: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongosConfigSet6_0_enterprise | None = ...,
|
|
1492
1701
|
resources: global___Resources | None = ...,
|
|
1702
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1493
1703
|
) -> None: ...
|
|
1494
|
-
def HasField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> builtins.bool: ...
|
|
1495
|
-
def ClearField(self, field_name: typing.Literal["config", b"config", "resources", b"resources"]) -> None: ...
|
|
1704
|
+
def HasField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> builtins.bool: ...
|
|
1705
|
+
def ClearField(self, field_name: typing.Literal["config", b"config", "disk_size_autoscaling", b"disk_size_autoscaling", "resources", b"resources"]) -> None: ...
|
|
1496
1706
|
|
|
1497
1707
|
@typing.final
|
|
1498
1708
|
class MongoInfra(google.protobuf.message.Message):
|
|
@@ -1501,6 +1711,7 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1501
1711
|
CONFIG_MONGOS_FIELD_NUMBER: builtins.int
|
|
1502
1712
|
CONFIG_MONGOCFG_FIELD_NUMBER: builtins.int
|
|
1503
1713
|
RESOURCES_FIELD_NUMBER: builtins.int
|
|
1714
|
+
DISK_SIZE_AUTOSCALING_FIELD_NUMBER: builtins.int
|
|
1504
1715
|
@property
|
|
1505
1716
|
def config_mongos(self) -> yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongosConfigSet6_0_enterprise: ...
|
|
1506
1717
|
@property
|
|
@@ -1509,15 +1720,20 @@ class Mongodb6_0_enterprise(google.protobuf.message.Message):
|
|
|
1509
1720
|
def resources(self) -> global___Resources:
|
|
1510
1721
|
"""Resources allocated to mongoinfra (mongos+mongocfg) hosts."""
|
|
1511
1722
|
|
|
1723
|
+
@property
|
|
1724
|
+
def disk_size_autoscaling(self) -> global___DiskSizeAutoscaling:
|
|
1725
|
+
"""Disk size autoscaling settings"""
|
|
1726
|
+
|
|
1512
1727
|
def __init__(
|
|
1513
1728
|
self,
|
|
1514
1729
|
*,
|
|
1515
1730
|
config_mongos: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongosConfigSet6_0_enterprise | None = ...,
|
|
1516
1731
|
config_mongocfg: yandex.cloud.mdb.mongodb.v1.config.mongodb6_0_enterprise_pb2.MongoCfgConfigSet6_0_enterprise | None = ...,
|
|
1517
1732
|
resources: global___Resources | None = ...,
|
|
1733
|
+
disk_size_autoscaling: global___DiskSizeAutoscaling | None = ...,
|
|
1518
1734
|
) -> None: ...
|
|
1519
|
-
def HasField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> builtins.bool: ...
|
|
1520
|
-
def ClearField(self, field_name: typing.Literal["config_mongocfg", b"config_mongocfg", "config_mongos", b"config_mongos", "resources", b"resources"]) -> None: ...
|
|
1735
|
+
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: ...
|
|
1736
|
+
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: ...
|
|
1521
1737
|
|
|
1522
1738
|
MONGOD_FIELD_NUMBER: builtins.int
|
|
1523
1739
|
MONGOCFG_FIELD_NUMBER: builtins.int
|
|
@@ -1888,3 +2104,34 @@ class PerformanceDiagnosticsConfig(google.protobuf.message.Message):
|
|
|
1888
2104
|
def ClearField(self, field_name: typing.Literal["profiling_enabled", b"profiling_enabled"]) -> None: ...
|
|
1889
2105
|
|
|
1890
2106
|
global___PerformanceDiagnosticsConfig = PerformanceDiagnosticsConfig
|
|
2107
|
+
|
|
2108
|
+
@typing.final
|
|
2109
|
+
class DiskSizeAutoscaling(google.protobuf.message.Message):
|
|
2110
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
2111
|
+
|
|
2112
|
+
PLANNED_USAGE_THRESHOLD_FIELD_NUMBER: builtins.int
|
|
2113
|
+
EMERGENCY_USAGE_THRESHOLD_FIELD_NUMBER: builtins.int
|
|
2114
|
+
DISK_SIZE_LIMIT_FIELD_NUMBER: builtins.int
|
|
2115
|
+
@property
|
|
2116
|
+
def planned_usage_threshold(self) -> google.protobuf.wrappers_pb2.Int64Value:
|
|
2117
|
+
"""Amount of used storage for automatic disk scaling in the maintenance window, 0 means disabled, in percent."""
|
|
2118
|
+
|
|
2119
|
+
@property
|
|
2120
|
+
def emergency_usage_threshold(self) -> google.protobuf.wrappers_pb2.Int64Value:
|
|
2121
|
+
"""Amount of used storage for immediately automatic disk scaling, 0 means disabled, in percent."""
|
|
2122
|
+
|
|
2123
|
+
@property
|
|
2124
|
+
def disk_size_limit(self) -> google.protobuf.wrappers_pb2.Int64Value:
|
|
2125
|
+
"""Limit on how large the storage for database instances can automatically grow, in bytes."""
|
|
2126
|
+
|
|
2127
|
+
def __init__(
|
|
2128
|
+
self,
|
|
2129
|
+
*,
|
|
2130
|
+
planned_usage_threshold: google.protobuf.wrappers_pb2.Int64Value | None = ...,
|
|
2131
|
+
emergency_usage_threshold: google.protobuf.wrappers_pb2.Int64Value | None = ...,
|
|
2132
|
+
disk_size_limit: google.protobuf.wrappers_pb2.Int64Value | None = ...,
|
|
2133
|
+
) -> None: ...
|
|
2134
|
+
def HasField(self, field_name: typing.Literal["disk_size_limit", b"disk_size_limit", "emergency_usage_threshold", b"emergency_usage_threshold", "planned_usage_threshold", b"planned_usage_threshold"]) -> builtins.bool: ...
|
|
2135
|
+
def ClearField(self, field_name: typing.Literal["disk_size_limit", b"disk_size_limit", "emergency_usage_threshold", b"emergency_usage_threshold", "planned_usage_threshold", b"planned_usage_threshold"]) -> None: ...
|
|
2136
|
+
|
|
2137
|
+
global___DiskSizeAutoscaling = DiskSizeAutoscaling
|