Skip to content

Commit

Permalink
Regenerate logging client with test fixes (#3907)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpebot authored and chingor13 committed Nov 6, 2018
1 parent 7d50799 commit 97e004f
Showing 1 changed file with 5 additions and 4 deletions.
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

0 comments on commit 97e004f

Please sign in to comment.