google_cloudevents/google/events/cloud/functions/v2/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
// This file is @generated by prost-build.
/// Describes a Cloud Function that contains user computation executed in
/// response to an event. It encapsulates function and trigger configurations.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Function {
/// A user-defined name of the function. Function names must be unique
/// globally and match pattern `projects/*/locations/*/functions/*`
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
/// Describe whether the function is gen1 or gen2.
#[prost(enumeration = "Environment", tag = "10")]
pub environment: i32,
/// User-provided description of a function.
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
/// Describes the Build step of the function that builds a container from the
/// given source.
#[prost(message, optional, tag = "3")]
pub build_config: ::core::option::Option<BuildConfig>,
/// Describes the Service being deployed. Currently deploys services to Cloud
/// Run (fully managed).
#[prost(message, optional, tag = "4")]
pub service_config: ::core::option::Option<ServiceConfig>,
/// An Eventarc trigger managed by Google Cloud Functions that fires events in
/// response to a condition in another service.
#[prost(message, optional, tag = "5")]
pub event_trigger: ::core::option::Option<EventTrigger>,
/// Output only. State of the function.
#[prost(enumeration = "function::State", tag = "6")]
pub state: i32,
/// Output only. The last update timestamp of a Cloud Function.
#[prost(message, optional, tag = "7")]
pub update_time: ::core::option::Option<::prost_types::Timestamp>,
/// Labels associated with this Cloud Function.
#[prost(map = "string, string", tag = "8")]
pub labels:
::std::collections::HashMap<::prost::alloc::string::String, ::prost::alloc::string::String>,
/// Output only. State Messages for this Cloud Function.
#[prost(message, repeated, tag = "9")]
pub state_messages: ::prost::alloc::vec::Vec<StateMessage>,
}
/// Nested message and enum types in `Function`.
pub mod function {
/// Describes the current state of the function.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum State {
/// Not specified. Invalid state.
Unspecified = 0,
/// Function has been successfully deployed and is serving.
Active = 1,
/// Function deployment failed and the function is not serving.
Failed = 2,
/// Function is being created or updated.
Deploying = 3,
/// Function is being deleted.
Deleting = 4,
/// Function deployment failed and the function serving state is undefined.
/// The function should be updated or deleted to move it out of this state.
Unknown = 5,
}
impl State {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "STATE_UNSPECIFIED",
Self::Active => "ACTIVE",
Self::Failed => "FAILED",
Self::Deploying => "DEPLOYING",
Self::Deleting => "DELETING",
Self::Unknown => "UNKNOWN",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"STATE_UNSPECIFIED" => Some(Self::Unspecified),
"ACTIVE" => Some(Self::Active),
"FAILED" => Some(Self::Failed),
"DEPLOYING" => Some(Self::Deploying),
"DELETING" => Some(Self::Deleting),
"UNKNOWN" => Some(Self::Unknown),
_ => None,
}
}
}
}
/// Informational messages about the state of the Cloud Function or Operation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StateMessage {
/// Severity of the state message.
#[prost(enumeration = "state_message::Severity", tag = "1")]
pub severity: i32,
/// One-word CamelCase type of the state message.
#[prost(string, tag = "2")]
pub r#type: ::prost::alloc::string::String,
/// The message.
#[prost(string, tag = "3")]
pub message: ::prost::alloc::string::String,
}
/// Nested message and enum types in `StateMessage`.
pub mod state_message {
/// Severity of the state message.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Severity {
/// Not specified. Invalid severity.
Unspecified = 0,
/// ERROR-level severity.
Error = 1,
/// WARNING-level severity.
Warning = 2,
/// INFO-level severity.
Info = 3,
}
impl Severity {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "SEVERITY_UNSPECIFIED",
Self::Error => "ERROR",
Self::Warning => "WARNING",
Self::Info => "INFO",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SEVERITY_UNSPECIFIED" => Some(Self::Unspecified),
"ERROR" => Some(Self::Error),
"WARNING" => Some(Self::Warning),
"INFO" => Some(Self::Info),
_ => None,
}
}
}
}
/// Location of the source in an archive file in Google Cloud Storage.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct StorageSource {
/// Google Cloud Storage bucket containing the source (see
/// [Bucket Name
/// Requirements](<https://cloud.google.com/storage/docs/bucket-naming#requirements>)).
#[prost(string, tag = "1")]
pub bucket: ::prost::alloc::string::String,
/// Google Cloud Storage object containing the source.
///
/// This object must be a gzipped archive file (`.tar.gz`) containing source to
/// build.
#[prost(string, tag = "2")]
pub object: ::prost::alloc::string::String,
/// Google Cloud Storage generation for the object. If the generation is
/// omitted, the latest generation will be used.
#[prost(int64, tag = "3")]
pub generation: i64,
}
/// Location of the source in a Google Cloud Source Repository.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RepoSource {
/// ID of the project that owns the Cloud Source Repository. If omitted, the
/// project ID requesting the build is assumed.
#[prost(string, tag = "1")]
pub project_id: ::prost::alloc::string::String,
/// Name of the Cloud Source Repository.
#[prost(string, tag = "2")]
pub repo_name: ::prost::alloc::string::String,
/// Directory, relative to the source root, in which to run the build.
///
/// This must be a relative path. If a step's `dir` is specified and is an
/// absolute path, this value is ignored for that step's execution.
/// eg. helloworld (no leading slash allowed)
#[prost(string, tag = "6")]
pub dir: ::prost::alloc::string::String,
/// Only trigger a build if the revision regex does NOT match the revision
/// regex.
#[prost(bool, tag = "7")]
pub invert_regex: bool,
/// A revision within the Cloud Source Repository must be specified in
/// one of these ways.
#[prost(oneof = "repo_source::Revision", tags = "3, 4, 5")]
pub revision: ::core::option::Option<repo_source::Revision>,
}
/// Nested message and enum types in `RepoSource`.
pub mod repo_source {
/// A revision within the Cloud Source Repository must be specified in
/// one of these ways.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Revision {
/// Regex matching branches to build.
///
/// The syntax of the regular expressions accepted is the syntax accepted by
/// RE2 and described at <https://github.com/google/re2/wiki/Syntax>
#[prost(string, tag = "3")]
BranchName(::prost::alloc::string::String),
/// Regex matching tags to build.
///
/// The syntax of the regular expressions accepted is the syntax accepted by
/// RE2 and described at <https://github.com/google/re2/wiki/Syntax>
#[prost(string, tag = "4")]
TagName(::prost::alloc::string::String),
/// Explicit commit SHA to build.
#[prost(string, tag = "5")]
CommitSha(::prost::alloc::string::String),
}
}
/// The location of the function source code.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Source {
/// Location of the source.
/// At least one source needs to be provided for the deployment to succeed.
#[prost(oneof = "source::Source", tags = "1, 2")]
pub source: ::core::option::Option<source::Source>,
}
/// Nested message and enum types in `Source`.
pub mod source {
/// Location of the source.
/// At least one source needs to be provided for the deployment to succeed.
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum Source {
/// If provided, get the source from this location in Google Cloud Storage.
#[prost(message, tag = "1")]
StorageSource(super::StorageSource),
/// If provided, get the source from this location in a Cloud Source
/// Repository.
#[prost(message, tag = "2")]
RepoSource(super::RepoSource),
}
}
/// Provenance of the source. Ways to find the original source, or verify that
/// some source was used for this build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SourceProvenance {
/// A copy of the build's `source.storage_source`, if exists, with any
/// generations resolved.
#[prost(message, optional, tag = "1")]
pub resolved_storage_source: ::core::option::Option<StorageSource>,
/// A copy of the build's `source.repo_source`, if exists, with any
/// revisions resolved.
#[prost(message, optional, tag = "2")]
pub resolved_repo_source: ::core::option::Option<RepoSource>,
}
/// Describes the Build step of the function that builds a container from the
/// given source.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BuildConfig {
/// Output only. The Cloud Build name of the latest successful deployment of
/// the function.
#[prost(string, tag = "1")]
pub build: ::prost::alloc::string::String,
/// The runtime in which to run the function. Required when deploying a new
/// function, optional when updating an existing function. For a complete
/// list of possible choices, see the
/// [`gcloud` command
/// reference](<https://cloud.google.com/sdk/gcloud/reference/functions/deploy#--runtime>).
#[prost(string, tag = "2")]
pub runtime: ::prost::alloc::string::String,
/// The name of the function (as defined in source code) that will be
/// executed. Defaults to the resource name suffix, if not specified. For
/// backward compatibility, if function with given name is not found, then the
/// system will try to use function named "function".
/// For Node.js this is name of a function exported by the module specified
/// in `source_location`.
#[prost(string, tag = "3")]
pub entry_point: ::prost::alloc::string::String,
/// The location of the function source code.
#[prost(message, optional, tag = "4")]
pub source: ::core::option::Option<Source>,
/// Output only. A permanent fixed identifier for source.
#[prost(message, optional, tag = "8")]
pub source_provenance: ::core::option::Option<SourceProvenance>,
/// Name of the Cloud Build Custom Worker Pool that should be used to build the
/// function. The format of this field is
/// `projects/{project}/locations/{region}/workerPools/{workerPool}` where
/// {project} and {region} are the project id and region respectively where the
/// worker pool is defined and {workerPool} is the short name of the worker
/// pool.
///
/// If the project id is not the same as the function, then the Cloud
/// Functions Service Agent
/// (service-<project_number>@gcf-admin-robot.iam.gserviceaccount.com) must be
/// granted the role Cloud Build Custom Workers Builder
/// (roles/cloudbuild.customworkers.builder) in the project.
#[prost(string, tag = "5")]
pub worker_pool: ::prost::alloc::string::String,
/// User-provided build-time environment variables for the function
#[prost(map = "string, string", tag = "6")]
pub environment_variables:
::std::collections::HashMap<::prost::alloc::string::String, ::prost::alloc::string::String>,
/// Optional. Docker Registry to use for this deployment. This configuration is
/// only applicable to 1st Gen functions, 2nd Gen functions can only use
/// Artifact Registry.
///
/// If `docker_repository` field is specified, this field will be automatically
/// set as `ARTIFACT_REGISTRY`.
/// If unspecified, it currently defaults to `CONTAINER_REGISTRY`.
/// This field may be overridden by the backend for eligible deployments.
#[prost(enumeration = "build_config::DockerRegistry", tag = "10")]
pub docker_registry: i32,
/// User managed repository created in Artifact Registry optionally with a
/// customer managed encryption key. This is the repository to which the
/// function docker image will be pushed after it is built by Cloud Build.
/// If unspecified, GCF will create and use a repository named 'gcf-artifacts'
/// for every deployed region.
///
/// It must match the pattern
/// `projects/{project}/locations/{location}/repositories/{repository}`.
///
/// Cross-project repositories are not supported.
/// Cross-location repositories are not supported.
/// Repository format must be 'DOCKER'.
#[prost(string, tag = "7")]
pub docker_repository: ::prost::alloc::string::String,
/// Specifies one of the Google provided buildpack stacks.
#[prost(string, tag = "9")]
pub buildpack_stack: ::prost::alloc::string::String,
}
/// Nested message and enum types in `BuildConfig`.
pub mod build_config {
/// Docker Registry to use for storing function Docker images.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum DockerRegistry {
/// Unspecified.
Unspecified = 0,
/// Docker images will be stored in multi-regional Container Registry
/// repositories named `gcf`.
ContainerRegistry = 1,
/// Docker images will be stored in regional Artifact Registry repositories.
/// By default, GCF will create and use repositories named `gcf-artifacts`
/// in every region in which a function is deployed. But the repository to
/// use can also be specified by the user using the `docker_repository`
/// field.
ArtifactRegistry = 2,
}
impl DockerRegistry {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "DOCKER_REGISTRY_UNSPECIFIED",
Self::ContainerRegistry => "CONTAINER_REGISTRY",
Self::ArtifactRegistry => "ARTIFACT_REGISTRY",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"DOCKER_REGISTRY_UNSPECIFIED" => Some(Self::Unspecified),
"CONTAINER_REGISTRY" => Some(Self::ContainerRegistry),
"ARTIFACT_REGISTRY" => Some(Self::ArtifactRegistry),
_ => None,
}
}
}
}
/// Describes the Service being deployed.
/// Currently Supported : Cloud Run (fully managed).
/// Next tag: 23
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ServiceConfig {
/// Output only. Name of the service associated with a Function.
/// The format of this field is
/// `projects/{project}/locations/{region}/services/{service}`
#[prost(string, tag = "1")]
pub service: ::prost::alloc::string::String,
/// The function execution timeout. Execution is considered failed and
/// can be terminated if the function is not completed at the end of the
/// timeout period. Defaults to 60 seconds.
#[prost(int32, tag = "2")]
pub timeout_seconds: i32,
/// The amount of memory available for a function.
/// Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
/// supplied the value is interpreted as bytes.
/// See
/// <https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go>
/// a full description.
#[prost(string, tag = "13")]
pub available_memory: ::prost::alloc::string::String,
/// The number of CPUs used in a single container instance.
/// Default value is calculated from available memory.
/// Supports the same values as Cloud Run, see
/// <https://cloud.google.com/run/docs/reference/rest/v1/Container#resourcerequirements>
/// Example: "1" indicates 1 vCPU
#[prost(string, tag = "22")]
pub available_cpu: ::prost::alloc::string::String,
/// Environment variables that shall be available during function execution.
#[prost(map = "string, string", tag = "4")]
pub environment_variables:
::std::collections::HashMap<::prost::alloc::string::String, ::prost::alloc::string::String>,
/// The limit on the maximum number of function instances that may coexist at a
/// given time.
///
/// In some cases, such as rapid traffic surges, Cloud Functions may, for a
/// short period of time, create more instances than the specified max
/// instances limit. If your function cannot tolerate this temporary behavior,
/// you may want to factor in a safety margin and set a lower max instances
/// value than your function can tolerate.
///
/// See the [Max
/// Instances](<https://cloud.google.com/functions/docs/max-instances>) Guide for
/// more details.
#[prost(int32, tag = "5")]
pub max_instance_count: i32,
/// The limit on the minimum number of function instances that may coexist at a
/// given time.
///
/// Function instances are kept in idle state for a short period after they
/// finished executing the request to reduce cold start time for subsequent
/// requests. Setting a minimum instance count will ensure that the given
/// number of instances are kept running in idle state always. This can help
/// with cold start times when jump in incoming request count occurs after the
/// idle instance would have been stopped in the default case.
#[prost(int32, tag = "12")]
pub min_instance_count: i32,
/// The Serverless VPC Access connector that this cloud function can connect
/// to. The format of this field is `projects/*/locations/*/connectors/*`.
#[prost(string, tag = "6")]
pub vpc_connector: ::prost::alloc::string::String,
/// The egress settings for the connector, controlling what traffic is diverted
/// through it.
#[prost(enumeration = "service_config::VpcConnectorEgressSettings", tag = "7")]
pub vpc_connector_egress_settings: i32,
/// The ingress settings for the function, controlling what traffic can reach
/// it.
#[prost(enumeration = "service_config::IngressSettings", tag = "8")]
pub ingress_settings: i32,
/// Output only. URI of the Service deployed.
#[prost(string, tag = "9")]
pub uri: ::prost::alloc::string::String,
/// The email of the service's service account. If empty, defaults to
/// `{project_number}-compute@developer.gserviceaccount.com`.
#[prost(string, tag = "10")]
pub service_account_email: ::prost::alloc::string::String,
/// Whether 100% of traffic is routed to the latest revision.
/// On CreateFunction and UpdateFunction, when set to true, the revision being
/// deployed will serve 100% of traffic, ignoring any traffic split settings,
/// if any. On GetFunction, true will be returned if the latest revision is
/// serving 100% of traffic.
#[prost(bool, tag = "16")]
pub all_traffic_on_latest_revision: bool,
/// Secret environment variables configuration.
#[prost(message, repeated, tag = "17")]
pub secret_environment_variables: ::prost::alloc::vec::Vec<SecretEnvVar>,
/// Secret volumes configuration.
#[prost(message, repeated, tag = "19")]
pub secret_volumes: ::prost::alloc::vec::Vec<SecretVolume>,
/// Output only. The name of service revision.
#[prost(string, tag = "18")]
pub revision: ::prost::alloc::string::String,
/// Sets the maximum number of concurrent requests that each instance can
/// receive. Defaults to 1.
#[prost(int32, tag = "20")]
pub max_instance_request_concurrency: i32,
/// Security level configure whether the function only accepts https.
/// This configuration is only applicable to 1st Gen functions with Http
/// trigger. By default https is optional for 1st Gen functions; 2nd Gen
/// functions are https ONLY.
#[prost(enumeration = "service_config::SecurityLevel", tag = "21")]
pub security_level: i32,
}
/// Nested message and enum types in `ServiceConfig`.
pub mod service_config {
/// Available egress settings.
///
/// This controls what traffic is diverted through the VPC Access Connector
/// resource. By default PRIVATE_RANGES_ONLY will be used.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum VpcConnectorEgressSettings {
/// Unspecified.
Unspecified = 0,
/// Use the VPC Access Connector only for private IP space from RFC1918.
PrivateRangesOnly = 1,
/// Force the use of VPC Access Connector for all egress traffic from the
/// function.
AllTraffic = 2,
}
impl VpcConnectorEgressSettings {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "VPC_CONNECTOR_EGRESS_SETTINGS_UNSPECIFIED",
Self::PrivateRangesOnly => "PRIVATE_RANGES_ONLY",
Self::AllTraffic => "ALL_TRAFFIC",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"VPC_CONNECTOR_EGRESS_SETTINGS_UNSPECIFIED" => Some(Self::Unspecified),
"PRIVATE_RANGES_ONLY" => Some(Self::PrivateRangesOnly),
"ALL_TRAFFIC" => Some(Self::AllTraffic),
_ => None,
}
}
}
/// Available ingress settings.
///
/// This controls what traffic can reach the function.
///
/// If unspecified, ALLOW_ALL will be used.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum IngressSettings {
/// Unspecified.
Unspecified = 0,
/// Allow HTTP traffic from public and private sources.
AllowAll = 1,
/// Allow HTTP traffic from only private VPC sources.
AllowInternalOnly = 2,
/// Allow HTTP traffic from private VPC sources and through GCLB.
AllowInternalAndGclb = 3,
}
impl IngressSettings {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "INGRESS_SETTINGS_UNSPECIFIED",
Self::AllowAll => "ALLOW_ALL",
Self::AllowInternalOnly => "ALLOW_INTERNAL_ONLY",
Self::AllowInternalAndGclb => "ALLOW_INTERNAL_AND_GCLB",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"INGRESS_SETTINGS_UNSPECIFIED" => Some(Self::Unspecified),
"ALLOW_ALL" => Some(Self::AllowAll),
"ALLOW_INTERNAL_ONLY" => Some(Self::AllowInternalOnly),
"ALLOW_INTERNAL_AND_GCLB" => Some(Self::AllowInternalAndGclb),
_ => None,
}
}
}
/// Available security level settings.
///
/// This enforces security protocol on function URL.
///
/// Security level is only ocnfigurable for 1st Gen functions, If unspecified,
/// SECURE_OPTIONAL will be used. 2nd Gen functions are SECURE_ALWAYS ONLY.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum SecurityLevel {
/// Unspecified.
Unspecified = 0,
/// Requests for a URL that match this handler that do not use HTTPS are
/// automatically redirected to the HTTPS URL with the same path. Query
/// parameters are reserved for the redirect.
SecureAlways = 1,
/// Both HTTP and HTTPS requests with URLs that match the handler succeed
/// without redirects. The application can examine the request to determine
/// which protocol was used and respond accordingly.
SecureOptional = 2,
}
impl SecurityLevel {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "SECURITY_LEVEL_UNSPECIFIED",
Self::SecureAlways => "SECURE_ALWAYS",
Self::SecureOptional => "SECURE_OPTIONAL",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SECURITY_LEVEL_UNSPECIFIED" => Some(Self::Unspecified),
"SECURE_ALWAYS" => Some(Self::SecureAlways),
"SECURE_OPTIONAL" => Some(Self::SecureOptional),
_ => None,
}
}
}
}
/// Configuration for a secret environment variable. It has the information
/// necessary to fetch the secret value from secret manager and expose it as an
/// environment variable.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecretEnvVar {
/// Name of the environment variable.
#[prost(string, tag = "1")]
pub key: ::prost::alloc::string::String,
/// Project identifier (preferably project number but can also be the
/// project ID) of the project that contains the secret. If not set, it is
/// assumed that the secret is in the same project as the function.
#[prost(string, tag = "2")]
pub project_id: ::prost::alloc::string::String,
/// Name of the secret in secret manager (not the full resource name).
#[prost(string, tag = "3")]
pub secret: ::prost::alloc::string::String,
/// Version of the secret (version number or the string 'latest'). It is
/// recommended to use a numeric version for secret environment variables as
/// any updates to the secret value is not reflected until new instances
/// start.
#[prost(string, tag = "4")]
pub version: ::prost::alloc::string::String,
}
/// Configuration for a secret volume. It has the information necessary to fetch
/// the secret value from secret manager and make it available as files mounted
/// at the requested paths within the application container.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecretVolume {
/// The path within the container to mount the secret volume. For example,
/// setting the mount_path as `/etc/secrets` would mount the secret value files
/// under the `/etc/secrets` directory. This directory will also be completely
/// shadowed and unavailable to mount any other secrets.
/// Recommended mount path: /etc/secrets
#[prost(string, tag = "1")]
pub mount_path: ::prost::alloc::string::String,
/// Project identifier (preferably project number but can also be the project
/// ID) of the project that contains the secret. If not set, it is
/// assumed that the secret is in the same project as the function.
#[prost(string, tag = "2")]
pub project_id: ::prost::alloc::string::String,
/// Name of the secret in secret manager (not the full resource name).
#[prost(string, tag = "3")]
pub secret: ::prost::alloc::string::String,
/// List of secret versions to mount for this secret. If empty, the `latest`
/// version of the secret will be made available in a file named after the
/// secret under the mount point.
#[prost(message, repeated, tag = "4")]
pub versions: ::prost::alloc::vec::Vec<secret_volume::SecretVersion>,
}
/// Nested message and enum types in `SecretVolume`.
pub mod secret_volume {
/// Configuration for a single version.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecretVersion {
/// Version of the secret (version number or the string 'latest'). It is
/// preferable to use `latest` version with secret volumes as secret value
/// changes are reflected immediately.
#[prost(string, tag = "1")]
pub version: ::prost::alloc::string::String,
/// Relative path of the file under the mount path where the secret value for
/// this version will be fetched and made available. For example, setting the
/// mount_path as '/etc/secrets' and path as `secret_foo` would mount the
/// secret value file at `/etc/secrets/secret_foo`.
#[prost(string, tag = "2")]
pub path: ::prost::alloc::string::String,
}
}
/// Describes EventTrigger, used to request events to be sent from another
/// service.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventTrigger {
/// Output only. The resource name of the Eventarc trigger. The format of this
/// field is `projects/{project}/locations/{region}/triggers/{trigger}`.
#[prost(string, tag = "1")]
pub trigger: ::prost::alloc::string::String,
/// The region that the trigger will be in. The trigger will only receive
/// events originating in this region. It can be the same
/// region as the function, a different region or multi-region, or the global
/// region. If not provided, defaults to the same region as the function.
#[prost(string, tag = "2")]
pub trigger_region: ::prost::alloc::string::String,
/// Required. The type of event to observe. For example:
/// `google.cloud.audit.log.v1.written` or
/// `google.cloud.pubsub.topic.v1.messagePublished`.
#[prost(string, tag = "3")]
pub event_type: ::prost::alloc::string::String,
/// Criteria used to filter events.
#[prost(message, repeated, tag = "4")]
pub event_filters: ::prost::alloc::vec::Vec<EventFilter>,
/// Optional. The name of a Pub/Sub topic in the same project that will be used
/// as the transport topic for the event delivery. Format:
/// `projects/{project}/topics/{topic}`.
///
/// This is only valid for events of type
/// `google.cloud.pubsub.topic.v1.messagePublished`. The topic provided here
/// will not be deleted at function deletion.
#[prost(string, tag = "5")]
pub pubsub_topic: ::prost::alloc::string::String,
/// Optional. The email of the trigger's service account. The service account
/// must have permission to invoke Cloud Run services, the permission is
/// `run.routes.invoke`.
/// If empty, defaults to the Compute Engine default service account:
/// `{project_number}-compute@developer.gserviceaccount.com`.
#[prost(string, tag = "6")]
pub service_account_email: ::prost::alloc::string::String,
/// Optional. If unset, then defaults to ignoring failures (i.e. not retrying
/// them).
#[prost(enumeration = "event_trigger::RetryPolicy", tag = "7")]
pub retry_policy: i32,
/// Optional. The name of the channel associated with the trigger in
/// `projects/{project}/locations/{location}/channels/{channel}` format.
/// You must provide a channel to receive events from Eventarc SaaS partners.
#[prost(string, tag = "8")]
pub channel: ::prost::alloc::string::String,
}
/// Nested message and enum types in `EventTrigger`.
pub mod event_trigger {
/// Describes the retry policy in case of function's execution failure.
/// Retried execution is charged as any other execution.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum RetryPolicy {
/// Not specified.
Unspecified = 0,
/// Do not retry.
DoNotRetry = 1,
/// Retry on any failure, retry up to 7 days with an exponential backoff
/// (capped at 10 seconds).
Retry = 2,
}
impl RetryPolicy {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "RETRY_POLICY_UNSPECIFIED",
Self::DoNotRetry => "RETRY_POLICY_DO_NOT_RETRY",
Self::Retry => "RETRY_POLICY_RETRY",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"RETRY_POLICY_UNSPECIFIED" => Some(Self::Unspecified),
"RETRY_POLICY_DO_NOT_RETRY" => Some(Self::DoNotRetry),
"RETRY_POLICY_RETRY" => Some(Self::Retry),
_ => None,
}
}
}
}
/// Filters events based on exact matches on the CloudEvents attributes.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EventFilter {
/// Required. The name of a CloudEvents attribute.
#[prost(string, tag = "1")]
pub attribute: ::prost::alloc::string::String,
/// Required. The value for the attribute.
#[prost(string, tag = "2")]
pub value: ::prost::alloc::string::String,
/// Optional. The operator used for matching the events with the value of the
/// filter. If not specified, only events that have an exact key-value pair
/// specified in the filter are matched. The only allowed value is
/// `match-path-pattern`.
#[prost(string, tag = "3")]
pub operator: ::prost::alloc::string::String,
}
/// The data within all Function events.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FunctionEventData {
/// Optional. The Function event payload. Unset for deletion events.
#[prost(message, optional, tag = "1")]
pub payload: ::core::option::Option<Function>,
}
/// The environment the function is hosted on.
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Environment {
/// Unspecified
Unspecified = 0,
/// Gen 1
Gen1 = 1,
/// Gen 2
Gen2 = 2,
}
impl Environment {
/// String value of the enum field names used in the ProtoBuf definition.
///
/// The values are not transformed in any way and thus are considered stable
/// (if the ProtoBuf definition does not change) and safe for programmatic use.
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "ENVIRONMENT_UNSPECIFIED",
Self::Gen1 => "GEN_1",
Self::Gen2 => "GEN_2",
}
}
/// Creates an enum from field names used in the ProtoBuf definition.
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"ENVIRONMENT_UNSPECIFIED" => Some(Self::Unspecified),
"GEN_1" => Some(Self::Gen1),
"GEN_2" => Some(Self::Gen2),
_ => None,
}
}
}
/// The CloudEvent raised when a Function is created.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FunctionCreatedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<FunctionEventData>,
}
/// The CloudEvent raised when a Function is updated.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FunctionUpdatedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<FunctionEventData>,
}
/// The CloudEvent raised when a Function is deleted.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct FunctionDeletedEvent {
/// The data associated with the event.
#[prost(message, optional, tag = "1")]
pub data: ::core::option::Option<FunctionEventData>,
}