Skip to content

Commit

Permalink
update golden for integration tests affected.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumin8 committed Feb 8, 2024
1 parent 4214558 commit 3b36de7
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 108 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,17 +97,14 @@ public static Builder newBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static Builder newProjectFeedBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static FolderFeedBuilder newFolderFeedBuilder() {
return new FolderFeedBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static OrganizationFeedBuilder newOrganizationFeedBuilder() {
return new OrganizationFeedBuilder();
}
Expand All @@ -120,17 +117,14 @@ public static FeedName of(String project, String feed) {
return newBuilder().setProject(project).setFeed(feed).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static FeedName ofProjectFeedName(String project, String feed) {
return newBuilder().setProject(project).setFeed(feed).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static FeedName ofFolderFeedName(String folder, String feed) {
return newFolderFeedBuilder().setFolder(folder).setFeed(feed).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static FeedName ofOrganizationFeedName(String organization, String feed) {
return newOrganizationFeedBuilder().setOrganization(organization).setFeed(feed).build();
}
Expand All @@ -139,17 +133,14 @@ public static String format(String project, String feed) {
return newBuilder().setProject(project).setFeed(feed).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatProjectFeedName(String project, String feed) {
return newBuilder().setProject(project).setFeed(feed).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatFolderFeedName(String folder, String feed) {
return newFolderFeedBuilder().setFolder(folder).setFeed(feed).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatOrganizationFeedName(String organization, String feed) {
return newOrganizationFeedBuilder()
.setOrganization(organization)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,14 @@ public static Builder newBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static Builder newProjectSavedQueryBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static FolderSavedQueryBuilder newFolderSavedQueryBuilder() {
return new FolderSavedQueryBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static OrganizationSavedQueryBuilder newOrganizationSavedQueryBuilder() {
return new OrganizationSavedQueryBuilder();
}
Expand All @@ -121,17 +118,14 @@ public static SavedQueryName of(String project, String savedQuery) {
return newBuilder().setProject(project).setSavedQuery(savedQuery).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static SavedQueryName ofProjectSavedQueryName(String project, String savedQuery) {
return newBuilder().setProject(project).setSavedQuery(savedQuery).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static SavedQueryName ofFolderSavedQueryName(String folder, String savedQuery) {
return newFolderSavedQueryBuilder().setFolder(folder).setSavedQuery(savedQuery).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static SavedQueryName ofOrganizationSavedQueryName(
String organization, String savedQuery) {
return newOrganizationSavedQueryBuilder()
Expand All @@ -144,12 +138,10 @@ public static String format(String project, String savedQuery) {
return newBuilder().setProject(project).setSavedQuery(savedQuery).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatProjectSavedQueryName(String project, String savedQuery) {
return newBuilder().setProject(project).setSavedQuery(savedQuery).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatFolderSavedQueryName(String folder, String savedQuery) {
return newFolderSavedQueryBuilder()
.setFolder(folder)
Expand All @@ -158,7 +150,6 @@ public static String formatFolderSavedQueryName(String folder, String savedQuery
.toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatOrganizationSavedQueryName(String organization, String savedQuery) {
return newOrganizationSavedQueryBuilder()
.setOrganization(organization)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,22 +107,18 @@ public static Builder newBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static Builder newProjectBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static OrganizationBuilder newOrganizationBuilder() {
return new OrganizationBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static FolderBuilder newFolderBuilder() {
return new FolderBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static BillingAccountBuilder newBillingAccountBuilder() {
return new BillingAccountBuilder();
}
Expand All @@ -135,22 +131,18 @@ public static CmekSettingsName of(String project) {
return newBuilder().setProject(project).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static CmekSettingsName ofProjectName(String project) {
return newBuilder().setProject(project).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static CmekSettingsName ofOrganizationName(String organization) {
return newOrganizationBuilder().setOrganization(organization).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static CmekSettingsName ofFolderName(String folder) {
return newFolderBuilder().setFolder(folder).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static CmekSettingsName ofBillingAccountName(String billingAccount) {
return newBillingAccountBuilder().setBillingAccount(billingAccount).build();
}
Expand All @@ -159,22 +151,18 @@ public static String format(String project) {
return newBuilder().setProject(project).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatProjectName(String project) {
return newBuilder().setProject(project).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatOrganizationName(String organization) {
return newOrganizationBuilder().setOrganization(organization).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatFolderName(String folder) {
return newFolderBuilder().setFolder(folder).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatBillingAccountName(String billingAccount) {
return newBillingAccountBuilder().setBillingAccount(billingAccount).build().toString();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,22 +131,18 @@ public static Builder newBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static Builder newProjectLocationBucketBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static OrganizationLocationBucketBuilder newOrganizationLocationBucketBuilder() {
return new OrganizationLocationBucketBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static FolderLocationBucketBuilder newFolderLocationBucketBuilder() {
return new FolderLocationBucketBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static BillingAccountLocationBucketBuilder newBillingAccountLocationBucketBuilder() {
return new BillingAccountLocationBucketBuilder();
}
Expand All @@ -159,13 +155,11 @@ public static LogBucketName of(String project, String location, String bucket) {
return newBuilder().setProject(project).setLocation(location).setBucket(bucket).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogBucketName ofProjectLocationBucketName(
String project, String location, String bucket) {
return newBuilder().setProject(project).setLocation(location).setBucket(bucket).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogBucketName ofOrganizationLocationBucketName(
String organization, String location, String bucket) {
return newOrganizationLocationBucketBuilder()
Expand All @@ -175,7 +169,6 @@ public static LogBucketName ofOrganizationLocationBucketName(
.build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogBucketName ofFolderLocationBucketName(
String folder, String location, String bucket) {
return newFolderLocationBucketBuilder()
Expand All @@ -185,7 +178,6 @@ public static LogBucketName ofFolderLocationBucketName(
.build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogBucketName ofBillingAccountLocationBucketName(
String billingAccount, String location, String bucket) {
return newBillingAccountLocationBucketBuilder()
Expand All @@ -204,7 +196,6 @@ public static String format(String project, String location, String bucket) {
.toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatProjectLocationBucketName(
String project, String location, String bucket) {
return newBuilder()
Expand All @@ -215,7 +206,6 @@ public static String formatProjectLocationBucketName(
.toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatOrganizationLocationBucketName(
String organization, String location, String bucket) {
return newOrganizationLocationBucketBuilder()
Expand All @@ -226,7 +216,6 @@ public static String formatOrganizationLocationBucketName(
.toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatFolderLocationBucketName(
String folder, String location, String bucket) {
return newFolderLocationBucketBuilder()
Expand All @@ -237,7 +226,6 @@ public static String formatFolderLocationBucketName(
.toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatBillingAccountLocationBucketName(
String billingAccount, String location, String bucket) {
return newBillingAccountLocationBucketBuilder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,22 +118,18 @@ public static Builder newBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static Builder newProjectExclusionBuilder() {
return new Builder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static OrganizationExclusionBuilder newOrganizationExclusionBuilder() {
return new OrganizationExclusionBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static FolderExclusionBuilder newFolderExclusionBuilder() {
return new FolderExclusionBuilder();
}

@BetaApi("The per-pattern Builders are not stable yet and may be changed in the future.")
public static BillingAccountExclusionBuilder newBillingAccountExclusionBuilder() {
return new BillingAccountExclusionBuilder();
}
Expand All @@ -146,12 +142,10 @@ public static LogExclusionName of(String project, String exclusion) {
return newBuilder().setProject(project).setExclusion(exclusion).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogExclusionName ofProjectExclusionName(String project, String exclusion) {
return newBuilder().setProject(project).setExclusion(exclusion).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogExclusionName ofOrganizationExclusionName(
String organization, String exclusion) {
return newOrganizationExclusionBuilder()
Expand All @@ -160,12 +154,10 @@ public static LogExclusionName ofOrganizationExclusionName(
.build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogExclusionName ofFolderExclusionName(String folder, String exclusion) {
return newFolderExclusionBuilder().setFolder(folder).setExclusion(exclusion).build();
}

@BetaApi("The static create methods are not stable yet and may be changed in the future.")
public static LogExclusionName ofBillingAccountExclusionName(
String billingAccount, String exclusion) {
return newBillingAccountExclusionBuilder()
Expand All @@ -178,12 +170,10 @@ public static String format(String project, String exclusion) {
return newBuilder().setProject(project).setExclusion(exclusion).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatProjectExclusionName(String project, String exclusion) {
return newBuilder().setProject(project).setExclusion(exclusion).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatOrganizationExclusionName(String organization, String exclusion) {
return newOrganizationExclusionBuilder()
.setOrganization(organization)
Expand All @@ -192,12 +182,10 @@ public static String formatOrganizationExclusionName(String organization, String
.toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatFolderExclusionName(String folder, String exclusion) {
return newFolderExclusionBuilder().setFolder(folder).setExclusion(exclusion).build().toString();
}

@BetaApi("The static format methods are not stable yet and may be changed in the future.")
public static String formatBillingAccountExclusionName(String billingAccount, String exclusion) {
return newBillingAccountExclusionBuilder()
.setBillingAccount(billingAccount)
Expand Down
Loading

0 comments on commit 3b36de7

Please sign in to comment.