1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- syntax = "proto3";
- package google.cloud.functions.v2alpha;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/any.proto";
- import "google/protobuf/field_mask.proto";
- import "google/protobuf/timestamp.proto";
- option go_package = "google.golang.org/genproto/googleapis/cloud/functions/v2alpha;functions";
- option java_multiple_files = true;
- option java_outer_classname = "FunctionsProto";
- option java_package = "com.google.cloud.functions.v2alpha";
- option objc_class_prefix = "GCF";
- option (google.api.resource_definition) = {
- type: "artifactregistry.googleapis.com/Repository"
- pattern: "projects/{project}/locations/{location}/repositories/{repository}"
- };
- option (google.api.resource_definition) = {
- type: "cloudbuild.googleapis.com/Build"
- pattern: "projects/{project}/locations/{location}/builds/{build}"
- };
- option (google.api.resource_definition) = {
- type: "cloudbuild.googleapis.com/WorkerPool"
- pattern: "projects/{project}/locations/{location}/workerPools/{worker_pool}"
- };
- option (google.api.resource_definition) = {
- type: "run.googleapis.com/Service"
- pattern: "projects/{project}/locations/{location}/services/{service}"
- };
- option (google.api.resource_definition) = {
- type: "vpcaccess.googleapis.com/Connector"
- pattern: "projects/{project}/locations/{location}/connectors/{connector}"
- };
- option (google.api.resource_definition) = {
- type: "eventarc.googleapis.com/Trigger"
- pattern: "projects/{project}/locations/{location}/triggers/{trigger}"
- };
- option (google.api.resource_definition) = {
- type: "eventarc.googleapis.com/Channel"
- pattern: "projects/{project}/locations/{location}/channels/{channel}"
- };
- option (google.api.resource_definition) = {
- type: "pubsub.googleapis.com/Topic"
- pattern: "projects/{project}/topics/{topic}"
- };
- service FunctionService {
- option (google.api.default_host) = "cloudfunctions.googleapis.com";
- option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
-
- rpc GetFunction(GetFunctionRequest) returns (Function) {
- option (google.api.http) = {
- get: "/v2alpha/{name=projects/*/locations/*/functions/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
- rpc ListFunctions(ListFunctionsRequest) returns (ListFunctionsResponse) {
- option (google.api.http) = {
- get: "/v2alpha/{parent=projects/*/locations/*}/functions"
- };
- option (google.api.method_signature) = "parent";
- }
-
-
-
- rpc CreateFunction(CreateFunctionRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v2alpha/{parent=projects/*/locations/*}/functions"
- body: "function"
- };
- option (google.api.method_signature) = "parent,function,function_id";
- option (google.longrunning.operation_info) = {
- response_type: "google.cloud.functions.v2alpha.Function"
- metadata_type: "google.cloud.functions.v2alpha.OperationMetadata"
- };
- }
-
- rpc UpdateFunction(UpdateFunctionRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- patch: "/v2alpha/{function.name=projects/*/locations/*/functions/*}"
- body: "function"
- };
- option (google.api.method_signature) = "function,update_mask";
- option (google.longrunning.operation_info) = {
- response_type: "google.cloud.functions.v2alpha.Function"
- metadata_type: "google.cloud.functions.v2alpha.OperationMetadata"
- };
- }
-
-
-
- rpc DeleteFunction(DeleteFunctionRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- delete: "/v2alpha/{name=projects/*/locations/*/functions/*}"
- };
- option (google.api.method_signature) = "name";
- option (google.longrunning.operation_info) = {
- response_type: "google.protobuf.Empty"
- metadata_type: "google.cloud.functions.v2alpha.OperationMetadata"
- };
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- rpc GenerateUploadUrl(GenerateUploadUrlRequest) returns (GenerateUploadUrlResponse) {
- option (google.api.http) = {
- post: "/v2alpha/{parent=projects/*/locations/*}/functions:generateUploadUrl"
- body: "*"
- };
- }
-
-
-
-
-
- rpc GenerateDownloadUrl(GenerateDownloadUrlRequest) returns (GenerateDownloadUrlResponse) {
- option (google.api.http) = {
- post: "/v2alpha/{name=projects/*/locations/*/functions/*}:generateDownloadUrl"
- body: "*"
- };
- }
-
- rpc ListRuntimes(ListRuntimesRequest) returns (ListRuntimesResponse) {
- option (google.api.http) = {
- get: "/v2alpha/{parent=projects/*/locations/*}/runtimes"
- };
- option (google.api.method_signature) = "parent";
- }
- }
- enum Environment {
-
- ENVIRONMENT_UNSPECIFIED = 0;
-
- GEN_1 = 1;
-
- GEN_2 = 2;
- }
- message Function {
- option (google.api.resource) = {
- type: "cloudfunctions.googleapis.com/Function"
- pattern: "projects/{project}/locations/{location}/functions/{function}"
- plural: "functions"
- singular: "function"
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- ACTIVE = 1;
-
- FAILED = 2;
-
- DEPLOYING = 3;
-
- DELETING = 4;
-
-
- UNKNOWN = 5;
- }
-
-
- string name = 1;
-
- Environment environment = 10;
-
- string description = 2;
-
-
- BuildConfig build_config = 3;
-
-
- ServiceConfig service_config = 4;
-
-
- EventTrigger event_trigger = 5;
-
- State state = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- map<string, string> labels = 8;
-
- repeated StateMessage state_messages = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message StateMessage {
-
- enum Severity {
-
- SEVERITY_UNSPECIFIED = 0;
-
- ERROR = 1;
-
- WARNING = 2;
-
- INFO = 3;
- }
-
- Severity severity = 1;
-
- string type = 2;
-
- string message = 3;
- }
- message StorageSource {
-
-
-
- string bucket = 1;
-
-
-
-
- string object = 2;
-
-
- int64 generation = 3;
- }
- message RepoSource {
-
-
- oneof revision {
-
-
-
-
- string branch_name = 3;
-
-
-
-
- string tag_name = 4;
-
- string commit_sha = 5;
- }
-
-
- string project_id = 1;
-
- string repo_name = 2;
-
-
-
-
-
- string dir = 6;
-
-
- bool invert_regex = 7;
- }
- message Source {
-
-
- oneof source {
-
- StorageSource storage_source = 1;
-
-
- RepoSource repo_source = 2;
- }
- }
- message SourceProvenance {
-
-
- StorageSource resolved_storage_source = 1;
-
-
- RepoSource resolved_repo_source = 2;
- }
- message BuildConfig {
-
-
- string build = 1 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "cloudbuild.googleapis.com/Build"
- }
- ];
-
-
-
-
-
- string runtime = 2;
-
-
-
-
-
-
- string entry_point = 3;
-
- Source source = 4;
-
- SourceProvenance source_provenance = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
-
-
-
-
-
-
- string worker_pool = 5 [(google.api.resource_reference) = {
- type: "cloudbuild.googleapis.com/WorkerPool"
- }];
-
- map<string, string> environment_variables = 6;
-
-
-
-
-
-
-
-
-
-
-
-
- string docker_repository = 7 [
- (google.api.field_behavior) = OPTIONAL,
- (google.api.resource_reference) = {
- type: "artifactregistry.googleapis.com/Repository"
- }
- ];
- }
- message ServiceConfig {
-
-
-
-
- enum VpcConnectorEgressSettings {
-
- VPC_CONNECTOR_EGRESS_SETTINGS_UNSPECIFIED = 0;
-
- PRIVATE_RANGES_ONLY = 1;
-
-
- ALL_TRAFFIC = 2;
- }
-
-
-
-
-
- enum IngressSettings {
-
- INGRESS_SETTINGS_UNSPECIFIED = 0;
-
- ALLOW_ALL = 1;
-
- ALLOW_INTERNAL_ONLY = 2;
-
- ALLOW_INTERNAL_AND_GCLB = 3;
- }
-
-
-
- string service = 1 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "run.googleapis.com/Service"
- }
- ];
-
-
-
- int32 timeout_seconds = 2;
-
-
-
-
-
-
- string available_memory = 13;
-
- map<string, string> environment_variables = 4;
-
-
-
-
-
-
-
-
-
-
-
-
- int32 max_instance_count = 5;
-
-
-
-
-
-
-
-
-
- int32 min_instance_count = 12;
-
-
- string vpc_connector = 6 [(google.api.resource_reference) = {
- type: "vpcaccess.googleapis.com/Connector"
- }];
-
-
- VpcConnectorEgressSettings vpc_connector_egress_settings = 7;
-
-
- IngressSettings ingress_settings = 8;
-
- string uri = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
- string service_account_email = 10;
-
-
-
-
-
- bool all_traffic_on_latest_revision = 16;
-
- repeated SecretEnvVar secret_environment_variables = 17;
-
- repeated SecretVolume secret_volumes = 19;
-
- string revision = 18 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message SecretEnvVar {
-
- string key = 1;
-
-
-
- string project_id = 2;
-
- string secret = 3;
-
-
-
-
- string version = 4;
- }
- message SecretVolume {
-
- message SecretVersion {
-
-
-
- string version = 1;
-
-
-
-
- string path = 2;
- }
-
-
-
-
-
- string mount_path = 1;
-
-
-
- string project_id = 2;
-
- string secret = 3;
-
-
-
- repeated SecretVersion versions = 4;
- }
- message EventTrigger {
-
-
- enum RetryPolicy {
-
- RETRY_POLICY_UNSPECIFIED = 0;
-
- RETRY_POLICY_DO_NOT_RETRY = 1;
-
-
- RETRY_POLICY_RETRY = 2;
- }
-
-
- string trigger = 1 [
- (google.api.field_behavior) = OUTPUT_ONLY,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/Trigger"
- }
- ];
-
-
-
-
- string trigger_region = 2;
-
-
-
- string event_type = 3 [(google.api.field_behavior) = REQUIRED];
-
- repeated EventFilter event_filters = 4;
-
-
-
-
-
-
-
- string pubsub_topic = 5 [
- (google.api.field_behavior) = OPTIONAL,
- (google.api.resource_reference) = {
- type: "pubsub.googleapis.com/Topic"
- }
- ];
-
-
-
-
-
- string service_account_email = 6 [(google.api.field_behavior) = OPTIONAL];
-
- RetryPolicy retry_policy = 7 [(google.api.field_behavior) = OPTIONAL];
-
-
-
- string channel = 8 [
- (google.api.field_behavior) = OPTIONAL,
- (google.api.resource_reference) = {
- type: "eventarc.googleapis.com/Channel"
- }
- ];
- }
- message EventFilter {
-
- string attribute = 1 [(google.api.field_behavior) = REQUIRED];
-
- string value = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- string operator = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- message GetFunctionRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "cloudfunctions.googleapis.com/Function"
- }
- ];
- }
- message ListFunctionsRequest {
-
-
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "cloudfunctions.googleapis.com/Function"
- }
- ];
-
- int32 page_size = 2;
-
-
-
-
- string page_token = 3;
-
-
- string filter = 4;
-
-
-
- string order_by = 5;
- }
- message ListFunctionsResponse {
-
- repeated Function functions = 1;
-
-
- string next_page_token = 2;
-
-
- repeated string unreachable = 3;
- }
- message CreateFunctionRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
- Function function = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
- string function_id = 3;
- }
- message UpdateFunctionRequest {
-
- Function function = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- google.protobuf.FieldMask update_mask = 2;
- }
- message DeleteFunctionRequest {
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "cloudfunctions.googleapis.com/Function"
- }
- ];
- }
- message GenerateUploadUrlRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
- }
- message GenerateUploadUrlResponse {
-
-
-
- string upload_url = 1;
-
-
-
-
-
-
-
-
- StorageSource storage_source = 2;
- }
- message GenerateDownloadUrlRequest {
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "cloudfunctions.googleapis.com/Function"
- }
- ];
- }
- message GenerateDownloadUrlResponse {
-
-
- string download_url = 1;
- }
- message ListRuntimesRequest {
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "locations.googleapis.com/Location"
- }
- ];
-
-
- string filter = 2;
- }
- message ListRuntimesResponse {
-
-
- message Runtime {
-
- string name = 1;
-
- string display_name = 5;
-
- RuntimeStage stage = 2;
-
- repeated string warnings = 3;
-
- Environment environment = 4;
- }
-
- enum RuntimeStage {
-
- RUNTIME_STAGE_UNSPECIFIED = 0;
-
- DEVELOPMENT = 1;
-
- ALPHA = 2;
-
- BETA = 3;
-
- GA = 4;
-
- DEPRECATED = 5;
-
- DECOMMISSIONED = 6;
- }
-
- repeated Runtime runtimes = 1;
- }
- message OperationMetadata {
-
- google.protobuf.Timestamp create_time = 1;
-
- google.protobuf.Timestamp end_time = 2;
-
- string target = 3;
-
- string verb = 4;
-
- string status_detail = 5;
-
-
-
-
- bool cancel_requested = 6;
-
- string api_version = 7;
-
- google.protobuf.Any request_resource = 8;
-
- repeated Stage stages = 9;
- }
- message Stage {
-
- enum Name {
-
- NAME_UNSPECIFIED = 0;
-
- ARTIFACT_REGISTRY = 1;
-
- BUILD = 2;
-
- SERVICE = 3;
-
- TRIGGER = 4;
-
- SERVICE_ROLLBACK = 5;
-
- TRIGGER_ROLLBACK = 6;
- }
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- NOT_STARTED = 1;
-
- IN_PROGRESS = 2;
-
- COMPLETE = 3;
- }
-
- Name name = 1;
-
- string message = 2;
-
- State state = 3;
-
- string resource = 4;
-
- string resource_uri = 5;
-
- repeated StateMessage state_messages = 6;
- }
|