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

Commit

Permalink
feat: publish updated definitions for cloud/datafusion/v1 and cloud/d…
Browse files Browse the repository at this point in the history
…atafusion/v1beta1 (#111)

Making fields required is not a breaking change in java
- [x] Regenerate this pull request now.

Committer: @viacheslav-rostovtsev
PiperOrigin-RevId: 421416031

Source-Link: googleapis/googleapis@5438a17

Source-Link: googleapis/googleapis-gen@cc7213f
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiY2M3MjEzZjBjMmFjNjYyM2M0ZThkNGJhNTcyMzM3YzgzNzk5MGJmNSJ9

fix: multiple fields now have field_behavior REQUIRED in cloud/datafusion/v1 service definition
fix: multiple fields now have field_behavior REQUIRED in cloud/datafusion/v1beta1 service definition
  • Loading branch information
gcf-owl-bot[bot] committed Feb 25, 2022
1 parent bdf2fee commit 995973b
Show file tree
Hide file tree
Showing 70 changed files with 4,901 additions and 1,065 deletions.
2 changes: 1 addition & 1 deletion .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
digest: sha256:3c950ed12391ebaffd1ee66d0374766a1c50144ebe6a7a0042300b2e6bb5856b
digest: sha256:387835a1375a0049ec44e02542c844302854c732d8291bdf8e472c0ff70a8f67
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ Thank you for opening a Pull Request! Before submitting your PR, there are a few
- [ ] Appropriate docs were updated (if necessary)

Fixes #<issue_number_goes_here> ☕️

If you write sample code, please follow the [samples format](
https://github.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md).

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"libraryClient": "DataFusionClient",
"rpcs": {
"CreateInstance": {
"methods": ["createInstanceAsync", "createInstanceAsync", "createInstanceOperationCallable", "createInstanceCallable"]
"methods": ["createInstanceAsync", "createInstanceAsync", "createInstanceAsync", "createInstanceOperationCallable", "createInstanceCallable"]
},
"DeleteInstance": {
"methods": ["deleteInstanceAsync", "deleteInstanceAsync", "deleteInstanceOperationCallable", "deleteInstanceCallable"]
"methods": ["deleteInstanceAsync", "deleteInstanceAsync", "deleteInstanceAsync", "deleteInstanceOperationCallable", "deleteInstanceCallable"]
},
"GetInstance": {
"methods": ["getInstance", "getInstanceCallable"]
},
"ListAvailableVersions": {
"methods": ["listAvailableVersions", "listAvailableVersions", "listAvailableVersionsPagedCallable", "listAvailableVersionsCallable"]
"methods": ["listAvailableVersions", "listAvailableVersions", "listAvailableVersions", "listAvailableVersionsPagedCallable", "listAvailableVersionsCallable"]
},
"ListInstances": {
"methods": ["listInstances", "listInstancesPagedCallable", "listInstancesCallable"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
*
* <pre>{@code
* try (DataFusionClient dataFusionClient = DataFusionClient.create()) {
* GetInstanceRequest request = GetInstanceRequest.newBuilder().setName("name3373707").build();
* GetInstanceRequest request =
* GetInstanceRequest.newBuilder()
* .setName(InstanceName.of("[PROJECT]", "[LOCATION]", "[INSTANCE]").toString())
* .build();
* Instance response = dataFusionClient.getInstance(request);
* }
* }</pre>
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
"libraryClient": "DataFusionClient",
"rpcs": {
"AddDnsPeering": {
"methods": ["addDnsPeering", "addDnsPeering", "addDnsPeeringCallable"]
"methods": ["addDnsPeering", "addDnsPeering", "addDnsPeering", "addDnsPeeringCallable"]
},
"CreateInstance": {
"methods": ["createInstanceAsync", "createInstanceAsync", "createInstanceOperationCallable", "createInstanceCallable"]
"methods": ["createInstanceAsync", "createInstanceAsync", "createInstanceAsync", "createInstanceOperationCallable", "createInstanceCallable"]
},
"DeleteInstance": {
"methods": ["deleteInstanceAsync", "deleteInstanceAsync", "deleteInstanceOperationCallable", "deleteInstanceCallable"]
"methods": ["deleteInstanceAsync", "deleteInstanceAsync", "deleteInstanceAsync", "deleteInstanceOperationCallable", "deleteInstanceCallable"]
},
"GetInstance": {
"methods": ["getInstance", "getInstanceCallable"]
},
"ListAvailableVersions": {
"methods": ["listAvailableVersions", "listAvailableVersions", "listAvailableVersionsPagedCallable", "listAvailableVersionsCallable"]
"methods": ["listAvailableVersions", "listAvailableVersions", "listAvailableVersions", "listAvailableVersionsPagedCallable", "listAvailableVersionsCallable"]
},
"ListDnsPeerings": {
"methods": ["listDnsPeerings", "listDnsPeerings", "listDnsPeerings", "listDnsPeeringsPagedCallable", "listDnsPeeringsCallable"]
Expand All @@ -35,7 +35,7 @@
"methods": ["listNamespaces", "listNamespaces", "listNamespaces", "listNamespacesPagedCallable", "listNamespacesCallable"]
},
"RemoveDnsPeering": {
"methods": ["removeDnsPeering", "removeDnsPeering", "removeDnsPeeringCallable"]
"methods": ["removeDnsPeering", "removeDnsPeering", "removeDnsPeering", "removeDnsPeeringCallable"]
},
"RemoveIamPolicy": {
"methods": ["removeIamPolicy", "removeIamPolicyCallable"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
*
* <pre>{@code
* try (DataFusionClient dataFusionClient = DataFusionClient.create()) {
* GetInstanceRequest request = GetInstanceRequest.newBuilder().setName("name3373707").build();
* GetInstanceRequest request =
* GetInstanceRequest.newBuilder()
* .setName(InstanceName.of("[PROJECT]", "[LOCATION]", "[INSTANCE]").toString())
* .build();
* Instance response = dataFusionClient.getInstance(request);
* }
* }</pre>
Expand Down

0 comments on commit 995973b

Please sign in to comment.