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

Regenerate logging client with test fixes #3907

Merged
merged 1 commit into from
Nov 6, 2018
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import com.google.api.gax.rpc.InvalidArgumentException;
import com.google.api.resourcenames.ResourceName;
import com.google.common.collect.Lists;
import com.google.logging.v2.BillingName;
import com.google.logging.v2.CreateExclusionRequest;
import com.google.logging.v2.CreateSinkRequest;
import com.google.logging.v2.DeleteExclusionRequest;
Expand Down Expand Up @@ -158,7 +159,7 @@ public void listSinksExceptionTest() throws Exception {
@SuppressWarnings("all")
public void getSinkTest() {
String name = "name3373707";
ResourceName destination = ProjectName.of("[PROJECT]");
ResourceName destination = BillingName.of("[BILLING_ACCOUNT]");
String filter = "filter-1274492040";
String writerIdentity = "writerIdentity775638794";
boolean includeChildren = true;
Expand Down Expand Up @@ -208,7 +209,7 @@ public void getSinkExceptionTest() throws Exception {
@SuppressWarnings("all")
public void createSinkTest() {
String name = "name3373707";
ResourceName destination = ProjectName.of("[PROJECT]");
ResourceName destination = BillingName.of("[BILLING_ACCOUNT]");
String filter = "filter-1274492040";
String writerIdentity = "writerIdentity775638794";
boolean includeChildren = true;
Expand Down Expand Up @@ -261,7 +262,7 @@ public void createSinkExceptionTest() throws Exception {
@SuppressWarnings("all")
public void updateSinkTest() {
String name = "name3373707";
ResourceName destination = ProjectName.of("[PROJECT]");
ResourceName destination = BillingName.of("[BILLING_ACCOUNT]");
String filter = "filter-1274492040";
String writerIdentity = "writerIdentity775638794";
boolean includeChildren = true;
Expand Down Expand Up @@ -317,7 +318,7 @@ public void updateSinkExceptionTest() throws Exception {
@SuppressWarnings("all")
public void updateSinkTest2() {
String name = "name3373707";
ResourceName destination = ProjectName.of("[PROJECT]");
ResourceName destination = BillingName.of("[BILLING_ACCOUNT]");
String filter = "filter-1274492040";
String writerIdentity = "writerIdentity775638794";
boolean includeChildren = true;
Expand Down