Skip to content
This repository was archived by the owner on May 14, 2026. It is now read-only.

Commit 3b36de7

Browse files
committed
update golden for integration tests affected.
1 parent 4214558 commit 3b36de7

10 files changed

Lines changed: 0 additions & 108 deletions

File tree

test/integration/goldens/asset/src/com/google/cloud/asset/v1/FeedName.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,14 @@ public static Builder newBuilder() {
9797
return new Builder();
9898
}
9999

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

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

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

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

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

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

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

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

152-
@BetaApi("The static format methods are not stable yet and may be changed in the future.")
153144
public static String formatOrganizationFeedName(String organization, String feed) {
154145
return newOrganizationFeedBuilder()
155146
.setOrganization(organization)

test/integration/goldens/asset/src/com/google/cloud/asset/v1/SavedQueryName.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,14 @@ public static Builder newBuilder() {
9898
return new Builder();
9999
}
100100

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

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

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

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

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

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

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

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

161-
@BetaApi("The static format methods are not stable yet and may be changed in the future.")
162153
public static String formatOrganizationSavedQueryName(String organization, String savedQuery) {
163154
return newOrganizationSavedQueryBuilder()
164155
.setOrganization(organization)

test/integration/goldens/logging/src/com/google/logging/v2/CmekSettingsName.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -107,22 +107,18 @@ public static Builder newBuilder() {
107107
return new Builder();
108108
}
109109

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

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

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

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

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

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

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

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

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

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

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

177-
@BetaApi("The static format methods are not stable yet and may be changed in the future.")
178166
public static String formatBillingAccountName(String billingAccount) {
179167
return newBillingAccountBuilder().setBillingAccount(billingAccount).build().toString();
180168
}

test/integration/goldens/logging/src/com/google/logging/v2/LogBucketName.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -131,22 +131,18 @@ public static Builder newBuilder() {
131131
return new Builder();
132132
}
133133

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

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

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

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

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

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

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

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

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

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

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

240-
@BetaApi("The static format methods are not stable yet and may be changed in the future.")
241229
public static String formatBillingAccountLocationBucketName(
242230
String billingAccount, String location, String bucket) {
243231
return newBillingAccountLocationBucketBuilder()

test/integration/goldens/logging/src/com/google/logging/v2/LogExclusionName.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118,22 +118,18 @@ public static Builder newBuilder() {
118118
return new Builder();
119119
}
120120

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

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

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

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

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

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

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

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

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

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

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

200-
@BetaApi("The static format methods are not stable yet and may be changed in the future.")
201189
public static String formatBillingAccountExclusionName(String billingAccount, String exclusion) {
202190
return newBillingAccountExclusionBuilder()
203191
.setBillingAccount(billingAccount)

0 commit comments

Comments
 (0)