|
72 | 72 | The name of the workload as configured in AppHub. |
73 | 73 | """ |
74 | 74 |
|
| 75 | +GCP_APPHUB_DESTINATION_APPLICATION_CONTAINER: Final = ( |
| 76 | + "gcp.apphub_destination.application.container" |
| 77 | +) |
| 78 | +""" |
| 79 | +The container within GCP where the AppHub destination application is defined. |
| 80 | +""" |
| 81 | + |
| 82 | +GCP_APPHUB_DESTINATION_APPLICATION_ID: Final = ( |
| 83 | + "gcp.apphub_destination.application.id" |
| 84 | +) |
| 85 | +""" |
| 86 | +The name of the destination application as configured in AppHub. |
| 87 | +""" |
| 88 | + |
| 89 | +GCP_APPHUB_DESTINATION_APPLICATION_LOCATION: Final = ( |
| 90 | + "gcp.apphub_destination.application.location" |
| 91 | +) |
| 92 | +""" |
| 93 | +The GCP zone or region where the destination application is defined. |
| 94 | +""" |
| 95 | + |
| 96 | +GCP_APPHUB_DESTINATION_SERVICE_CRITICALITY_TYPE: Final = ( |
| 97 | + "gcp.apphub_destination.service.criticality_type" |
| 98 | +) |
| 99 | +""" |
| 100 | +Criticality of a destination workload indicates its importance to the business as specified in [AppHub type enum](https://cloud.google.com/app-hub/docs/reference/rest/v1/Attributes#type). |
| 101 | +""" |
| 102 | + |
| 103 | +GCP_APPHUB_DESTINATION_SERVICE_ENVIRONMENT_TYPE: Final = ( |
| 104 | + "gcp.apphub_destination.service.environment_type" |
| 105 | +) |
| 106 | +""" |
| 107 | +Software lifecycle stage of a destination service as defined [AppHub environment type](https://cloud.google.com/app-hub/docs/reference/rest/v1/Attributes#type_1). |
| 108 | +""" |
| 109 | + |
| 110 | +GCP_APPHUB_DESTINATION_SERVICE_ID: Final = "gcp.apphub_destination.service.id" |
| 111 | +""" |
| 112 | +The name of the destination service as configured in AppHub. |
| 113 | +""" |
| 114 | + |
| 115 | +GCP_APPHUB_DESTINATION_WORKLOAD_CRITICALITY_TYPE: Final = ( |
| 116 | + "gcp.apphub_destination.workload.criticality_type" |
| 117 | +) |
| 118 | +""" |
| 119 | +Criticality of a destination workload indicates its importance to the business as specified in [AppHub type enum](https://cloud.google.com/app-hub/docs/reference/rest/v1/Attributes#type). |
| 120 | +""" |
| 121 | + |
| 122 | +GCP_APPHUB_DESTINATION_WORKLOAD_ENVIRONMENT_TYPE: Final = ( |
| 123 | + "gcp.apphub_destination.workload.environment_type" |
| 124 | +) |
| 125 | +""" |
| 126 | +Environment of a destination workload is the stage of a software lifecycle as provided in the [AppHub environment type](https://cloud.google.com/app-hub/docs/reference/rest/v1/Attributes#type_1). |
| 127 | +""" |
| 128 | + |
| 129 | +GCP_APPHUB_DESTINATION_WORKLOAD_ID: Final = ( |
| 130 | + "gcp.apphub_destination.workload.id" |
| 131 | +) |
| 132 | +""" |
| 133 | +The name of the destination workload as configured in AppHub. |
| 134 | +""" |
| 135 | + |
75 | 136 | GCP_CLIENT_SERVICE: Final = "gcp.client.service" |
76 | 137 | """ |
77 | 138 | Identifies the Google Cloud service for which the official client library is intended. |
@@ -141,3 +202,47 @@ class GcpApphubWorkloadEnvironmentTypeValues(Enum): |
141 | 202 | """Test environment.""" |
142 | 203 | DEVELOPMENT = "DEVELOPMENT" |
143 | 204 | """Development environment.""" |
| 205 | + |
| 206 | + |
| 207 | +class GcpApphubDestinationServiceCriticalityTypeValues(Enum): |
| 208 | + MISSION_CRITICAL = "MISSION_CRITICAL" |
| 209 | + """Mission critical service.""" |
| 210 | + HIGH = "HIGH" |
| 211 | + """High impact.""" |
| 212 | + MEDIUM = "MEDIUM" |
| 213 | + """Medium impact.""" |
| 214 | + LOW = "LOW" |
| 215 | + """Low impact.""" |
| 216 | + |
| 217 | + |
| 218 | +class GcpApphubDestinationServiceEnvironmentTypeValues(Enum): |
| 219 | + PRODUCTION = "PRODUCTION" |
| 220 | + """Production environment.""" |
| 221 | + STAGING = "STAGING" |
| 222 | + """Staging environment.""" |
| 223 | + TEST = "TEST" |
| 224 | + """Test environment.""" |
| 225 | + DEVELOPMENT = "DEVELOPMENT" |
| 226 | + """Development environment.""" |
| 227 | + |
| 228 | + |
| 229 | +class GcpApphubDestinationWorkloadCriticalityTypeValues(Enum): |
| 230 | + MISSION_CRITICAL = "MISSION_CRITICAL" |
| 231 | + """Mission critical service.""" |
| 232 | + HIGH = "HIGH" |
| 233 | + """High impact.""" |
| 234 | + MEDIUM = "MEDIUM" |
| 235 | + """Medium impact.""" |
| 236 | + LOW = "LOW" |
| 237 | + """Low impact.""" |
| 238 | + |
| 239 | + |
| 240 | +class GcpApphubDestinationWorkloadEnvironmentTypeValues(Enum): |
| 241 | + PRODUCTION = "PRODUCTION" |
| 242 | + """Production environment.""" |
| 243 | + STAGING = "STAGING" |
| 244 | + """Staging environment.""" |
| 245 | + TEST = "TEST" |
| 246 | + """Test environment.""" |
| 247 | + DEVELOPMENT = "DEVELOPMENT" |
| 248 | + """Development environment.""" |
0 commit comments