|
22 | 22 | import static com.google.cloud.vmwareengine.v1.VmwareEngineClient.ListNetworkPoliciesPagedResponse;
|
23 | 23 | import static com.google.cloud.vmwareengine.v1.VmwareEngineClient.ListNodeTypesPagedResponse;
|
24 | 24 | import static com.google.cloud.vmwareengine.v1.VmwareEngineClient.ListPrivateCloudsPagedResponse;
|
| 25 | +import static com.google.cloud.vmwareengine.v1.VmwareEngineClient.ListPrivateConnectionPeeringRoutesPagedResponse; |
| 26 | +import static com.google.cloud.vmwareengine.v1.VmwareEngineClient.ListPrivateConnectionsPagedResponse; |
25 | 27 | import static com.google.cloud.vmwareengine.v1.VmwareEngineClient.ListSubnetsPagedResponse;
|
26 | 28 | import static com.google.cloud.vmwareengine.v1.VmwareEngineClient.ListVmwareEngineNetworksPagedResponse;
|
27 | 29 |
|
@@ -199,6 +201,22 @@ public UnaryCallSettings<DeleteClusterRequest, Operation> deleteClusterSettings(
|
199 | 201 | return ((VmwareEngineStubSettings) getStubSettings()).listSubnetsSettings();
|
200 | 202 | }
|
201 | 203 |
|
| 204 | + /** Returns the object with the settings used for calls to getSubnet. */ |
| 205 | + public UnaryCallSettings<GetSubnetRequest, Subnet> getSubnetSettings() { |
| 206 | + return ((VmwareEngineStubSettings) getStubSettings()).getSubnetSettings(); |
| 207 | + } |
| 208 | + |
| 209 | + /** Returns the object with the settings used for calls to updateSubnet. */ |
| 210 | + public UnaryCallSettings<UpdateSubnetRequest, Operation> updateSubnetSettings() { |
| 211 | + return ((VmwareEngineStubSettings) getStubSettings()).updateSubnetSettings(); |
| 212 | + } |
| 213 | + |
| 214 | + /** Returns the object with the settings used for calls to updateSubnet. */ |
| 215 | + public OperationCallSettings<UpdateSubnetRequest, Subnet, OperationMetadata> |
| 216 | + updateSubnetOperationSettings() { |
| 217 | + return ((VmwareEngineStubSettings) getStubSettings()).updateSubnetOperationSettings(); |
| 218 | + } |
| 219 | + |
202 | 220 | /** Returns the object with the settings used for calls to listNodeTypes. */
|
203 | 221 | public PagedCallSettings<ListNodeTypesRequest, ListNodeTypesResponse, ListNodeTypesPagedResponse>
|
204 | 222 | listNodeTypesSettings() {
|
@@ -373,6 +391,70 @@ public UnaryCallSettings<DeleteNetworkPolicyRequest, Operation> deleteNetworkPol
|
373 | 391 | return ((VmwareEngineStubSettings) getStubSettings()).listVmwareEngineNetworksSettings();
|
374 | 392 | }
|
375 | 393 |
|
| 394 | + /** Returns the object with the settings used for calls to createPrivateConnection. */ |
| 395 | + public UnaryCallSettings<CreatePrivateConnectionRequest, Operation> |
| 396 | + createPrivateConnectionSettings() { |
| 397 | + return ((VmwareEngineStubSettings) getStubSettings()).createPrivateConnectionSettings(); |
| 398 | + } |
| 399 | + |
| 400 | + /** Returns the object with the settings used for calls to createPrivateConnection. */ |
| 401 | + public OperationCallSettings<CreatePrivateConnectionRequest, PrivateConnection, OperationMetadata> |
| 402 | + createPrivateConnectionOperationSettings() { |
| 403 | + return ((VmwareEngineStubSettings) getStubSettings()) |
| 404 | + .createPrivateConnectionOperationSettings(); |
| 405 | + } |
| 406 | + |
| 407 | + /** Returns the object with the settings used for calls to getPrivateConnection. */ |
| 408 | + public UnaryCallSettings<GetPrivateConnectionRequest, PrivateConnection> |
| 409 | + getPrivateConnectionSettings() { |
| 410 | + return ((VmwareEngineStubSettings) getStubSettings()).getPrivateConnectionSettings(); |
| 411 | + } |
| 412 | + |
| 413 | + /** Returns the object with the settings used for calls to listPrivateConnections. */ |
| 414 | + public PagedCallSettings< |
| 415 | + ListPrivateConnectionsRequest, |
| 416 | + ListPrivateConnectionsResponse, |
| 417 | + ListPrivateConnectionsPagedResponse> |
| 418 | + listPrivateConnectionsSettings() { |
| 419 | + return ((VmwareEngineStubSettings) getStubSettings()).listPrivateConnectionsSettings(); |
| 420 | + } |
| 421 | + |
| 422 | + /** Returns the object with the settings used for calls to updatePrivateConnection. */ |
| 423 | + public UnaryCallSettings<UpdatePrivateConnectionRequest, Operation> |
| 424 | + updatePrivateConnectionSettings() { |
| 425 | + return ((VmwareEngineStubSettings) getStubSettings()).updatePrivateConnectionSettings(); |
| 426 | + } |
| 427 | + |
| 428 | + /** Returns the object with the settings used for calls to updatePrivateConnection. */ |
| 429 | + public OperationCallSettings<UpdatePrivateConnectionRequest, PrivateConnection, OperationMetadata> |
| 430 | + updatePrivateConnectionOperationSettings() { |
| 431 | + return ((VmwareEngineStubSettings) getStubSettings()) |
| 432 | + .updatePrivateConnectionOperationSettings(); |
| 433 | + } |
| 434 | + |
| 435 | + /** Returns the object with the settings used for calls to deletePrivateConnection. */ |
| 436 | + public UnaryCallSettings<DeletePrivateConnectionRequest, Operation> |
| 437 | + deletePrivateConnectionSettings() { |
| 438 | + return ((VmwareEngineStubSettings) getStubSettings()).deletePrivateConnectionSettings(); |
| 439 | + } |
| 440 | + |
| 441 | + /** Returns the object with the settings used for calls to deletePrivateConnection. */ |
| 442 | + public OperationCallSettings<DeletePrivateConnectionRequest, Empty, OperationMetadata> |
| 443 | + deletePrivateConnectionOperationSettings() { |
| 444 | + return ((VmwareEngineStubSettings) getStubSettings()) |
| 445 | + .deletePrivateConnectionOperationSettings(); |
| 446 | + } |
| 447 | + |
| 448 | + /** Returns the object with the settings used for calls to listPrivateConnectionPeeringRoutes. */ |
| 449 | + public PagedCallSettings< |
| 450 | + ListPrivateConnectionPeeringRoutesRequest, |
| 451 | + ListPrivateConnectionPeeringRoutesResponse, |
| 452 | + ListPrivateConnectionPeeringRoutesPagedResponse> |
| 453 | + listPrivateConnectionPeeringRoutesSettings() { |
| 454 | + return ((VmwareEngineStubSettings) getStubSettings()) |
| 455 | + .listPrivateConnectionPeeringRoutesSettings(); |
| 456 | + } |
| 457 | + |
376 | 458 | /** Returns the object with the settings used for calls to listLocations. */
|
377 | 459 | public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
|
378 | 460 | listLocationsSettings() {
|
@@ -629,6 +711,22 @@ public UnaryCallSettings.Builder<DeleteClusterRequest, Operation> deleteClusterS
|
629 | 711 | return getStubSettingsBuilder().listSubnetsSettings();
|
630 | 712 | }
|
631 | 713 |
|
| 714 | + /** Returns the builder for the settings used for calls to getSubnet. */ |
| 715 | + public UnaryCallSettings.Builder<GetSubnetRequest, Subnet> getSubnetSettings() { |
| 716 | + return getStubSettingsBuilder().getSubnetSettings(); |
| 717 | + } |
| 718 | + |
| 719 | + /** Returns the builder for the settings used for calls to updateSubnet. */ |
| 720 | + public UnaryCallSettings.Builder<UpdateSubnetRequest, Operation> updateSubnetSettings() { |
| 721 | + return getStubSettingsBuilder().updateSubnetSettings(); |
| 722 | + } |
| 723 | + |
| 724 | + /** Returns the builder for the settings used for calls to updateSubnet. */ |
| 725 | + public OperationCallSettings.Builder<UpdateSubnetRequest, Subnet, OperationMetadata> |
| 726 | + updateSubnetOperationSettings() { |
| 727 | + return getStubSettingsBuilder().updateSubnetOperationSettings(); |
| 728 | + } |
| 729 | + |
632 | 730 | /** Returns the builder for the settings used for calls to listNodeTypes. */
|
633 | 731 | public PagedCallSettings.Builder<
|
634 | 732 | ListNodeTypesRequest, ListNodeTypesResponse, ListNodeTypesPagedResponse>
|
@@ -813,6 +911,70 @@ public UnaryCallSettings.Builder<GetNodeTypeRequest, NodeType> getNodeTypeSettin
|
813 | 911 | return getStubSettingsBuilder().listVmwareEngineNetworksSettings();
|
814 | 912 | }
|
815 | 913 |
|
| 914 | + /** Returns the builder for the settings used for calls to createPrivateConnection. */ |
| 915 | + public UnaryCallSettings.Builder<CreatePrivateConnectionRequest, Operation> |
| 916 | + createPrivateConnectionSettings() { |
| 917 | + return getStubSettingsBuilder().createPrivateConnectionSettings(); |
| 918 | + } |
| 919 | + |
| 920 | + /** Returns the builder for the settings used for calls to createPrivateConnection. */ |
| 921 | + public OperationCallSettings.Builder< |
| 922 | + CreatePrivateConnectionRequest, PrivateConnection, OperationMetadata> |
| 923 | + createPrivateConnectionOperationSettings() { |
| 924 | + return getStubSettingsBuilder().createPrivateConnectionOperationSettings(); |
| 925 | + } |
| 926 | + |
| 927 | + /** Returns the builder for the settings used for calls to getPrivateConnection. */ |
| 928 | + public UnaryCallSettings.Builder<GetPrivateConnectionRequest, PrivateConnection> |
| 929 | + getPrivateConnectionSettings() { |
| 930 | + return getStubSettingsBuilder().getPrivateConnectionSettings(); |
| 931 | + } |
| 932 | + |
| 933 | + /** Returns the builder for the settings used for calls to listPrivateConnections. */ |
| 934 | + public PagedCallSettings.Builder< |
| 935 | + ListPrivateConnectionsRequest, |
| 936 | + ListPrivateConnectionsResponse, |
| 937 | + ListPrivateConnectionsPagedResponse> |
| 938 | + listPrivateConnectionsSettings() { |
| 939 | + return getStubSettingsBuilder().listPrivateConnectionsSettings(); |
| 940 | + } |
| 941 | + |
| 942 | + /** Returns the builder for the settings used for calls to updatePrivateConnection. */ |
| 943 | + public UnaryCallSettings.Builder<UpdatePrivateConnectionRequest, Operation> |
| 944 | + updatePrivateConnectionSettings() { |
| 945 | + return getStubSettingsBuilder().updatePrivateConnectionSettings(); |
| 946 | + } |
| 947 | + |
| 948 | + /** Returns the builder for the settings used for calls to updatePrivateConnection. */ |
| 949 | + public OperationCallSettings.Builder< |
| 950 | + UpdatePrivateConnectionRequest, PrivateConnection, OperationMetadata> |
| 951 | + updatePrivateConnectionOperationSettings() { |
| 952 | + return getStubSettingsBuilder().updatePrivateConnectionOperationSettings(); |
| 953 | + } |
| 954 | + |
| 955 | + /** Returns the builder for the settings used for calls to deletePrivateConnection. */ |
| 956 | + public UnaryCallSettings.Builder<DeletePrivateConnectionRequest, Operation> |
| 957 | + deletePrivateConnectionSettings() { |
| 958 | + return getStubSettingsBuilder().deletePrivateConnectionSettings(); |
| 959 | + } |
| 960 | + |
| 961 | + /** Returns the builder for the settings used for calls to deletePrivateConnection. */ |
| 962 | + public OperationCallSettings.Builder<DeletePrivateConnectionRequest, Empty, OperationMetadata> |
| 963 | + deletePrivateConnectionOperationSettings() { |
| 964 | + return getStubSettingsBuilder().deletePrivateConnectionOperationSettings(); |
| 965 | + } |
| 966 | + |
| 967 | + /** |
| 968 | + * Returns the builder for the settings used for calls to listPrivateConnectionPeeringRoutes. |
| 969 | + */ |
| 970 | + public PagedCallSettings.Builder< |
| 971 | + ListPrivateConnectionPeeringRoutesRequest, |
| 972 | + ListPrivateConnectionPeeringRoutesResponse, |
| 973 | + ListPrivateConnectionPeeringRoutesPagedResponse> |
| 974 | + listPrivateConnectionPeeringRoutesSettings() { |
| 975 | + return getStubSettingsBuilder().listPrivateConnectionPeeringRoutesSettings(); |
| 976 | + } |
| 977 | + |
816 | 978 | /** Returns the builder for the settings used for calls to listLocations. */
|
817 | 979 | public PagedCallSettings.Builder<
|
818 | 980 | ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
|
|
0 commit comments