Class: Google::Cloud::ConfigService::V1::Preview
- Inherits:
-
Object
- Object
- Google::Cloud::ConfigService::V1::Preview
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/config/v1/config.rb
Overview
A preview represents a set of actions Infra Manager would perform to move the resources towards the desired state as specified in the configuration.
Defined Under Namespace
Modules: ErrorCode, PreviewMode, State Classes: AnnotationsEntry, LabelsEntry
Instance Attribute Summary collapse
-
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
Optional.
-
#artifacts_gcs_bucket ⇒ ::String
Optional.
-
#build ⇒ ::String
readonly
Output only.
-
#create_time ⇒ ::Google::Protobuf::Timestamp
readonly
Output only.
-
#deployment ⇒ ::String
Optional.
-
#error_code ⇒ ::Google::Cloud::ConfigService::V1::Preview::ErrorCode
readonly
Output only.
-
#error_logs ⇒ ::String
readonly
Output only.
-
#error_status ⇒ ::Google::Rpc::Status
readonly
Output only.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Optional.
-
#logs ⇒ ::String
readonly
Output only.
-
#name ⇒ ::String
Identifier.
-
#preview_artifacts ⇒ ::Google::Cloud::ConfigService::V1::PreviewArtifacts
readonly
Output only.
-
#preview_mode ⇒ ::Google::Cloud::ConfigService::V1::Preview::PreviewMode
Optional.
-
#service_account ⇒ ::String
Required.
-
#state ⇒ ::Google::Cloud::ConfigService::V1::Preview::State
readonly
Output only.
-
#terraform_blueprint ⇒ ::Google::Cloud::ConfigService::V1::TerraformBlueprint
The terraform blueprint to preview.
-
#tf_errors ⇒ ::Array<::Google::Cloud::ConfigService::V1::TerraformError>
readonly
Output only.
-
#tf_version ⇒ ::String
readonly
Output only.
-
#tf_version_constraint ⇒ ::String
Optional.
-
#worker_pool ⇒ ::String
Optional.
Instance Attribute Details
#annotations ⇒ ::Google::Protobuf::Map{::String => ::String}
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#artifacts_gcs_bucket ⇒ ::String
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#build ⇒ ::String (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#deployment ⇒ ::String
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#error_code ⇒ ::Google::Cloud::ConfigService::V1::Preview::ErrorCode (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#error_logs ⇒ ::String (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#error_status ⇒ ::Google::Rpc::Status (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#logs ⇒ ::String (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#name ⇒ ::String
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#preview_artifacts ⇒ ::Google::Cloud::ConfigService::V1::PreviewArtifacts (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#preview_mode ⇒ ::Google::Cloud::ConfigService::V1::Preview::PreviewMode
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#service_account ⇒ ::String
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#state ⇒ ::Google::Cloud::ConfigService::V1::Preview::State (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#terraform_blueprint ⇒ ::Google::Cloud::ConfigService::V1::TerraformBlueprint
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#tf_errors ⇒ ::Array<::Google::Cloud::ConfigService::V1::TerraformError> (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#tf_version ⇒ ::String (readonly)
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#tf_version_constraint ⇒ ::String
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |
#worker_pool ⇒ ::String
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 |
# File 'proto_docs/google/cloud/config/v1/config.rb', line 1240 class Preview include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class AnnotationsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Possible states of a preview. module State # The default value. This value is used if the state is unknown. STATE_UNSPECIFIED = 0 # The preview is being created. CREATING = 1 # The preview has succeeded. SUCCEEDED = 2 # The preview is being applied. APPLYING = 3 # The preview is stale. A preview can become stale if a revision has been # applied after this preview was created. STALE = 4 # The preview is being deleted. DELETING = 5 # The preview has encountered an unexpected error. FAILED = 6 # The preview has been deleted. DELETED = 7 end # Preview mode provides options for customizing preview operations. module PreviewMode # Unspecified policy, default mode will be used. PREVIEW_MODE_UNSPECIFIED = 0 # DEFAULT mode generates an execution plan for reconciling current resource # state into expected resource state. DEFAULT = 1 # DELETE mode generates as execution plan for destroying current resources. DELETE = 2 end # Possible errors that can occur with previews. module ErrorCode # No error code was specified. ERROR_CODE_UNSPECIFIED = 0 # Cloud Build failed due to a permissions issue. CLOUD_BUILD_PERMISSION_DENIED = 1 # Cloud Storage bucket failed to create due to a permissions issue. BUCKET_CREATION_PERMISSION_DENIED = 2 # Cloud Storage bucket failed for a non-permissions-related issue. BUCKET_CREATION_FAILED = 3 # Acquiring lock on provided deployment reference failed. DEPLOYMENT_LOCK_ACQUIRE_FAILED = 4 # Preview encountered an error when trying to access Cloud Build API. PREVIEW_BUILD_API_FAILED = 5 # Preview created a build but build failed and logs were generated. PREVIEW_BUILD_RUN_FAILED = 6 end end |