Skip to content

Commit

Permalink
feat: [dataproc] added node groups API protos (#8908)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 494840237

Source-Link: https://togithub.com/googleapis/googleapis/commit/28449ecb37897d665a5a2c6d916133b1863f0966

Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/786b1889c07c4ead16093d375c59455a0576ee25
Copy-Tag: eyJwIjoiamF2YS1kYXRhcHJvYy8uT3dsQm90LnlhbWwiLCJoIjoiNzg2YjE4ODljMDdjNGVhZDE2MDkzZDM3NWM1OTQ1NWEwNTc2ZWUyNSJ9
  • Loading branch information
gcf-owl-bot[bot] committed Dec 20, 2022
1 parent 4f5c3de commit 91aac16
Show file tree
Hide file tree
Showing 99 changed files with 18,473 additions and 914 deletions.
6 changes: 3 additions & 3 deletions java-dataproc/README.md
Expand Up @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-dataproc</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-dataproc:4.3.0'
implementation 'com.google.cloud:google-cloud-dataproc:4.4.0'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-dataproc" % "4.3.0"
libraryDependencies += "com.google.cloud" % "google-cloud-dataproc" % "4.4.0"
```

## Authentication
Expand Down

Large diffs are not rendered by default.

@@ -0,0 +1,251 @@
/*
* Copyright 2022 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
*
* https://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.
*/

package com.google.cloud.dataproc.v1;

import com.google.api.core.ApiFunction;
import com.google.api.core.BetaApi;
import com.google.api.gax.core.GoogleCredentialsProvider;
import com.google.api.gax.core.InstantiatingExecutorProvider;
import com.google.api.gax.grpc.InstantiatingGrpcChannelProvider;
import com.google.api.gax.httpjson.InstantiatingHttpJsonChannelProvider;
import com.google.api.gax.rpc.ApiClientHeaderProvider;
import com.google.api.gax.rpc.ClientContext;
import com.google.api.gax.rpc.ClientSettings;
import com.google.api.gax.rpc.OperationCallSettings;
import com.google.api.gax.rpc.TransportChannelProvider;
import com.google.api.gax.rpc.UnaryCallSettings;
import com.google.cloud.dataproc.v1.stub.NodeGroupControllerStubSettings;
import com.google.longrunning.Operation;
import java.io.IOException;
import java.util.List;
import javax.annotation.Generated;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
* Settings class to configure an instance of {@link NodeGroupControllerClient}.
*
* <p>The default instance has everything set to sensible defaults:
*
* <ul>
* <li>The default service address (dataproc.googleapis.com) and default port (443) are used.
* <li>Credentials are acquired automatically through Application Default Credentials.
* <li>Retries are configured for idempotent methods but not for non-idempotent methods.
* </ul>
*
* <p>The builder of this class is recursive, so contained classes are themselves builders. When
* build() is called, the tree of builders is called to create the complete settings object.
*
* <p>For example, to set the total timeout of getNodeGroup to 30 seconds:
*
* <pre>{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* NodeGroupControllerSettings.Builder nodeGroupControllerSettingsBuilder =
* NodeGroupControllerSettings.newBuilder();
* nodeGroupControllerSettingsBuilder
* .getNodeGroupSettings()
* .setRetrySettings(
* nodeGroupControllerSettingsBuilder.getNodeGroupSettings().getRetrySettings().toBuilder()
* .setTotalTimeout(Duration.ofSeconds(30))
* .build());
* NodeGroupControllerSettings nodeGroupControllerSettings =
* nodeGroupControllerSettingsBuilder.build();
* }</pre>
*/
@Generated("by gapic-generator-java")
public class NodeGroupControllerSettings extends ClientSettings<NodeGroupControllerSettings> {

/** Returns the object with the settings used for calls to createNodeGroup. */
public UnaryCallSettings<CreateNodeGroupRequest, Operation> createNodeGroupSettings() {
return ((NodeGroupControllerStubSettings) getStubSettings()).createNodeGroupSettings();
}

/** Returns the object with the settings used for calls to createNodeGroup. */
public OperationCallSettings<CreateNodeGroupRequest, NodeGroup, NodeGroupOperationMetadata>
createNodeGroupOperationSettings() {
return ((NodeGroupControllerStubSettings) getStubSettings()).createNodeGroupOperationSettings();
}

/** Returns the object with the settings used for calls to resizeNodeGroup. */
public UnaryCallSettings<ResizeNodeGroupRequest, Operation> resizeNodeGroupSettings() {
return ((NodeGroupControllerStubSettings) getStubSettings()).resizeNodeGroupSettings();
}

/** Returns the object with the settings used for calls to resizeNodeGroup. */
public OperationCallSettings<ResizeNodeGroupRequest, NodeGroup, NodeGroupOperationMetadata>
resizeNodeGroupOperationSettings() {
return ((NodeGroupControllerStubSettings) getStubSettings()).resizeNodeGroupOperationSettings();
}

/** Returns the object with the settings used for calls to getNodeGroup. */
public UnaryCallSettings<GetNodeGroupRequest, NodeGroup> getNodeGroupSettings() {
return ((NodeGroupControllerStubSettings) getStubSettings()).getNodeGroupSettings();
}

public static final NodeGroupControllerSettings create(NodeGroupControllerStubSettings stub)
throws IOException {
return new NodeGroupControllerSettings.Builder(stub.toBuilder()).build();
}

/** Returns a builder for the default ExecutorProvider for this service. */
public static InstantiatingExecutorProvider.Builder defaultExecutorProviderBuilder() {
return NodeGroupControllerStubSettings.defaultExecutorProviderBuilder();
}

/** Returns the default service endpoint. */
public static String getDefaultEndpoint() {
return NodeGroupControllerStubSettings.getDefaultEndpoint();
}

/** Returns the default service scopes. */
public static List<String> getDefaultServiceScopes() {
return NodeGroupControllerStubSettings.getDefaultServiceScopes();
}

/** Returns a builder for the default credentials for this service. */
public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilder() {
return NodeGroupControllerStubSettings.defaultCredentialsProviderBuilder();
}

/** Returns a builder for the default gRPC ChannelProvider for this service. */
public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProviderBuilder() {
return NodeGroupControllerStubSettings.defaultGrpcTransportProviderBuilder();
}

/** Returns a builder for the default REST ChannelProvider for this service. */
@BetaApi
public static InstantiatingHttpJsonChannelProvider.Builder
defaultHttpJsonTransportProviderBuilder() {
return NodeGroupControllerStubSettings.defaultHttpJsonTransportProviderBuilder();
}

public static TransportChannelProvider defaultTransportChannelProvider() {
return NodeGroupControllerStubSettings.defaultTransportChannelProvider();
}

@BetaApi("The surface for customizing headers is not stable yet and may change in the future.")
public static ApiClientHeaderProvider.Builder defaultApiClientHeaderProviderBuilder() {
return NodeGroupControllerStubSettings.defaultApiClientHeaderProviderBuilder();
}

/** Returns a new gRPC builder for this class. */
public static Builder newBuilder() {
return Builder.createDefault();
}

/** Returns a new REST builder for this class. */
@BetaApi
public static Builder newHttpJsonBuilder() {
return Builder.createHttpJsonDefault();
}

/** Returns a new builder for this class. */
public static Builder newBuilder(ClientContext clientContext) {
return new Builder(clientContext);
}

/** Returns a builder containing all the values of this settings class. */
public Builder toBuilder() {
return new Builder(this);
}

protected NodeGroupControllerSettings(Builder settingsBuilder) throws IOException {
super(settingsBuilder);
}

/** Builder for NodeGroupControllerSettings. */
public static class Builder extends ClientSettings.Builder<NodeGroupControllerSettings, Builder> {

protected Builder() throws IOException {
this(((ClientContext) null));
}

protected Builder(ClientContext clientContext) {
super(NodeGroupControllerStubSettings.newBuilder(clientContext));
}

protected Builder(NodeGroupControllerSettings settings) {
super(settings.getStubSettings().toBuilder());
}

protected Builder(NodeGroupControllerStubSettings.Builder stubSettings) {
super(stubSettings);
}

private static Builder createDefault() {
return new Builder(NodeGroupControllerStubSettings.newBuilder());
}

@BetaApi
private static Builder createHttpJsonDefault() {
return new Builder(NodeGroupControllerStubSettings.newHttpJsonBuilder());
}

public NodeGroupControllerStubSettings.Builder getStubSettingsBuilder() {
return ((NodeGroupControllerStubSettings.Builder) getStubSettings());
}

/**
* Applies the given settings updater function to all of the unary API methods in this service.
*
* <p>Note: This method does not support applying settings to streaming methods.
*/
public Builder applyToAllUnaryMethods(
ApiFunction<UnaryCallSettings.Builder<?, ?>, Void> settingsUpdater) {
super.applyToAllUnaryMethods(
getStubSettingsBuilder().unaryMethodSettingsBuilders(), settingsUpdater);
return this;
}

/** Returns the builder for the settings used for calls to createNodeGroup. */
public UnaryCallSettings.Builder<CreateNodeGroupRequest, Operation> createNodeGroupSettings() {
return getStubSettingsBuilder().createNodeGroupSettings();
}

/** Returns the builder for the settings used for calls to createNodeGroup. */
public OperationCallSettings.Builder<
CreateNodeGroupRequest, NodeGroup, NodeGroupOperationMetadata>
createNodeGroupOperationSettings() {
return getStubSettingsBuilder().createNodeGroupOperationSettings();
}

/** Returns the builder for the settings used for calls to resizeNodeGroup. */
public UnaryCallSettings.Builder<ResizeNodeGroupRequest, Operation> resizeNodeGroupSettings() {
return getStubSettingsBuilder().resizeNodeGroupSettings();
}

/** Returns the builder for the settings used for calls to resizeNodeGroup. */
public OperationCallSettings.Builder<
ResizeNodeGroupRequest, NodeGroup, NodeGroupOperationMetadata>
resizeNodeGroupOperationSettings() {
return getStubSettingsBuilder().resizeNodeGroupOperationSettings();
}

/** Returns the builder for the settings used for calls to getNodeGroup. */
public UnaryCallSettings.Builder<GetNodeGroupRequest, NodeGroup> getNodeGroupSettings() {
return getStubSettingsBuilder().getNodeGroupSettings();
}

@Override
public NodeGroupControllerSettings build() throws IOException {
return new NodeGroupControllerSettings(this);
}
}
}
Expand Up @@ -142,6 +142,24 @@
}
}
}
},
"NodeGroupController": {
"clients": {
"grpc": {
"libraryClient": "NodeGroupControllerClient",
"rpcs": {
"CreateNodeGroup": {
"methods": ["createNodeGroupAsync", "createNodeGroupAsync", "createNodeGroupAsync", "createNodeGroupOperationCallable", "createNodeGroupCallable"]
},
"GetNodeGroup": {
"methods": ["getNodeGroup", "getNodeGroup", "getNodeGroup", "getNodeGroupCallable"]
},
"ResizeNodeGroup": {
"methods": ["resizeNodeGroupAsync", "resizeNodeGroupAsync", "resizeNodeGroupOperationCallable", "resizeNodeGroupCallable"]
}
}
}
}
}
}
}
Expand Up @@ -117,6 +117,25 @@
* workflowTemplateServiceClient.createWorkflowTemplate(parent, template);
* }
* }</pre>
*
* <p>======================= NodeGroupControllerClient =======================
*
* <p>Service Description: The `NodeGroupControllerService` provides methods to manage node groups
* of Compute Engine managed instances.
*
* <p>Sample for NodeGroupControllerClient:
*
* <pre>{@code
* // This snippet has been automatically generated and should be regarded as a code template only.
* // It will require modifications to work:
* // - It may require correct/in-range values for request initialization.
* // - It may require specifying regional endpoints when creating the service client as shown in
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
* try (NodeGroupControllerClient nodeGroupControllerClient = NodeGroupControllerClient.create()) {
* NodeGroupName name = NodeGroupName.of("[PROJECT]", "[REGION]", "[CLUSTER]", "[NODE_GROUP]");
* NodeGroup response = nodeGroupControllerClient.getNodeGroup(name);
* }
* }</pre>
*/
@Generated("by gapic-generator-java")
package com.google.cloud.dataproc.v1;
Expand Down

0 comments on commit 91aac16

Please sign in to comment.