Skip to content
This repository was archived by the owner on Sep 9, 2023. It is now read-only.

Commit 8dcace2

Browse files
chore: Re-generated to pick up changes from synthtool (#163)
* changes without context autosynth cannot find the source of changes triggered by earlier changes in this repository, or by version upgrades to tools such as linters. * chore: migrate maps/routes onto the {Java,Python} microgenerators Committer: @miraleung PiperOrigin-RevId: 357773363 Source-Link: googleapis/googleapis@a3b60b0 Source-Author: Bazel Bot <bazel-bot-development[bot]@users.noreply.github.com> Source-Date: Tue Feb 16 20:29:44 2021 +0000 Source-Repo: googleapis/googleapis-gen Source-Sha: c2f406125475d4df75373708747e1d87ba50f345 Source-Link: googleapis/googleapis-gen@c2f4061 * ci: linkage monitor CI job to use build.sh This PR updates the GitHub Actions configuration for Linkage Monitor. Before this change, the CI configuration has "mvn install" command with 6 options. It turned out that a slight difference in the command line option from "build.sh" fails the build in google-auth-library-java repository (GoogleCloudPlatform/cloud-opensource-java#1941). (@Neenu1995 found the build failure. Thanks!) Therefore, this change updates the configuration so that Linkage Monitor job just uses "build.sh" to install the artifacts into local Maven repository. # How did I test? I tested this change in java-spanner repository with this draft PR: googleapis/java-spanner#868 <img width="889" alt="Screen Shot 2021-02-12 at 16 54 18" src="https://user-images.githubusercontent.com/28604/107826467-f3cd5c80-6d52-11eb-86f1-1a8053326978.png"> It succeeded. Source-Author: Tomo Suzuki <suztomo@google.com> Source-Date: Tue Feb 16 15:56:09 2021 -0500 Source-Repo: googleapis/synthtool Source-Sha: f327d3b657a63ae4a8efd7f011a15eacae36b59c Source-Link: googleapis/synthtool@f327d3b * chore: update cloud-rad buckets doclava v2 => staging docFX v3 => prod Source-Author: Emily Ball <emilyball@google.com> Source-Date: Tue Feb 16 17:02:08 2021 -0800 Source-Repo: googleapis/synthtool Source-Sha: b416a7befcdbc42de41cf387dcf428f894fb812b Source-Link: googleapis/synthtool@b416a7b * chore(deps): update dependency google-api-core to v1.26.0 Co-authored-by: Jeffrey Rennie <rennie@google.com> Co-authored-by: Elliotte Rusty Harold <elharo@users.noreply.github.com> Source-Author: WhiteSource Renovate <bot@renovateapp.com> Source-Date: Wed Feb 17 17:10:46 2021 +0100 Source-Repo: googleapis/synthtool Source-Sha: 0973d57c09011609a283e82470a44110efb4ccf4 Source-Link: googleapis/synthtool@0973d57 * build(python): enable flakybot on library unit and system tests Source-Author: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Source-Date: Wed Feb 17 14:10:46 2021 -0700 Source-Repo: googleapis/synthtool Source-Sha: d17674372e27fb8f23013935e794aa37502071aa Source-Link: googleapis/synthtool@d176743
1 parent ef894b9 commit 8dcace2

File tree

162 files changed

+10055
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+10055
-7
lines changed

.kokoro/release/publish_javadoc.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ env_vars: {
77
value: "docs-staging"
88
}
99

10+
# cloud-rad staging
1011
env_vars: {
1112
key: "STAGING_BUCKET_V2"
12-
value: "docs-staging-v2"
13-
# Production will be at: docs-staging-v2
13+
value: "docs-staging-v2-staging"
1414
}
1515

1616
env_vars: {

.kokoro/release/publish_javadoc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ python3 -m docuploader create-metadata \
7171
--version ${VERSION} \
7272
--language java
7373

74-
# upload docs
74+
# upload docs to staging bucket
7575
python3 -m docuploader upload . \
7676
--credentials ${CREDENTIALS} \
7777
--staging-bucket ${STAGING_BUCKET_V2}

.kokoro/release/publish_javadoc11.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Format: //devtools/kokoro/config/proto/build.proto
22

3+
# cloud-rad production
34
env_vars: {
45
key: "STAGING_BUCKET_V2"
56
value: "docs-staging-v2"
6-
# Production will be at: docs-staging-v2
77
}
88

99
# Configure the docker image for kokoro-trampoline

.kokoro/release/publish_javadoc11.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ python3 -m docuploader create-metadata \
4848
--version ${VERSION} \
4949
--language java
5050

51-
# upload yml
51+
# upload yml to production bucket
5252
python3 -m docuploader upload . \
5353
--credentials ${CREDENTIALS} \
5454
--staging-bucket ${STAGING_BUCKET_V2} \

grpc-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AnalyticsAdminServiceGrpc.java

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
/*
2+
* Copyright 2020 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
* Copyright 2020 Google LLC
19+
*
20+
* Licensed under the Apache License, Version 2.0 (the "License");
21+
* you may not use this file except in compliance with the License.
22+
* You may obtain a copy of the License at
23+
*
24+
* https://www.apache.org/licenses/LICENSE-2.0
25+
*
26+
* Unless required by applicable law or agreed to in writing, software
27+
* distributed under the License is distributed on an "AS IS" BASIS,
28+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29+
* See the License for the specific language governing permissions and
30+
* limitations under the License.
31+
*/
32+
33+
/*
34+
* Copyright 2020 Google LLC
35+
*
36+
* Licensed under the Apache License, Version 2.0 (the "License");
37+
* you may not use this file except in compliance with the License.
38+
* You may obtain a copy of the License at
39+
*
40+
* https://www.apache.org/licenses/LICENSE-2.0
41+
*
42+
* Unless required by applicable law or agreed to in writing, software
43+
* distributed under the License is distributed on an "AS IS" BASIS,
44+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45+
* See the License for the specific language governing permissions and
46+
* limitations under the License.
47+
*/
48+
49+
/*
50+
* Copyright 2020 Google LLC
51+
*
52+
* Licensed under the Apache License, Version 2.0 (the "License");
53+
* you may not use this file except in compliance with the License.
54+
* You may obtain a copy of the License at
55+
*
56+
* https://www.apache.org/licenses/LICENSE-2.0
57+
*
58+
* Unless required by applicable law or agreed to in writing, software
59+
* distributed under the License is distributed on an "AS IS" BASIS,
60+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61+
* See the License for the specific language governing permissions and
62+
* limitations under the License.
63+
*/
64+
165
/*
266
* Copyright 2020 Google LLC
367
*

proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/Account.java

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
/*
2+
* Copyright 2020 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
* Copyright 2020 Google LLC
19+
*
20+
* Licensed under the Apache License, Version 2.0 (the "License");
21+
* you may not use this file except in compliance with the License.
22+
* You may obtain a copy of the License at
23+
*
24+
* https://www.apache.org/licenses/LICENSE-2.0
25+
*
26+
* Unless required by applicable law or agreed to in writing, software
27+
* distributed under the License is distributed on an "AS IS" BASIS,
28+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29+
* See the License for the specific language governing permissions and
30+
* limitations under the License.
31+
*/
32+
33+
/*
34+
* Copyright 2020 Google LLC
35+
*
36+
* Licensed under the Apache License, Version 2.0 (the "License");
37+
* you may not use this file except in compliance with the License.
38+
* You may obtain a copy of the License at
39+
*
40+
* https://www.apache.org/licenses/LICENSE-2.0
41+
*
42+
* Unless required by applicable law or agreed to in writing, software
43+
* distributed under the License is distributed on an "AS IS" BASIS,
44+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45+
* See the License for the specific language governing permissions and
46+
* limitations under the License.
47+
*/
48+
49+
/*
50+
* Copyright 2020 Google LLC
51+
*
52+
* Licensed under the Apache License, Version 2.0 (the "License");
53+
* you may not use this file except in compliance with the License.
54+
* You may obtain a copy of the License at
55+
*
56+
* https://www.apache.org/licenses/LICENSE-2.0
57+
*
58+
* Unless required by applicable law or agreed to in writing, software
59+
* distributed under the License is distributed on an "AS IS" BASIS,
60+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61+
* See the License for the specific language governing permissions and
62+
* limitations under the License.
63+
*/
64+
165
/*
266
* Copyright 2020 Google LLC
367
*

proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountOrBuilder.java

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
/*
2+
* Copyright 2020 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
* Copyright 2020 Google LLC
19+
*
20+
* Licensed under the Apache License, Version 2.0 (the "License");
21+
* you may not use this file except in compliance with the License.
22+
* You may obtain a copy of the License at
23+
*
24+
* https://www.apache.org/licenses/LICENSE-2.0
25+
*
26+
* Unless required by applicable law or agreed to in writing, software
27+
* distributed under the License is distributed on an "AS IS" BASIS,
28+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29+
* See the License for the specific language governing permissions and
30+
* limitations under the License.
31+
*/
32+
33+
/*
34+
* Copyright 2020 Google LLC
35+
*
36+
* Licensed under the Apache License, Version 2.0 (the "License");
37+
* you may not use this file except in compliance with the License.
38+
* You may obtain a copy of the License at
39+
*
40+
* https://www.apache.org/licenses/LICENSE-2.0
41+
*
42+
* Unless required by applicable law or agreed to in writing, software
43+
* distributed under the License is distributed on an "AS IS" BASIS,
44+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45+
* See the License for the specific language governing permissions and
46+
* limitations under the License.
47+
*/
48+
49+
/*
50+
* Copyright 2020 Google LLC
51+
*
52+
* Licensed under the Apache License, Version 2.0 (the "License");
53+
* you may not use this file except in compliance with the License.
54+
* You may obtain a copy of the License at
55+
*
56+
* https://www.apache.org/licenses/LICENSE-2.0
57+
*
58+
* Unless required by applicable law or agreed to in writing, software
59+
* distributed under the License is distributed on an "AS IS" BASIS,
60+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61+
* See the License for the specific language governing permissions and
62+
* limitations under the License.
63+
*/
64+
165
/*
266
* Copyright 2020 Google LLC
367
*

proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummary.java

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
/*
2+
* Copyright 2020 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
* Copyright 2020 Google LLC
19+
*
20+
* Licensed under the Apache License, Version 2.0 (the "License");
21+
* you may not use this file except in compliance with the License.
22+
* You may obtain a copy of the License at
23+
*
24+
* https://www.apache.org/licenses/LICENSE-2.0
25+
*
26+
* Unless required by applicable law or agreed to in writing, software
27+
* distributed under the License is distributed on an "AS IS" BASIS,
28+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29+
* See the License for the specific language governing permissions and
30+
* limitations under the License.
31+
*/
32+
33+
/*
34+
* Copyright 2020 Google LLC
35+
*
36+
* Licensed under the Apache License, Version 2.0 (the "License");
37+
* you may not use this file except in compliance with the License.
38+
* You may obtain a copy of the License at
39+
*
40+
* https://www.apache.org/licenses/LICENSE-2.0
41+
*
42+
* Unless required by applicable law or agreed to in writing, software
43+
* distributed under the License is distributed on an "AS IS" BASIS,
44+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45+
* See the License for the specific language governing permissions and
46+
* limitations under the License.
47+
*/
48+
49+
/*
50+
* Copyright 2020 Google LLC
51+
*
52+
* Licensed under the Apache License, Version 2.0 (the "License");
53+
* you may not use this file except in compliance with the License.
54+
* You may obtain a copy of the License at
55+
*
56+
* https://www.apache.org/licenses/LICENSE-2.0
57+
*
58+
* Unless required by applicable law or agreed to in writing, software
59+
* distributed under the License is distributed on an "AS IS" BASIS,
60+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61+
* See the License for the specific language governing permissions and
62+
* limitations under the License.
63+
*/
64+
165
/*
266
* Copyright 2020 Google LLC
367
*

proto-google-analytics-admin-v1alpha/src/main/java/com/google/analytics/admin/v1alpha/AccountSummaryOrBuilder.java

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
/*
2+
* Copyright 2020 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/*
18+
* Copyright 2020 Google LLC
19+
*
20+
* Licensed under the Apache License, Version 2.0 (the "License");
21+
* you may not use this file except in compliance with the License.
22+
* You may obtain a copy of the License at
23+
*
24+
* https://www.apache.org/licenses/LICENSE-2.0
25+
*
26+
* Unless required by applicable law or agreed to in writing, software
27+
* distributed under the License is distributed on an "AS IS" BASIS,
28+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
29+
* See the License for the specific language governing permissions and
30+
* limitations under the License.
31+
*/
32+
33+
/*
34+
* Copyright 2020 Google LLC
35+
*
36+
* Licensed under the Apache License, Version 2.0 (the "License");
37+
* you may not use this file except in compliance with the License.
38+
* You may obtain a copy of the License at
39+
*
40+
* https://www.apache.org/licenses/LICENSE-2.0
41+
*
42+
* Unless required by applicable law or agreed to in writing, software
43+
* distributed under the License is distributed on an "AS IS" BASIS,
44+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
45+
* See the License for the specific language governing permissions and
46+
* limitations under the License.
47+
*/
48+
49+
/*
50+
* Copyright 2020 Google LLC
51+
*
52+
* Licensed under the Apache License, Version 2.0 (the "License");
53+
* you may not use this file except in compliance with the License.
54+
* You may obtain a copy of the License at
55+
*
56+
* https://www.apache.org/licenses/LICENSE-2.0
57+
*
58+
* Unless required by applicable law or agreed to in writing, software
59+
* distributed under the License is distributed on an "AS IS" BASIS,
60+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61+
* See the License for the specific language governing permissions and
62+
* limitations under the License.
63+
*/
64+
165
/*
266
* Copyright 2020 Google LLC
367
*

0 commit comments

Comments
 (0)