-
Notifications
You must be signed in to change notification settings - Fork 67
chore: add generation config #2792
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6b448d0
4f73b4c
084d146
986dc01
1488eec
42a3dc6
1317cce
8bc2906
e268923
cef94ee
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
gapic_generator_version: 2.40.2-SNAPSHOT | ||
googleapis_commitish: 3d50414a7ff3f0b8ffe8ad7858257396e4f18131 | ||
template_excludes: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we can remove There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This parameter is still required. I can change it to optional in a follow-up PR, WDYT? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. SGTM. |
||
- .github/* | ||
- .kokoro/* | ||
- samples/* | ||
- CODE_OF_CONDUCT.md | ||
- CONTRIBUTING.md | ||
- LICENSE | ||
- SECURITY.md | ||
- java.header | ||
- license-checks.xml | ||
- README.md | ||
- renovate.json | ||
- .gitignore | ||
|
||
# the libraries are ordered with respect to library name, which is | ||
# java-{library.library_name} or java-{library.api-shortname} when | ||
# library.library_name is not defined. | ||
libraries: | ||
- api_shortname: common-protos | ||
name_pretty: Common Protos | ||
product_documentation: https://github.com/googleapis/api-common-protos | ||
api_description: Protobuf classes for Google's common protos. | ||
release_level: stable | ||
client_documentation: https://cloud.google.com/java/docs/reference/proto-google-common-protos/latest/history | ||
distribution_name: com.google.api.grpc:proto-google-common-protos | ||
excluded_dependencies: "proto-google-common-protos,grpc-google-common-protos,proto-google-common-protos-parent" | ||
excluded_poms: "proto-google-common-protos-bom,proto-google-common-protos" | ||
library_type: OTHER | ||
GAPICs: | ||
- proto_path: google/api | ||
- proto_path: google/apps/card/v1 | ||
- proto_path: google/cloud | ||
- proto_path: google/cloud/audit | ||
- proto_path: google/cloud/location | ||
- proto_path: google/geo/type | ||
- proto_path: google/logging/type | ||
- proto_path: google/longrunning | ||
- proto_path: google/rpc | ||
- proto_path: google/rpc/context | ||
- proto_path: google/shopping/type | ||
- proto_path: google/type | ||
- api_shortname: iam | ||
name_pretty: IAM | ||
product_documentation: https://cloud.google.com/iam | ||
api_description: Manages access control for Google Cloud Platform resources | ||
release_level: stable | ||
client_documentation: https://cloud.google.com/java/docs/reference/proto-google-iam-v1/latest/overview | ||
distribution_name: com.google.api.grpc:proto-google-iam-v1 | ||
excluded_dependencies: "grpc-google-iam-v1" | ||
excluded_poms: "proto-google-iam-v1-bom,google-iam-policy,proto-google-iam-v1" | ||
library_type: OTHER | ||
GAPICs: | ||
- proto_path: google/iam/v1 | ||
- proto_path: google/iam/v2 | ||
- proto_path: google/iam/v2beta |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,12 @@ | |
"client_documentation": "https://cloud.google.com/java/docs/reference/proto-google-common-protos/latest/history", | ||
"release_level": "stable", | ||
"transport": "grpc", | ||
"requires_billing": true, | ||
"language": "java", | ||
"repo": "googleapis/sdk-platform-java", | ||
"repo_short": "java-common-protos", | ||
"library_type": "OTHER", | ||
"distribution_name": "com.google.api.grpc:proto-google-common-protos", | ||
"library_type": "OTHER", | ||
"requires_billing": true, | ||
"excluded_dependencies": "proto-google-common-protos,grpc-google-common-protos,proto-google-common-protos-parent", | ||
"excluded_poms": "proto-google-common-protos-bom,proto-google-common-protos" | ||
} | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we know what is the difference here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, there's an additional blank line in the main branch. Since it was not generated before, I think this line is added by hand. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's see if we can remove this version in a separate PR.