|
4 | 4 |
|
5 | 5 | import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
6 | 6 | import type { JsonObject, Message } from "@bufbuild/protobuf";
|
| 7 | +import type { NullValue } from "@bufbuild/protobuf/wkt"; |
7 | 8 |
|
8 | 9 | /**
|
9 | 10 | * Describes the file workspace.proto.
|
@@ -293,6 +294,240 @@ export declare type ReleaseTarget = Message<"workspace.ReleaseTarget"> & {
|
293 | 294 | */
|
294 | 295 | export declare const ReleaseTargetSchema: GenMessage<ReleaseTarget>;
|
295 | 296 |
|
| 297 | +/** |
| 298 | + * @generated from message workspace.ReleaseTargetDeploy |
| 299 | + */ |
| 300 | +export declare type ReleaseTargetDeploy = Message<"workspace.ReleaseTargetDeploy"> & { |
| 301 | + /** |
| 302 | + * @generated from field: workspace.ReleaseTarget release_target = 1; |
| 303 | + */ |
| 304 | + releaseTarget?: ReleaseTarget; |
| 305 | + |
| 306 | + /** |
| 307 | + * @generated from field: workspace.DeploymentVersion deployment_version = 2; |
| 308 | + */ |
| 309 | + deploymentVersion?: DeploymentVersion; |
| 310 | + |
| 311 | + /** |
| 312 | + * @generated from field: map<string, google.protobuf.Struct> variables = 3; |
| 313 | + */ |
| 314 | + variables: { [key: string]: JsonObject }; |
| 315 | + |
| 316 | + /** |
| 317 | + * @generated from field: string created_at = 4; |
| 318 | + */ |
| 319 | + createdAt: string; |
| 320 | +}; |
| 321 | + |
| 322 | +/** |
| 323 | + * Describes the message workspace.ReleaseTargetDeploy. |
| 324 | + * Use `create(ReleaseTargetDeploySchema)` to create a new message. |
| 325 | + */ |
| 326 | +export declare const ReleaseTargetDeploySchema: GenMessage<ReleaseTargetDeploy>; |
| 327 | + |
| 328 | +/** |
| 329 | + * @generated from message workspace.DeploymentVariable |
| 330 | + */ |
| 331 | +export declare type DeploymentVariable = Message<"workspace.DeploymentVariable"> & { |
| 332 | + /** |
| 333 | + * @generated from field: string id = 1; |
| 334 | + */ |
| 335 | + id: string; |
| 336 | + |
| 337 | + /** |
| 338 | + * @generated from field: string variable_id = 2; |
| 339 | + */ |
| 340 | + variableId: string; |
| 341 | + |
| 342 | + /** |
| 343 | + * @generated from field: string description = 3; |
| 344 | + */ |
| 345 | + description: string; |
| 346 | + |
| 347 | + /** |
| 348 | + * @generated from field: string deployment_id = 4; |
| 349 | + */ |
| 350 | + deploymentId: string; |
| 351 | + |
| 352 | + /** |
| 353 | + * @generated from field: optional google.protobuf.Struct resource_selector = 5; |
| 354 | + */ |
| 355 | + resourceSelector?: JsonObject; |
| 356 | + |
| 357 | + /** |
| 358 | + * @generated from field: int32 priority = 6; |
| 359 | + */ |
| 360 | + priority: number; |
| 361 | +}; |
| 362 | + |
| 363 | +/** |
| 364 | + * Describes the message workspace.DeploymentVariable. |
| 365 | + * Use `create(DeploymentVariableSchema)` to create a new message. |
| 366 | + */ |
| 367 | +export declare const DeploymentVariableSchema: GenMessage<DeploymentVariable>; |
| 368 | + |
| 369 | +/** |
| 370 | + * @generated from message workspace.DeploymentVariableValue |
| 371 | + */ |
| 372 | +export declare type DeploymentVariableValue = Message<"workspace.DeploymentVariableValue"> & { |
| 373 | + /** |
| 374 | + * @generated from field: string id = 1; |
| 375 | + */ |
| 376 | + id: string; |
| 377 | + |
| 378 | + /** |
| 379 | + * @generated from field: string deployment_variable_id = 3; |
| 380 | + */ |
| 381 | + deploymentVariableId: string; |
| 382 | + |
| 383 | + /** |
| 384 | + * @generated from oneof workspace.DeploymentVariableValue.default_value |
| 385 | + */ |
| 386 | + defaultValue: { |
| 387 | + /** |
| 388 | + * @generated from field: double number_value = 4; |
| 389 | + */ |
| 390 | + value: number; |
| 391 | + case: "numberValue"; |
| 392 | + } | { |
| 393 | + /** |
| 394 | + * @generated from field: string string_value = 5; |
| 395 | + */ |
| 396 | + value: string; |
| 397 | + case: "stringValue"; |
| 398 | + } | { |
| 399 | + /** |
| 400 | + * @generated from field: bool bool_value = 6; |
| 401 | + */ |
| 402 | + value: boolean; |
| 403 | + case: "boolValue"; |
| 404 | + } | { |
| 405 | + /** |
| 406 | + * @generated from field: google.protobuf.Struct object_value = 7; |
| 407 | + */ |
| 408 | + value: JsonObject; |
| 409 | + case: "objectValue"; |
| 410 | + } | { |
| 411 | + /** |
| 412 | + * @generated from field: google.protobuf.NullValue null_value = 8; |
| 413 | + */ |
| 414 | + value: NullValue; |
| 415 | + case: "nullValue"; |
| 416 | + } | { case: undefined; value?: undefined }; |
| 417 | + |
| 418 | + /** |
| 419 | + * @generated from oneof workspace.DeploymentVariableValue.value |
| 420 | + */ |
| 421 | + value: { |
| 422 | + /** |
| 423 | + * @generated from field: workspace.DirectDeploymentVariableValue direct_value = 9; |
| 424 | + */ |
| 425 | + value: DirectDeploymentVariableValue; |
| 426 | + case: "directValue"; |
| 427 | + } | { |
| 428 | + /** |
| 429 | + * @generated from field: workspace.ReferenceDeploymentVariableValue reference_value = 10; |
| 430 | + */ |
| 431 | + value: ReferenceDeploymentVariableValue; |
| 432 | + case: "referenceValue"; |
| 433 | + } | { |
| 434 | + /** |
| 435 | + * @generated from field: workspace.SensitiveDeploymentVariableValue sensitive_value = 11; |
| 436 | + */ |
| 437 | + value: SensitiveDeploymentVariableValue; |
| 438 | + case: "sensitiveValue"; |
| 439 | + } | { case: undefined; value?: undefined }; |
| 440 | +}; |
| 441 | + |
| 442 | +/** |
| 443 | + * Describes the message workspace.DeploymentVariableValue. |
| 444 | + * Use `create(DeploymentVariableValueSchema)` to create a new message. |
| 445 | + */ |
| 446 | +export declare const DeploymentVariableValueSchema: GenMessage<DeploymentVariableValue>; |
| 447 | + |
| 448 | +/** |
| 449 | + * @generated from message workspace.SensitiveDeploymentVariableValue |
| 450 | + */ |
| 451 | +export declare type SensitiveDeploymentVariableValue = Message<"workspace.SensitiveDeploymentVariableValue"> & { |
| 452 | + /** |
| 453 | + * @generated from field: string value_hash = 1; |
| 454 | + */ |
| 455 | + valueHash: string; |
| 456 | +}; |
| 457 | + |
| 458 | +/** |
| 459 | + * Describes the message workspace.SensitiveDeploymentVariableValue. |
| 460 | + * Use `create(SensitiveDeploymentVariableValueSchema)` to create a new message. |
| 461 | + */ |
| 462 | +export declare const SensitiveDeploymentVariableValueSchema: GenMessage<SensitiveDeploymentVariableValue>; |
| 463 | + |
| 464 | +/** |
| 465 | + * @generated from message workspace.DirectDeploymentVariableValue |
| 466 | + */ |
| 467 | +export declare type DirectDeploymentVariableValue = Message<"workspace.DirectDeploymentVariableValue"> & { |
| 468 | + /** |
| 469 | + * @generated from oneof workspace.DirectDeploymentVariableValue.value |
| 470 | + */ |
| 471 | + value: { |
| 472 | + /** |
| 473 | + * @generated from field: double number_value = 1; |
| 474 | + */ |
| 475 | + value: number; |
| 476 | + case: "numberValue"; |
| 477 | + } | { |
| 478 | + /** |
| 479 | + * @generated from field: string string_value = 2; |
| 480 | + */ |
| 481 | + value: string; |
| 482 | + case: "stringValue"; |
| 483 | + } | { |
| 484 | + /** |
| 485 | + * @generated from field: bool bool_value = 3; |
| 486 | + */ |
| 487 | + value: boolean; |
| 488 | + case: "boolValue"; |
| 489 | + } | { |
| 490 | + /** |
| 491 | + * @generated from field: google.protobuf.Struct object_value = 4; |
| 492 | + */ |
| 493 | + value: JsonObject; |
| 494 | + case: "objectValue"; |
| 495 | + } | { |
| 496 | + /** |
| 497 | + * @generated from field: google.protobuf.NullValue null_value = 5; |
| 498 | + */ |
| 499 | + value: NullValue; |
| 500 | + case: "nullValue"; |
| 501 | + } | { case: undefined; value?: undefined }; |
| 502 | +}; |
| 503 | + |
| 504 | +/** |
| 505 | + * Describes the message workspace.DirectDeploymentVariableValue. |
| 506 | + * Use `create(DirectDeploymentVariableValueSchema)` to create a new message. |
| 507 | + */ |
| 508 | +export declare const DirectDeploymentVariableValueSchema: GenMessage<DirectDeploymentVariableValue>; |
| 509 | + |
| 510 | +/** |
| 511 | + * @generated from message workspace.ReferenceDeploymentVariableValue |
| 512 | + */ |
| 513 | +export declare type ReferenceDeploymentVariableValue = Message<"workspace.ReferenceDeploymentVariableValue"> & { |
| 514 | + /** |
| 515 | + * @generated from field: optional google.protobuf.Struct reference = 1; |
| 516 | + */ |
| 517 | + reference?: JsonObject; |
| 518 | + |
| 519 | + /** |
| 520 | + * @generated from field: repeated string path = 2; |
| 521 | + */ |
| 522 | + path: string[]; |
| 523 | +}; |
| 524 | + |
| 525 | +/** |
| 526 | + * Describes the message workspace.ReferenceDeploymentVariableValue. |
| 527 | + * Use `create(ReferenceDeploymentVariableValueSchema)` to create a new message. |
| 528 | + */ |
| 529 | +export declare const ReferenceDeploymentVariableValueSchema: GenMessage<ReferenceDeploymentVariableValue>; |
| 530 | + |
296 | 531 | /**
|
297 | 532 | * @generated from message workspace.DeploymentVersion
|
298 | 533 | */
|
|
0 commit comments