Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [dataproc] added node groups API protos #8908

Merged
merged 2 commits into from
Dec 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions java-dataproc/README.md
Original file line number Diff line number Diff line change
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.

Original file line number Diff line number Diff line change
@@ -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);
}
}
}
Original file line number Diff line number Diff line change
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"]
}
}
}
}
}
}
}
Original file line number Diff line number Diff line change
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
Loading