This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR migrates from autosynth to [owl bot](https://github.com/googleapis/repo-automation-bots/tree/master/packages/owl-bot). owl bot will save time for maintainers as it will automatically open PRs when there are updates in [googleapis-gen](https://github.com/googleapis/googleapis-gen/tree/master/google) without requiring maintainers to run `synthtool` to build the client from protos. Additionally, similar to autosynth, PRs will be automatically opened when there are template updates. fix: add async client chore: add autogenerated snippets chore: remove auth, policy, and options from the reserved names list feat: support self-signed JWT flow for service accounts chore: enable GAPIC metadata generation
- Loading branch information
Showing
33 changed files
with
1,303 additions
and
1,058 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
docker: | ||
digest: sha256:457583330eec64daa02aeb7a72a04d33e7be2428f646671ce4045dcbc0191b1e | ||
image: gcr.io/repo-automation-bots/owlbot-python:latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright 2021 Google LLC | ||
# | ||
# 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. | ||
|
||
docker: | ||
image: gcr.io/repo-automation-bots/owlbot-python:latest | ||
|
||
deep-remove-regex: | ||
- /owl-bot-staging | ||
|
||
deep-copy-regex: | ||
- source: /google/api/servicemanagement/(v.*)/.*-py/(.*) | ||
dest: /owl-bot-staging/$1/$2 | ||
|
||
begin-after-commit-hash: 6acf4a0a797f1082027985c55c4b14b60f673dd7 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,6 @@ repos: | |
hooks: | ||
- id: black | ||
- repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.8.4 | ||
rev: 3.9.1 | ||
hooks: | ||
- id: flake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
div#python2-eol { | ||
border-color: red; | ||
border-width: medium; | ||
} | ||
} | ||
|
||
/* Ensure minimum width for 'Parameters' / 'Returns' column */ | ||
dl.field-list > dt { | ||
min-width: 100px | ||
} | ||
|
||
/* Insert space between methods for readability */ | ||
dl.method { | ||
padding-top: 10px; | ||
padding-bottom: 10px | ||
} | ||
|
||
/* Insert empty space between classes */ | ||
dl.class { | ||
padding-bottom: 50px | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
{ | ||
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods", | ||
"language": "python", | ||
"libraryPackage": "google.cloud.servicemanagement_v1", | ||
"protoPackage": "google.api.servicemanagement.v1", | ||
"schema": "1.0", | ||
"services": { | ||
"ServiceManager": { | ||
"clients": { | ||
"grpc": { | ||
"libraryClient": "ServiceManagerClient", | ||
"rpcs": { | ||
"CreateService": { | ||
"methods": [ | ||
"create_service" | ||
] | ||
}, | ||
"CreateServiceConfig": { | ||
"methods": [ | ||
"create_service_config" | ||
] | ||
}, | ||
"CreateServiceRollout": { | ||
"methods": [ | ||
"create_service_rollout" | ||
] | ||
}, | ||
"DeleteService": { | ||
"methods": [ | ||
"delete_service" | ||
] | ||
}, | ||
"DisableService": { | ||
"methods": [ | ||
"disable_service" | ||
] | ||
}, | ||
"EnableService": { | ||
"methods": [ | ||
"enable_service" | ||
] | ||
}, | ||
"GenerateConfigReport": { | ||
"methods": [ | ||
"generate_config_report" | ||
] | ||
}, | ||
"GetService": { | ||
"methods": [ | ||
"get_service" | ||
] | ||
}, | ||
"GetServiceConfig": { | ||
"methods": [ | ||
"get_service_config" | ||
] | ||
}, | ||
"GetServiceRollout": { | ||
"methods": [ | ||
"get_service_rollout" | ||
] | ||
}, | ||
"ListServiceConfigs": { | ||
"methods": [ | ||
"list_service_configs" | ||
] | ||
}, | ||
"ListServiceRollouts": { | ||
"methods": [ | ||
"list_service_rollouts" | ||
] | ||
}, | ||
"ListServices": { | ||
"methods": [ | ||
"list_services" | ||
] | ||
}, | ||
"SubmitConfigSource": { | ||
"methods": [ | ||
"submit_config_source" | ||
] | ||
}, | ||
"UndeleteService": { | ||
"methods": [ | ||
"undelete_service" | ||
] | ||
} | ||
} | ||
}, | ||
"grpc-async": { | ||
"libraryClient": "ServiceManagerAsyncClient", | ||
"rpcs": { | ||
"CreateService": { | ||
"methods": [ | ||
"create_service" | ||
] | ||
}, | ||
"CreateServiceConfig": { | ||
"methods": [ | ||
"create_service_config" | ||
] | ||
}, | ||
"CreateServiceRollout": { | ||
"methods": [ | ||
"create_service_rollout" | ||
] | ||
}, | ||
"DeleteService": { | ||
"methods": [ | ||
"delete_service" | ||
] | ||
}, | ||
"DisableService": { | ||
"methods": [ | ||
"disable_service" | ||
] | ||
}, | ||
"EnableService": { | ||
"methods": [ | ||
"enable_service" | ||
] | ||
}, | ||
"GenerateConfigReport": { | ||
"methods": [ | ||
"generate_config_report" | ||
] | ||
}, | ||
"GetService": { | ||
"methods": [ | ||
"get_service" | ||
] | ||
}, | ||
"GetServiceConfig": { | ||
"methods": [ | ||
"get_service_config" | ||
] | ||
}, | ||
"GetServiceRollout": { | ||
"methods": [ | ||
"get_service_rollout" | ||
] | ||
}, | ||
"ListServiceConfigs": { | ||
"methods": [ | ||
"list_service_configs" | ||
] | ||
}, | ||
"ListServiceRollouts": { | ||
"methods": [ | ||
"list_service_rollouts" | ||
] | ||
}, | ||
"ListServices": { | ||
"methods": [ | ||
"list_services" | ||
] | ||
}, | ||
"SubmitConfigSource": { | ||
"methods": [ | ||
"submit_config_source" | ||
] | ||
}, | ||
"UndeleteService": { | ||
"methods": [ | ||
"undelete_service" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.