| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 61ea529 commit fbda01e
9 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
@@ -83,6 +83,15 @@ service DataAgentService { | |||
| 83 | 83 | }; | |
| 84 | 84 | } | |
| 85 | 85 | ||
| 86 | + // Creates a new DataAgent in a given project and location synchronously. | ||
| 87 | + rpc CreateDataAgentSync(CreateDataAgentRequest) returns (DataAgent) { | ||
| 88 | + option (google.api.http) = { | ||
| 89 | + post: "/v1beta/{parent=projects/*/locations/*}/dataAgents:createSync" | ||
| 90 | + body: "data_agent" | ||
| 91 | + }; | ||
| 92 | + option (google.api.method_signature) = "parent,data_agent,data_agent_id"; | ||
| 93 | + } | ||
| 94 | + | ||
| 86 | 95 | // Updates the parameters of a single DataAgent. | |
| 87 | 96 | rpc UpdateDataAgent(UpdateDataAgentRequest) | |
| 88 | 97 | returns (google.longrunning.Operation) { | |
@@ -97,6 +106,15 @@ service DataAgentService { | |||
| 97 | 106 | }; | |
| 98 | 107 | } | |
| 99 | 108 | ||
| 109 | + // Updates the parameters of a single DataAgent synchronously. | ||
| 110 | + rpc UpdateDataAgentSync(UpdateDataAgentRequest) returns (DataAgent) { | ||
| 111 | + option (google.api.http) = { | ||
| 112 | + patch: "/v1beta/{data_agent.name=projects/*/locations/*/dataAgents/*}:updateSync" | ||
| 113 | + body: "data_agent" | ||
| 114 | + }; | ||
| 115 | + option (google.api.method_signature) = "data_agent,update_mask"; | ||
| 116 | + } | ||
| 117 | + | ||
| 100 | 118 | // Deletes a single DataAgent. | |
| 101 | 119 | rpc DeleteDataAgent(DeleteDataAgentRequest) | |
| 102 | 120 | returns (google.longrunning.Operation) { | |
@@ -110,6 +128,15 @@ service DataAgentService { | |||
| 110 | 128 | }; | |
| 111 | 129 | } | |
| 112 | 130 | ||
| 131 | + // Deletes a single DataAgent synchronously. | ||
| 132 | + rpc DeleteDataAgentSync(DeleteDataAgentRequest) | ||
| 133 | + returns (google.protobuf.Empty) { | ||
| 134 | + option (google.api.http) = { | ||
| 135 | + delete: "/v1beta/{name=projects/*/locations/*/dataAgents/*}:deleteSync" | ||
| 136 | + }; | ||
| 137 | + option (google.api.method_signature) = "name"; | ||
| 138 | + } | ||
| 139 | + | ||
| 113 | 140 | // Gets the IAM policy for DataAgent | |
| 114 | 141 | rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) | |
| 115 | 142 | returns (google.iam.v1.Policy) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - // Copyright 2025 Google LLC | ||
| 1 | + // Copyright 2026 Google LLC | ||
| 2 | 2 | // | |
| 3 | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
| 4 | 4 | // you may not use this file except in compliance with the License. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments