use of com.google.cloud.asset.v1.UpdateFeedRequest in project gapic-generator-java by googleapis.
the class AsyncUpdateFeed method asyncUpdateFeed.
public static void asyncUpdateFeed() throws Exception {
// It may require modifications to work in your environment.
try (AssetServiceClient assetServiceClient = AssetServiceClient.create()) {
UpdateFeedRequest request = UpdateFeedRequest.newBuilder().setFeed(Feed.newBuilder().build()).setUpdateMask(FieldMask.newBuilder().build()).build();
ApiFuture<Feed> future = assetServiceClient.updateFeedCallable().futureCall(request);
// Do something.
Feed response = future.get();
}
}
use of com.google.cloud.asset.v1.UpdateFeedRequest in project gapic-generator-java by googleapis.
the class SyncUpdateFeed method syncUpdateFeed.
public static void syncUpdateFeed() throws Exception {
// It may require modifications to work in your environment.
try (AssetServiceClient assetServiceClient = AssetServiceClient.create()) {
UpdateFeedRequest request = UpdateFeedRequest.newBuilder().setFeed(Feed.newBuilder().build()).setUpdateMask(FieldMask.newBuilder().build()).build();
Feed response = assetServiceClient.updateFeed(request);
}
}
use of com.google.cloud.asset.v1.UpdateFeedRequest in project java-asset by googleapis.
the class UpdateFeedExample method updateFeed.
// Update a feed
public static void updateFeed(String feedName, String topic) throws Exception {
// String feedName = "MY_FEED_NAME"
// String topic = "projects/[PROJECT_ID]/topics/[TOPIC_NAME]"
Feed feed = Feed.newBuilder().setName(feedName).setFeedOutputConfig(FeedOutputConfig.newBuilder().setPubsubDestination(PubsubDestination.newBuilder().setTopic(topic).build()).build()).build();
UpdateFeedRequest request = UpdateFeedRequest.newBuilder().setFeed(feed).setUpdateMask(FieldMask.newBuilder().addPaths("feed_output_config.pubsub_destination.topic").build()).build();
// the "close" method on the client to safely clean up any remaining background resources.
try (AssetServiceClient client = AssetServiceClient.create()) {
Feed response = client.updateFeed(request);
System.out.println("Feed updated successfully: " + response.getName());
} catch (Exception e) {
System.out.println("Error during UpdateFeed: \n" + e.toString());
}
}
Aggregations