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

docs: renaming the CreateUnwrappedPushSubscription File #1794

Merged
merged 5 commits into from
Oct 31, 2023
Merged
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package pubsub;

// [START pubsub_create_push_no_wrapper_subscription]
// [START pubsub_create_unwrapped_push_subscription]

import com.google.cloud.pubsub.v1.SubscriptionAdminClient;
import com.google.pubsub.v1.PushConfig;
Expand All @@ -26,7 +26,7 @@
import com.google.pubsub.v1.TopicName;
import java.io.IOException;

public class CreatePushNoWrapperSubscriptionExample {
public class CreateUnwrappedPushSubscriptionExample {
public static void main(String... args) throws Exception {
// TODO(developer): Replace these variables before running the sample.
String projectId = "your-project-id";
Expand Down Expand Up @@ -60,4 +60,4 @@ public static void createPushSubscriptionExample(
}
}
}
// [END pubsub_create_push_no_wrapper_subscription]
// [END pubsub_create_unwrapped_push_subscription]
Loading