diff --git a/.bazelignore b/.bazelignore index 4c9bf0c..1d3be49 100644 --- a/.bazelignore +++ b/.bazelignore @@ -1,2 +1,3 @@ # Language-specific submodules. +go java diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cabe244..b291e7a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,9 +23,12 @@ jobs: - repo: "@engflowapis" path: "." - - repo: "@engflowapis_java" + - repo: "@engflowapis-java" path: "java" + - repo: "@engflowapis-go" + path: "go" + steps: - uses: actions/checkout@v4 @@ -63,10 +66,13 @@ jobs: "${RUNNER_TEMP}/buildozer" \ "set version ${VERSION}" \ "//MODULE.bazel:engflowapis" \ + "//go/MODULE.bazel:engflowapis-go" \ + "/go/MODULE.bazel:engflowapis" \ "//java/MODULE.bazel:engflowapis-java" \ "//java/MODULE.bazel:engflowapis" git add \ "MODULE.bazel" \ + "go/MODULE.bazel" \ "java/MODULE.bazel" git commit -m "Release ${VERSION}" @@ -91,6 +97,18 @@ jobs: ```starlark bazel_dep(name = "engflowapis", version = "${{ steps.tag.outputs.version }}") ``` + + ## Go + + ```starlark + bazel_dep(name = "engflowapis-go", version = "${{ steps.tag.outputs.version }}") + ``` + + ## Java + + ```starlark + bazel_dep(name = "engflowapis-java", version = "${{ steps.tag.outputs.version }}") + ``` prerelease: false - name: Upload Tarball diff --git a/engflow/api/availability.proto b/engflow/api/availability.proto index 6192d5b..af22941 100644 --- a/engflow/api/availability.proto +++ b/engflow/api/availability.proto @@ -18,7 +18,7 @@ package engflow.api; import "engflow/type/version.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/api;engflowapi"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/api;engflowapi"; option java_multiple_files = true; option java_outer_classname = "AvailabilityProtos"; diff --git a/engflow/api/launch_stage.proto b/engflow/api/launch_stage.proto index 270907b..cd06274 100644 --- a/engflow/api/launch_stage.proto +++ b/engflow/api/launch_stage.proto @@ -16,7 +16,7 @@ syntax = "proto3"; package engflow.api; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/api;engflowapi"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/api;engflowapi"; option java_multiple_files = true; option java_outer_classname = "LaunchStageProtos"; diff --git a/engflow/api/options.proto b/engflow/api/options.proto index 406ea03..afe89da 100644 --- a/engflow/api/options.proto +++ b/engflow/api/options.proto @@ -20,7 +20,7 @@ import "google/protobuf/descriptor.proto"; import "engflow/api/availability.proto"; import "engflow/api/launch_stage.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/api;engflowapi"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/api;engflowapi"; option java_multiple_files = true; option java_outer_classname = "AnnotationProtos"; diff --git a/engflow/auth/auth_context.proto b/engflow/auth/auth_context.proto index 8ed1b24..580acd8 100644 --- a/engflow/auth/auth_context.proto +++ b/engflow/auth/auth_context.proto @@ -19,7 +19,7 @@ package engflow.auth; import "google/api/field_behavior.proto"; import "engflow/iam/v1/user.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/auth;engflowauth"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/auth;engflowauth"; option java_multiple_files = true; option java_outer_classname = "AuthContextProtos"; diff --git a/engflow/cluster/v1/cluster.proto b/engflow/cluster/v1/cluster.proto index b37e8ef..2c741e9 100644 --- a/engflow/cluster/v1/cluster.proto +++ b/engflow/cluster/v1/cluster.proto @@ -20,7 +20,7 @@ import "engflow/api/options.proto"; import "engflow/type/version.proto"; import "google/api/field_behavior.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/cluster/v1;clusterv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/cluster/v1;clusterv1"; option java_multiple_files = true; option java_outer_classname = "ClusterProtos"; diff --git a/engflow/eventstore/v1/build_event.proto b/engflow/eventstore/v1/build_event.proto index 0fb1170..86c8a17 100644 --- a/engflow/eventstore/v1/build_event.proto +++ b/engflow/eventstore/v1/build_event.proto @@ -20,7 +20,7 @@ import "google/api/field_behavior.proto"; import "google/devtools/build/v1/build_events.proto"; import "google/devtools/build/v1/publish_build_event.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/eventstore/v1;eventstorev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/eventstore/v1;eventstorev1"; option java_multiple_files = true; option java_outer_classname = "BuildEventProtos"; diff --git a/engflow/eventstore/v1/eventstore.proto b/engflow/eventstore/v1/eventstore.proto index 57ee89d..c43d7bb 100644 --- a/engflow/eventstore/v1/eventstore.proto +++ b/engflow/eventstore/v1/eventstore.proto @@ -20,7 +20,7 @@ import "engflow/api/options.proto"; import "google/api/field_behavior.proto"; import "engflow/eventstore/v1/build_event.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/eventstore/v1;eventstorev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/eventstore/v1;eventstorev1"; option java_multiple_files = true; option java_outer_classname = "EventStoreProtos"; diff --git a/engflow/eventstore/v1/notifications.proto b/engflow/eventstore/v1/notifications.proto index 4677699..17aa173 100644 --- a/engflow/eventstore/v1/notifications.proto +++ b/engflow/eventstore/v1/notifications.proto @@ -18,7 +18,7 @@ package engflow.eventstore.v1; import "engflow/auth/auth_context.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/eventstore/v1;eventstorev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/eventstore/v1;eventstorev1"; option java_multiple_files = true; option java_outer_classname = "NotificationsProtos"; diff --git a/engflow/iam/authentication/v1/authentication.proto b/engflow/iam/authentication/v1/authentication.proto index 467bf9e..54842cd 100644 --- a/engflow/iam/authentication/v1/authentication.proto +++ b/engflow/iam/authentication/v1/authentication.proto @@ -16,7 +16,7 @@ syntax = "proto3"; package engflow.iam.authentication.v1; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/iam/authentication/v1;authenticationv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/iam/authentication/v1;authenticationv1"; import "google/rpc/status.proto"; import "google/api/field_behavior.proto"; diff --git a/engflow/iam/v1/identity_and_access_management.proto b/engflow/iam/v1/identity_and_access_management.proto index e9b0220..4fe19c8 100644 --- a/engflow/iam/v1/identity_and_access_management.proto +++ b/engflow/iam/v1/identity_and_access_management.proto @@ -20,7 +20,7 @@ import "google/api/field_behavior.proto"; import "engflow/api/options.proto"; import "engflow/iam/v1/role.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/iam/v1;iamv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/iam/v1;iamv1"; option java_multiple_files = true; option java_outer_classname = "IdentityAndAccessManagementProtos"; diff --git a/engflow/iam/v1/policy.proto b/engflow/iam/v1/policy.proto index 2b4ee08..ed972bc 100644 --- a/engflow/iam/v1/policy.proto +++ b/engflow/iam/v1/policy.proto @@ -18,7 +18,7 @@ package engflow.iam.v1; import "google/api/field_behavior.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/iam/v1;iamv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/iam/v1;iamv1"; option java_multiple_files = true; option java_outer_classname = "PolicyProtos"; diff --git a/engflow/iam/v1/role.proto b/engflow/iam/v1/role.proto index 9a8266f..998039e 100644 --- a/engflow/iam/v1/role.proto +++ b/engflow/iam/v1/role.proto @@ -19,7 +19,7 @@ package engflow.iam.v1; import "google/api/field_behavior.proto"; import "engflow/iam/v1/policy.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/iam/v1;iamv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/iam/v1;iamv1"; option java_multiple_files = true; option java_outer_classname = "RoleProtos"; diff --git a/engflow/iam/v1/session.proto b/engflow/iam/v1/session.proto index 8d5ad12..af6386a 100644 --- a/engflow/iam/v1/session.proto +++ b/engflow/iam/v1/session.proto @@ -18,7 +18,7 @@ package engflow.iam.v1; import "google/api/field_behavior.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/iam/v1;iamv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/iam/v1;iamv1"; option java_multiple_files = true; option java_outer_classname = "SessionProtos"; diff --git a/engflow/iam/v1/user.proto b/engflow/iam/v1/user.proto index 878d324..4ff2a7d 100644 --- a/engflow/iam/v1/user.proto +++ b/engflow/iam/v1/user.proto @@ -18,7 +18,7 @@ package engflow.iam.v1; import "google/api/field_behavior.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/iam/v1;iamv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/iam/v1;iamv1"; option java_multiple_files = true; option java_outer_classname = "UserProtos"; diff --git a/engflow/notification/v1/notification.proto b/engflow/notification/v1/notification.proto index d3e85d0..10f58d7 100644 --- a/engflow/notification/v1/notification.proto +++ b/engflow/notification/v1/notification.proto @@ -19,7 +19,7 @@ package engflow.notification.v1; import "google/protobuf/any.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/notification/v1;notificationv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/notification/v1;notificationv1"; option java_multiple_files = true; option java_outer_classname = "NotificationProtos"; diff --git a/engflow/notification/v1/notification_queue.proto b/engflow/notification/v1/notification_queue.proto index e5ae69a..434413e 100644 --- a/engflow/notification/v1/notification_queue.proto +++ b/engflow/notification/v1/notification_queue.proto @@ -21,7 +21,7 @@ import "google/rpc/status.proto"; import "engflow/api/options.proto"; import "engflow/notification/v1/notification.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/notification/v1;notificationv1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/notification/v1;notificationv1"; option java_multiple_files = true; option java_outer_classname = "NotificationQueueProtos"; diff --git a/engflow/resourceusage/v1/compute.proto b/engflow/resourceusage/v1/compute.proto index b94cad1..89de4db 100644 --- a/engflow/resourceusage/v1/compute.proto +++ b/engflow/resourceusage/v1/compute.proto @@ -21,7 +21,7 @@ import "google/protobuf/duration.proto"; option java_multiple_files = true; option java_outer_classname = "ComputeProtos"; option java_package = "com.engflow.resourceusage.v1.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1;resourceusagev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resourceusage/v1;resourceusagev1"; // Represents the use of compute resources (CPU, RAM). message Compute { diff --git a/engflow/resourceusage/v1/event.proto b/engflow/resourceusage/v1/event.proto index 4c15b76..aa42573 100644 --- a/engflow/resourceusage/v1/event.proto +++ b/engflow/resourceusage/v1/event.proto @@ -23,7 +23,7 @@ import "engflow/type/key_value_pair.proto"; option java_multiple_files = true; option java_outer_classname = "EventProtos"; option java_package = "com.engflow.resourceusage.v1.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1;resourceusagev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resourceusage/v1;resourceusagev1"; // Represents a single resource usage. // diff --git a/engflow/resourceusage/v1/network.proto b/engflow/resourceusage/v1/network.proto index 8268fda..44f20e3 100644 --- a/engflow/resourceusage/v1/network.proto +++ b/engflow/resourceusage/v1/network.proto @@ -5,7 +5,7 @@ package engflow.resourceusage.v1; option java_multiple_files = true; option java_outer_classname = "NetworkProtos"; option java_package = "com.engflow.resourceusage.v1.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1;resourceusagev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resourceusage/v1;resourceusagev1"; // Represents the use of network resources message Network { diff --git a/engflow/resourceusage/v1/storage.proto b/engflow/resourceusage/v1/storage.proto index 2919472..75a46cb 100644 --- a/engflow/resourceusage/v1/storage.proto +++ b/engflow/resourceusage/v1/storage.proto @@ -17,7 +17,7 @@ syntax = "proto3"; option java_multiple_files = true; option java_outer_classname = "StorageProtos"; option java_package = "com.engflow.resourceusage.v1.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resourceusage/v1;resourceusagev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resourceusage/v1;resourceusagev1"; package engflow.resourceusage.v1; diff --git a/engflow/resultstore/v1/environment.proto b/engflow/resultstore/v1/environment.proto index 3e5d235..c610428 100644 --- a/engflow/resultstore/v1/environment.proto +++ b/engflow/resultstore/v1/environment.proto @@ -16,7 +16,7 @@ syntax = "proto3"; package engflow.resultstore.v1; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resultstore/v1;resultstorev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resultstore/v1;resultstorev1"; option java_multiple_files = true; option java_outer_classname = "EnvironmentProtos"; diff --git a/engflow/resultstore/v1/invocation.proto b/engflow/resultstore/v1/invocation.proto index b26337d..3fa3b7c 100644 --- a/engflow/resultstore/v1/invocation.proto +++ b/engflow/resultstore/v1/invocation.proto @@ -21,7 +21,7 @@ import "google/protobuf/timestamp.proto"; import "google/protobuf/duration.proto"; import "engflow/resultstore/v1/environment.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resultstore/v1;resultstorev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resultstore/v1;resultstorev1"; option java_multiple_files = true; option java_outer_classname = "InvocationProtos"; diff --git a/engflow/resultstore/v1/notifications.proto b/engflow/resultstore/v1/notifications.proto index 7d330a3..ad14732 100644 --- a/engflow/resultstore/v1/notifications.proto +++ b/engflow/resultstore/v1/notifications.proto @@ -16,7 +16,7 @@ syntax = "proto3"; package engflow.resultstore.v1; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resultstore/v1;resultstorev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resultstore/v1;resultstorev1"; option java_multiple_files = true; option java_outer_classname = "NotificationsProtos"; diff --git a/engflow/resultstore/v1/resultstore.proto b/engflow/resultstore/v1/resultstore.proto index 6fec292..0abcf84 100644 --- a/engflow/resultstore/v1/resultstore.proto +++ b/engflow/resultstore/v1/resultstore.proto @@ -20,7 +20,7 @@ import "google/api/field_behavior.proto"; import "engflow/api/options.proto"; import "engflow/resultstore/v1/invocation.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/resultstore/v1;resultstorev1"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/resultstore/v1;resultstorev1"; option java_multiple_files = true; option java_outer_classname = "ResultStoreProtos"; diff --git a/engflow/type/compact_digest.proto b/engflow/type/compact_digest.proto index c59c842..b3898eb 100644 --- a/engflow/type/compact_digest.proto +++ b/engflow/type/compact_digest.proto @@ -18,7 +18,7 @@ package engflow.type; import "google/api/field_behavior.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/type;engflowtype"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/type;engflowtype"; option java_multiple_files = true; option java_outer_classname = "CompactDigestProtos"; diff --git a/engflow/type/host_and_port.proto b/engflow/type/host_and_port.proto index f9097f0..50c065d 100644 --- a/engflow/type/host_and_port.proto +++ b/engflow/type/host_and_port.proto @@ -18,7 +18,7 @@ package engflow.type; import "google/api/field_behavior.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/type;engflowtype"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/type;engflowtype"; option java_multiple_files = true; option java_outer_classname = "HostAndPortProtos"; diff --git a/engflow/type/key_value_pair.proto b/engflow/type/key_value_pair.proto index f04e9da..d7bfb16 100644 --- a/engflow/type/key_value_pair.proto +++ b/engflow/type/key_value_pair.proto @@ -18,7 +18,7 @@ package engflow.type; import "google/api/field_behavior.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/type;engflowtype"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/type;engflowtype"; option java_multiple_files = true; option java_outer_classname = "KeyValueProtos"; diff --git a/engflow/type/time_interval.proto b/engflow/type/time_interval.proto index ac3f3fa..4eef6e3 100644 --- a/engflow/type/time_interval.proto +++ b/engflow/type/time_interval.proto @@ -20,7 +20,7 @@ import "google/api/field_behavior.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/type;engflowtype"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/type;engflowtype"; option java_multiple_files = true; option java_outer_classname = "TimeIntervalProtos"; diff --git a/engflow/type/version.proto b/engflow/type/version.proto index 6883533..21cd6ed 100644 --- a/engflow/type/version.proto +++ b/engflow/type/version.proto @@ -16,7 +16,7 @@ syntax = "proto3"; package engflow.type; -option go_package = "github.com/EngFlow/engflowapis-go/engflow/type;engflowtype"; +option go_package = "github.com/EngFlow/engflowapis/go/engflow/type;engflowtype"; option java_multiple_files = true; option java_outer_classname = "VersionProtos"; diff --git a/go/.gitignore b/go/.gitignore new file mode 100644 index 0000000..5cdf68e --- /dev/null +++ b/go/.gitignore @@ -0,0 +1,12 @@ +# User-specific bazelrc +.bazelrc.user + +# bzlmod lockfile +MODULE.bazel.lock + +# Bazel convinience symlinks. +/bazel-* +.ijwb + +# macOS-specific excludes. +.DS_Store diff --git a/go/BUILD b/go/BUILD new file mode 100644 index 0000000..05a9c7d --- /dev/null +++ b/go/BUILD @@ -0,0 +1,6 @@ +exports_files( + [ + "LICENSE", + ], + visibility = ["//visibility:public"], +) diff --git a/go/LICENSE b/go/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/go/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/go/MODULE.bazel b/go/MODULE.bazel new file mode 100644 index 0000000..035fb8f --- /dev/null +++ b/go/MODULE.bazel @@ -0,0 +1,43 @@ +module( + name = "engflowapis-go", + version = "HEAD", # Automatically updated by release pipeline. +) + +bazel_dep( + name = "engflowapis", + version = "HEAD", # Automatically updated by release pipeline. +) +bazel_dep( + name = "rules_go", + version = "0.50.1", + repo_name = "io_bazel_rules_go", +) +bazel_dep( + name = "gazelle", + version = "0.31.0", +) +bazel_dep( + name = "googleapis", + version = "0.0.0-20240819-fe8ba054a", +) + +switched_rules = use_extension("@googleapis//:extensions.bzl", "switched_rules") +switched_rules.use_languages( + go = True, +) + +go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps") +go_deps.module( + path = "google.golang.org/protobuf", + sum = "h1:yBPeRvTftaleIgM3PZ/WBIZ7XM/eEYAaEyCwvyjq/gk=", + version = "v1.36.1", +) +use_repo( + go_deps, + "org_golang_google_protobuf", +) + +local_path_override( + module_name = "engflowapis", + path = "..", +) diff --git a/go/engflow/api/BUILD b/go/engflow/api/BUILD new file mode 100644 index 0000000..9139ca2 --- /dev/null +++ b/go/engflow/api/BUILD @@ -0,0 +1,16 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "api", + importpath = "github.com/EngFlow/engflowapis/go/engflow/api", + protos = [ + "@engflowapis//engflow/api:availability", + "@engflowapis//engflow/api:launch_stage", + "@engflowapis//engflow/api:options", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/type", + "@org_golang_google_protobuf//types/descriptorpb", + ], +) diff --git a/go/engflow/auth/BUILD b/go/engflow/auth/BUILD new file mode 100644 index 0000000..8d1517f --- /dev/null +++ b/go/engflow/auth/BUILD @@ -0,0 +1,14 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "auth", + importpath = "github.com/EngFlow/engflowapis/go/engflow/auth", + protos = [ + "@engflowapis//engflow/auth:auth_context", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/iam/v1", + "@googleapis//google/api:annotations_go_proto", + ], +) diff --git a/go/engflow/cluster/v1/BUILD b/go/engflow/cluster/v1/BUILD new file mode 100644 index 0000000..e49a9f8 --- /dev/null +++ b/go/engflow/cluster/v1/BUILD @@ -0,0 +1,15 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "v1", + importpath = "github.com/EngFlow/engflowapis/go/engflow/cluster/v1", + protos = [ + "@engflowapis//engflow/cluster/v1:cluster", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", + "//engflow/type", + "@googleapis//google/api:annotations_go_proto", + ], +) diff --git a/go/engflow/eventstore/v1/BUILD b/go/engflow/eventstore/v1/BUILD new file mode 100644 index 0000000..036c219 --- /dev/null +++ b/go/engflow/eventstore/v1/BUILD @@ -0,0 +1,18 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "v1", + importpath = "github.com/EngFlow/engflowapis/go/engflow/eventstore/v1", + protos = [ + "@engflowapis//engflow/eventstore/v1:build_event", + "@engflowapis//engflow/eventstore/v1:eventstore", + "@engflowapis//engflow/eventstore/v1:notifications", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", + "//engflow/auth", + "@googleapis//google/api:annotations_go_proto", + "@googleapis//google/devtools/build/v1:build_go_proto", + ], +) diff --git a/go/engflow/iam/authentication/v1/BUILD b/go/engflow/iam/authentication/v1/BUILD new file mode 100644 index 0000000..a79afe8 --- /dev/null +++ b/go/engflow/iam/authentication/v1/BUILD @@ -0,0 +1,16 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "v1", + importpath = "github.com/EngFlow/engflowapis/go/engflow/iam/authentication/v1", + protos = [ + "@engflowapis//engflow/iam/authentication/v1:authentication", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/iam/v1", + "//engflow/type", + "@googleapis//google/api:annotations_go_proto", + "@googleapis//google/rpc:status_go_proto", + ], +) diff --git a/go/engflow/iam/v1/BUILD b/go/engflow/iam/v1/BUILD new file mode 100644 index 0000000..a1dcc04 --- /dev/null +++ b/go/engflow/iam/v1/BUILD @@ -0,0 +1,18 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "v1", + importpath = "github.com/EngFlow/engflowapis/go/engflow/iam/v1", + protos = [ + "@engflowapis//engflow/iam/v1:identity_and_access_management", + "@engflowapis//engflow/iam/v1:policy", + "@engflowapis//engflow/iam/v1:role", + "@engflowapis//engflow/iam/v1:session", + "@engflowapis//engflow/iam/v1:user", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", + "@googleapis//google/api:annotations_go_proto", + ], +) diff --git a/go/engflow/notification/v1/BUILD b/go/engflow/notification/v1/BUILD new file mode 100644 index 0000000..9c81c5b --- /dev/null +++ b/go/engflow/notification/v1/BUILD @@ -0,0 +1,16 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "v1", + importpath = "github.com/EngFlow/engflowapis/go/engflow/notification/v1", + protos = [ + "@engflowapis//engflow/notification/v1:notification", + "@engflowapis//engflow/notification/v1:notification_queue", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", + "@googleapis//google/api:annotations_go_proto", + "@googleapis//google/rpc:status_go_proto", + ], +) diff --git a/go/engflow/resourceusage/v1/BUILD b/go/engflow/resourceusage/v1/BUILD new file mode 100644 index 0000000..14ed64f --- /dev/null +++ b/go/engflow/resourceusage/v1/BUILD @@ -0,0 +1,13 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "v1", + importpath = "github.com/EngFlow/engflowapis/go/engflow/resourceusage/v1", + protos = [ + "@engflowapis//engflow/resourceusage/v1", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/type", + ], +) diff --git a/go/engflow/resultstore/v1/BUILD b/go/engflow/resultstore/v1/BUILD new file mode 100644 index 0000000..0e278cd --- /dev/null +++ b/go/engflow/resultstore/v1/BUILD @@ -0,0 +1,17 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "v1", + importpath = "github.com/EngFlow/engflowapis/go/engflow/resultstore/v1", + protos = [ + "@engflowapis//engflow/resultstore/v1:environment", + "@engflowapis//engflow/resultstore/v1:invocation", + "@engflowapis//engflow/resultstore/v1:notifications", + "@engflowapis//engflow/resultstore/v1:resultstore", + ], + visibility = ["//visibility:public"], + deps = [ + "//engflow/api", + "@googleapis//google/api:annotations_go_proto", + ], +) diff --git a/go/engflow/type/BUILD b/go/engflow/type/BUILD new file mode 100644 index 0000000..a6db76c --- /dev/null +++ b/go/engflow/type/BUILD @@ -0,0 +1,19 @@ +load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library") + +go_proto_library( + name = "type", + importpath = "github.com/EngFlow/engflowapis/go/engflow/type", + protos = [ + "@engflowapis//engflow/type:compact_digest", + "@engflowapis//engflow/type:host_and_port", + "@engflowapis//engflow/type:key_value_pair", + "@engflowapis//engflow/type:time_interval", + "@engflowapis//engflow/type:version", + ], + visibility = ["//visibility:public"], + deps = [ + "@googleapis//google/api:annotations_go_proto", + "@org_golang_google_protobuf//types/known/durationpb", + "@org_golang_google_protobuf//types/known/timestamppb", + ], +)