|
19 | 19 | import static com.google.cloud.securitycenter.v1.SecurityCenterClient.GroupAssetsPagedResponse; |
20 | 20 | import static com.google.cloud.securitycenter.v1.SecurityCenterClient.GroupFindingsPagedResponse; |
21 | 21 | import static com.google.cloud.securitycenter.v1.SecurityCenterClient.ListAssetsPagedResponse; |
| 22 | +import static com.google.cloud.securitycenter.v1.SecurityCenterClient.ListBigQueryExportsPagedResponse; |
22 | 23 | import static com.google.cloud.securitycenter.v1.SecurityCenterClient.ListFindingsPagedResponse; |
23 | 24 | import static com.google.cloud.securitycenter.v1.SecurityCenterClient.ListMuteConfigsPagedResponse; |
24 | 25 | import static com.google.cloud.securitycenter.v1.SecurityCenterClient.ListNotificationConfigsPagedResponse; |
@@ -127,6 +128,11 @@ public UnaryCallSettings<DeleteMuteConfigRequest, Empty> deleteMuteConfigSetting |
127 | 128 | return ((SecurityCenterStubSettings) getStubSettings()).deleteNotificationConfigSettings(); |
128 | 129 | } |
129 | 130 |
|
| 131 | + /** Returns the object with the settings used for calls to getBigQueryExport. */ |
| 132 | + public UnaryCallSettings<GetBigQueryExportRequest, BigQueryExport> getBigQueryExportSettings() { |
| 133 | + return ((SecurityCenterStubSettings) getStubSettings()).getBigQueryExportSettings(); |
| 134 | + } |
| 135 | + |
130 | 136 | /** Returns the object with the settings used for calls to getIamPolicy. */ |
131 | 137 | public UnaryCallSettings<GetIamPolicyRequest, Policy> getIamPolicySettings() { |
132 | 138 | return ((SecurityCenterStubSettings) getStubSettings()).getIamPolicySettings(); |
@@ -271,6 +277,30 @@ public UnaryCallSettings<UpdateSourceRequest, Source> updateSourceSettings() { |
271 | 277 | return ((SecurityCenterStubSettings) getStubSettings()).updateSecurityMarksSettings(); |
272 | 278 | } |
273 | 279 |
|
| 280 | + /** Returns the object with the settings used for calls to createBigQueryExport. */ |
| 281 | + public UnaryCallSettings<CreateBigQueryExportRequest, BigQueryExport> |
| 282 | + createBigQueryExportSettings() { |
| 283 | + return ((SecurityCenterStubSettings) getStubSettings()).createBigQueryExportSettings(); |
| 284 | + } |
| 285 | + |
| 286 | + /** Returns the object with the settings used for calls to deleteBigQueryExport. */ |
| 287 | + public UnaryCallSettings<DeleteBigQueryExportRequest, Empty> deleteBigQueryExportSettings() { |
| 288 | + return ((SecurityCenterStubSettings) getStubSettings()).deleteBigQueryExportSettings(); |
| 289 | + } |
| 290 | + |
| 291 | + /** Returns the object with the settings used for calls to updateBigQueryExport. */ |
| 292 | + public UnaryCallSettings<UpdateBigQueryExportRequest, BigQueryExport> |
| 293 | + updateBigQueryExportSettings() { |
| 294 | + return ((SecurityCenterStubSettings) getStubSettings()).updateBigQueryExportSettings(); |
| 295 | + } |
| 296 | + |
| 297 | + /** Returns the object with the settings used for calls to listBigQueryExports. */ |
| 298 | + public PagedCallSettings< |
| 299 | + ListBigQueryExportsRequest, ListBigQueryExportsResponse, ListBigQueryExportsPagedResponse> |
| 300 | + listBigQueryExportsSettings() { |
| 301 | + return ((SecurityCenterStubSettings) getStubSettings()).listBigQueryExportsSettings(); |
| 302 | + } |
| 303 | + |
274 | 304 | public static final SecurityCenterSettings create(SecurityCenterStubSettings stub) |
275 | 305 | throws IOException { |
276 | 306 | return new SecurityCenterSettings.Builder(stub.toBuilder()).build(); |
@@ -413,6 +443,12 @@ public UnaryCallSettings.Builder<DeleteMuteConfigRequest, Empty> deleteMuteConfi |
413 | 443 | return getStubSettingsBuilder().deleteNotificationConfigSettings(); |
414 | 444 | } |
415 | 445 |
|
| 446 | + /** Returns the builder for the settings used for calls to getBigQueryExport. */ |
| 447 | + public UnaryCallSettings.Builder<GetBigQueryExportRequest, BigQueryExport> |
| 448 | + getBigQueryExportSettings() { |
| 449 | + return getStubSettingsBuilder().getBigQueryExportSettings(); |
| 450 | + } |
| 451 | + |
416 | 452 | /** Returns the builder for the settings used for calls to getIamPolicy. */ |
417 | 453 | public UnaryCallSettings.Builder<GetIamPolicyRequest, Policy> getIamPolicySettings() { |
418 | 454 | return getStubSettingsBuilder().getIamPolicySettings(); |
@@ -563,6 +599,33 @@ public UnaryCallSettings.Builder<UpdateSourceRequest, Source> updateSourceSettin |
563 | 599 | return getStubSettingsBuilder().updateSecurityMarksSettings(); |
564 | 600 | } |
565 | 601 |
|
| 602 | + /** Returns the builder for the settings used for calls to createBigQueryExport. */ |
| 603 | + public UnaryCallSettings.Builder<CreateBigQueryExportRequest, BigQueryExport> |
| 604 | + createBigQueryExportSettings() { |
| 605 | + return getStubSettingsBuilder().createBigQueryExportSettings(); |
| 606 | + } |
| 607 | + |
| 608 | + /** Returns the builder for the settings used for calls to deleteBigQueryExport. */ |
| 609 | + public UnaryCallSettings.Builder<DeleteBigQueryExportRequest, Empty> |
| 610 | + deleteBigQueryExportSettings() { |
| 611 | + return getStubSettingsBuilder().deleteBigQueryExportSettings(); |
| 612 | + } |
| 613 | + |
| 614 | + /** Returns the builder for the settings used for calls to updateBigQueryExport. */ |
| 615 | + public UnaryCallSettings.Builder<UpdateBigQueryExportRequest, BigQueryExport> |
| 616 | + updateBigQueryExportSettings() { |
| 617 | + return getStubSettingsBuilder().updateBigQueryExportSettings(); |
| 618 | + } |
| 619 | + |
| 620 | + /** Returns the builder for the settings used for calls to listBigQueryExports. */ |
| 621 | + public PagedCallSettings.Builder< |
| 622 | + ListBigQueryExportsRequest, |
| 623 | + ListBigQueryExportsResponse, |
| 624 | + ListBigQueryExportsPagedResponse> |
| 625 | + listBigQueryExportsSettings() { |
| 626 | + return getStubSettingsBuilder().listBigQueryExportsSettings(); |
| 627 | + } |
| 628 | + |
566 | 629 | @Override |
567 | 630 | public SecurityCenterSettings build() throws IOException { |
568 | 631 | return new SecurityCenterSettings(this); |
|
0 commit comments