@@ -558,7 +558,18 @@ class EnvironmentConfig(proto.Message):
558
558
"""
559
559
560
560
class EnvironmentSize (proto .Enum ):
561
- r"""The size of the Cloud Composer environment."""
561
+ r"""The size of the Cloud Composer environment.
562
+
563
+ Values:
564
+ ENVIRONMENT_SIZE_UNSPECIFIED (0):
565
+ The size of the environment is unspecified.
566
+ ENVIRONMENT_SIZE_SMALL (1):
567
+ The environment size is small.
568
+ ENVIRONMENT_SIZE_MEDIUM (2):
569
+ The environment size is medium.
570
+ ENVIRONMENT_SIZE_LARGE (3):
571
+ The environment size is large.
572
+ """
562
573
ENVIRONMENT_SIZE_UNSPECIFIED = 0
563
574
ENVIRONMENT_SIZE_SMALL = 1
564
575
ENVIRONMENT_SIZE_MEDIUM = 2
@@ -1252,6 +1263,18 @@ class ConnectionType(proto.Enum):
1252
1263
r"""Represents connection type between Composer environment in
1253
1264
Customer Project and the corresponding Tenant project, from a
1254
1265
predefined list of available connection modes.
1266
+
1267
+ Values:
1268
+ CONNECTION_TYPE_UNSPECIFIED (0):
1269
+ No specific connection type was requested, so
1270
+ the environment uses the default value
1271
+ corresponding to the rest of its configuration.
1272
+ VPC_PEERING (1):
1273
+ Requests the use of VPC peerings for
1274
+ connecting the Customer and Tenant projects.
1275
+ PRIVATE_SERVICE_CONNECT (2):
1276
+ Requests the use of Private Service Connect
1277
+ for connecting the Customer and Tenant projects.
1255
1278
"""
1256
1279
CONNECTION_TYPE_UNSPECIFIED = 0
1257
1280
VPC_PEERING = 1
@@ -1654,7 +1677,28 @@ class Environment(proto.Message):
1654
1677
"""
1655
1678
1656
1679
class State (proto .Enum ):
1657
- r"""State of the environment."""
1680
+ r"""State of the environment.
1681
+
1682
+ Values:
1683
+ STATE_UNSPECIFIED (0):
1684
+ The state of the environment is unknown.
1685
+ CREATING (1):
1686
+ The environment is in the process of being
1687
+ created.
1688
+ RUNNING (2):
1689
+ The environment is currently running and
1690
+ healthy. It is ready for use.
1691
+ UPDATING (3):
1692
+ The environment is being updated. It remains
1693
+ usable but cannot receive additional update
1694
+ requests or be deleted at this time.
1695
+ DELETING (4):
1696
+ The environment is undergoing deletion. It
1697
+ cannot be used.
1698
+ ERROR (5):
1699
+ The environment has encountered an error and
1700
+ cannot be used.
1701
+ """
1658
1702
STATE_UNSPECIFIED = 0
1659
1703
CREATING = 1
1660
1704
RUNNING = 2
@@ -1724,6 +1768,15 @@ class CheckUpgradeResponse(proto.Message):
1724
1768
class ConflictResult (proto .Enum ):
1725
1769
r"""Whether there were python modules conflict during image
1726
1770
build.
1771
+
1772
+ Values:
1773
+ CONFLICT_RESULT_UNSPECIFIED (0):
1774
+ It is unknown whether build had conflicts or
1775
+ not.
1776
+ CONFLICT (1):
1777
+ There were python packages conflicts.
1778
+ NO_CONFLICT (2):
1779
+ There were no python packages conflicts.
1727
1780
"""
1728
1781
CONFLICT_RESULT_UNSPECIFIED = 0
1729
1782
CONFLICT = 1
0 commit comments