Skip to content

Commit 771ac37

Browse files
docs: fix remaining broken links (#133)
* build: fix broken links PiperOrigin-RevId: 443188324 Source-Link: googleapis/googleapis@775267e Source-Link: googleapis/googleapis-gen@166b6e3 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTY2YjZlM2FjNDZlMjgyMWIyYmM5Y2E0NDNjM2FjYTRkMWNiZTc4MiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * docs: fix remaining broken links PiperOrigin-RevId: 443508623 Source-Link: googleapis/googleapis@fd6935f Source-Link: googleapis/googleapis-gen@4f659e3 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGY2NTllM2I4YWNlMmU4NmMwMjdjNGZlY2E5ZGVjZDZlZTU4YzY0YyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 57414ff commit 771ac37

14 files changed

+165
-115
lines changed

packages/google-api-servicemanagement/protos/google/api/servicemanagement/v1/resources.proto

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ option ruby_package = "Google::Cloud::ServiceManagement::V1";
3232
// The full representation of a Service that is managed by
3333
// Google Service Management.
3434
message ManagedService {
35-
// The name of the service. See the [overview](/service-management/overview)
35+
// The name of the service. See the
36+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview)
3637
// for naming requirements.
3738
string service_name = 2;
3839

@@ -226,9 +227,7 @@ message Rollout {
226227

227228
// Strategy used to delete a service. This strategy is a placeholder only
228229
// used by the system generated rollout to delete a service.
229-
message DeleteServiceStrategy {
230-
231-
}
230+
message DeleteServiceStrategy {}
232231

233232
// Status of a Rollout.
234233
enum RolloutStatus {
@@ -256,8 +255,9 @@ message Rollout {
256255
FAILED_ROLLED_BACK = 6;
257256
}
258257

259-
// Optional. Unique identifier of this Rollout. Must be no longer than 63 characters
260-
// and only lower case letters, digits, '.', '_' and '-' are allowed.
258+
// Optional. Unique identifier of this Rollout. Must be no longer than 63
259+
// characters and only lower case letters, digits, '.', '_' and '-' are
260+
// allowed.
261261
//
262262
// If not specified by client, the server will generate one. The generated id
263263
// will have the form of <date><revision number>, where "date" is the create

packages/google-api-servicemanagement/protos/google/api/servicemanagement/v1/servicemanager.proto

+64-41
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ option objc_class_prefix = "GASM";
3333
option php_namespace = "Google\\Cloud\\ServiceManagement\\V1";
3434
option ruby_package = "Google::Cloud::ServiceManagement::V1";
3535

36-
// [Google Service Management API](/service-management/overview)
36+
// [Google Service Management
37+
// API](https://cloud.google.com/service-infrastructure/docs/overview)
3738
service ServiceManager {
3839
option (google.api.default_host) = "servicemanagement.googleapis.com";
3940
option (google.api.oauth_scopes) =
@@ -74,7 +75,8 @@ service ServiceManager {
7475
// dedicated producer project.
7576
//
7677
// Operation<response: ManagedService>
77-
rpc CreateService(CreateServiceRequest) returns (google.longrunning.Operation) {
78+
rpc CreateService(CreateServiceRequest)
79+
returns (google.longrunning.Operation) {
7880
option (google.api.http) = {
7981
post: "/v1/services"
8082
body: "service"
@@ -88,11 +90,14 @@ service ServiceManager {
8890

8991
// Deletes a managed service. This method will change the service to the
9092
// `Soft-Delete` state for 30 days. Within this period, service producers may
91-
// call [UndeleteService][google.api.servicemanagement.v1.ServiceManager.UndeleteService] to restore the service.
92-
// After 30 days, the service will be permanently deleted.
93+
// call
94+
// [UndeleteService][google.api.servicemanagement.v1.ServiceManager.UndeleteService]
95+
// to restore the service. After 30 days, the service will be permanently
96+
// deleted.
9397
//
9498
// Operation<response: google.protobuf.Empty>
95-
rpc DeleteService(DeleteServiceRequest) returns (google.longrunning.Operation) {
99+
rpc DeleteService(DeleteServiceRequest)
100+
returns (google.longrunning.Operation) {
96101
option (google.api.http) = {
97102
delete: "/v1/services/{service_name}"
98103
};
@@ -109,7 +114,8 @@ service ServiceManager {
109114
// last 30 days.
110115
//
111116
// Operation<response: UndeleteServiceResponse>
112-
rpc UndeleteService(UndeleteServiceRequest) returns (google.longrunning.Operation) {
117+
rpc UndeleteService(UndeleteServiceRequest)
118+
returns (google.longrunning.Operation) {
113119
option (google.api.http) = {
114120
post: "/v1/services/{service_name}:undelete"
115121
};
@@ -122,7 +128,8 @@ service ServiceManager {
122128

123129
// Lists the history of the service configuration for a managed service,
124130
// from the newest to the oldest.
125-
rpc ListServiceConfigs(ListServiceConfigsRequest) returns (ListServiceConfigsResponse) {
131+
rpc ListServiceConfigs(ListServiceConfigsRequest)
132+
returns (ListServiceConfigsResponse) {
126133
option (google.api.http) = {
127134
get: "/v1/services/{service_name}/configs"
128135
};
@@ -133,9 +140,7 @@ service ServiceManager {
133140
rpc GetServiceConfig(GetServiceConfigRequest) returns (google.api.Service) {
134141
option (google.api.http) = {
135142
get: "/v1/services/{service_name}/configs/{config_id}"
136-
additional_bindings {
137-
get: "/v1/services/{service_name}/config"
138-
}
143+
additional_bindings { get: "/v1/services/{service_name}/config" }
139144
};
140145
option (google.api.method_signature) = "service_name,config_id,view";
141146
}
@@ -148,7 +153,8 @@ service ServiceManager {
148153
// Only the 100 most recent service configurations and ones referenced by
149154
// existing rollouts are kept for each service. The rest will be deleted
150155
// eventually.
151-
rpc CreateServiceConfig(CreateServiceConfigRequest) returns (google.api.Service) {
156+
rpc CreateServiceConfig(CreateServiceConfigRequest)
157+
returns (google.api.Service) {
152158
option (google.api.http) = {
153159
post: "/v1/services/{service_name}/configs"
154160
body: "service_config"
@@ -162,19 +168,22 @@ service ServiceManager {
162168
// Specification). This method stores the source configurations as well as the
163169
// generated service configuration. To rollout the service configuration to
164170
// other services,
165-
// please call [CreateServiceRollout][google.api.servicemanagement.v1.ServiceManager.CreateServiceRollout].
171+
// please call
172+
// [CreateServiceRollout][google.api.servicemanagement.v1.ServiceManager.CreateServiceRollout].
166173
//
167174
// Only the 100 most recent configuration sources and ones referenced by
168175
// existing service configurtions are kept for each service. The rest will be
169176
// deleted eventually.
170177
//
171178
// Operation<response: SubmitConfigSourceResponse>
172-
rpc SubmitConfigSource(SubmitConfigSourceRequest) returns (google.longrunning.Operation) {
179+
rpc SubmitConfigSource(SubmitConfigSourceRequest)
180+
returns (google.longrunning.Operation) {
173181
option (google.api.http) = {
174182
post: "/v1/services/{service_name}/configs:submit"
175183
body: "*"
176184
};
177-
option (google.api.method_signature) = "service_name,config_source,validate_only";
185+
option (google.api.method_signature) =
186+
"service_name,config_source,validate_only";
178187
option (google.longrunning.operation_info) = {
179188
response_type: "google.api.servicemanagement.v1.SubmitConfigSourceResponse"
180189
metadata_type: "google.api.servicemanagement.v1.OperationMetadata"
@@ -183,14 +192,16 @@ service ServiceManager {
183192

184193
// Lists the history of the service configuration rollouts for a managed
185194
// service, from the newest to the oldest.
186-
rpc ListServiceRollouts(ListServiceRolloutsRequest) returns (ListServiceRolloutsResponse) {
195+
rpc ListServiceRollouts(ListServiceRolloutsRequest)
196+
returns (ListServiceRolloutsResponse) {
187197
option (google.api.http) = {
188198
get: "/v1/services/{service_name}/rollouts"
189199
};
190200
option (google.api.method_signature) = "service_name,filter";
191201
}
192202

193-
// Gets a service configuration [rollout][google.api.servicemanagement.v1.Rollout].
203+
// Gets a service configuration
204+
// [rollout][google.api.servicemanagement.v1.Rollout].
194205
rpc GetServiceRollout(GetServiceRolloutRequest) returns (Rollout) {
195206
option (google.api.http) = {
196207
get: "/v1/services/{service_name}/rollouts/{rollout_id}"
@@ -212,7 +223,8 @@ service ServiceManager {
212223
// service. The rest will be deleted eventually.
213224
//
214225
// Operation<response: Rollout>
215-
rpc CreateServiceRollout(CreateServiceRolloutRequest) returns (google.longrunning.Operation) {
226+
rpc CreateServiceRollout(CreateServiceRolloutRequest)
227+
returns (google.longrunning.Operation) {
216228
option (google.api.http) = {
217229
post: "/v1/services/{service_name}/rollouts"
218230
body: "rollout"
@@ -235,7 +247,8 @@ service ServiceManager {
235247
// If GenerateConfigReportRequest.old_value is not specified, this method
236248
// will compare GenerateConfigReportRequest.new_value with the last pushed
237249
// service configuration.
238-
rpc GenerateConfigReport(GenerateConfigReportRequest) returns (GenerateConfigReportResponse) {
250+
rpc GenerateConfigReport(GenerateConfigReportRequest)
251+
returns (GenerateConfigReportResponse) {
239252
option (google.api.http) = {
240253
post: "/v1/services:generateConfigReport"
241254
body: "*"
@@ -276,8 +289,8 @@ message ListServicesResponse {
276289

277290
// Request message for `GetService` method.
278291
message GetServiceRequest {
279-
// Required. The name of the service. See the `ServiceManager` overview for naming
280-
// requirements. For example: `example.googleapis.com`.
292+
// Required. The name of the service. See the `ServiceManager` overview for
293+
// naming requirements. For example: `example.googleapis.com`.
281294
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
282295
}
283296

@@ -289,15 +302,17 @@ message CreateServiceRequest {
289302

290303
// Request message for DeleteService method.
291304
message DeleteServiceRequest {
292-
// Required. The name of the service. See the [overview](/service-management/overview)
293-
// for naming requirements. For example: `example.googleapis.com`.
305+
// Required. The name of the service. See the
306+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
307+
// example: `example.googleapis.com`.
294308
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
295309
}
296310

297311
// Request message for UndeleteService method.
298312
message UndeleteServiceRequest {
299-
// Required. The name of the service. See the [overview](/service-management/overview)
300-
// for naming requirements. For example: `example.googleapis.com`.
313+
// Required. The name of the service. See the
314+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
315+
// example: `example.googleapis.com`.
301316
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
302317
}
303318

@@ -320,8 +335,9 @@ message GetServiceConfigRequest {
320335
FULL = 1;
321336
}
322337

323-
// Required. The name of the service. See the [overview](/service-management/overview)
324-
// for naming requirements. For example: `example.googleapis.com`.
338+
// Required. The name of the service. See the
339+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
340+
// example: `example.googleapis.com`.
325341
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
326342

327343
// Required. The id of the service configuration resource.
@@ -337,8 +353,9 @@ message GetServiceConfigRequest {
337353

338354
// Request message for ListServiceConfigs method.
339355
message ListServiceConfigsRequest {
340-
// Required. The name of the service. See the [overview](/service-management/overview)
341-
// for naming requirements. For example: `example.googleapis.com`.
356+
// Required. The name of the service. See the
357+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
358+
// example: `example.googleapis.com`.
342359
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
343360

344361
// The token of the page to retrieve.
@@ -360,18 +377,21 @@ message ListServiceConfigsResponse {
360377

361378
// Request message for CreateServiceConfig method.
362379
message CreateServiceConfigRequest {
363-
// Required. The name of the service. See the [overview](/service-management/overview)
364-
// for naming requirements. For example: `example.googleapis.com`.
380+
// Required. The name of the service. See the
381+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
382+
// example: `example.googleapis.com`.
365383
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
366384

367385
// Required. The service configuration resource.
368-
google.api.Service service_config = 2 [(google.api.field_behavior) = REQUIRED];
386+
google.api.Service service_config = 2
387+
[(google.api.field_behavior) = REQUIRED];
369388
}
370389

371390
// Request message for SubmitConfigSource method.
372391
message SubmitConfigSourceRequest {
373-
// Required. The name of the service. See the [overview](/service-management/overview)
374-
// for naming requirements. For example: `example.googleapis.com`.
392+
// Required. The name of the service. See the
393+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
394+
// example: `example.googleapis.com`.
375395
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
376396

377397
// Required. The source configuration for the service.
@@ -391,8 +411,9 @@ message SubmitConfigSourceResponse {
391411

392412
// Request message for 'CreateServiceRollout'
393413
message CreateServiceRolloutRequest {
394-
// Required. The name of the service. See the [overview](/service-management/overview)
395-
// for naming requirements. For example: `example.googleapis.com`.
414+
// Required. The name of the service. See the
415+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
416+
// example: `example.googleapis.com`.
396417
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
397418

398419
// Required. The rollout resource. The `service_name` field is output only.
@@ -401,8 +422,9 @@ message CreateServiceRolloutRequest {
401422

402423
// Request message for 'ListServiceRollouts'
403424
message ListServiceRolloutsRequest {
404-
// Required. The name of the service. See the [overview](/service-management/overview)
405-
// for naming requirements. For example: `example.googleapis.com`.
425+
// Required. The name of the service. See the
426+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
427+
// example: `example.googleapis.com`.
406428
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
407429

408430
// The token of the page to retrieve.
@@ -415,10 +437,10 @@ message ListServiceRolloutsRequest {
415437
// Required. Use `filter` to return subset of rollouts.
416438
// The following filters are supported:
417439
// -- To limit the results to only those in
418-
// [status](google.api.servicemanagement.v1.RolloutStatus) 'SUCCESS',
440+
// status (google.api.servicemanagement.v1.RolloutStatus) 'SUCCESS',
419441
// use filter='status=SUCCESS'
420442
// -- To limit the results to those in
421-
// [status](google.api.servicemanagement.v1.RolloutStatus) 'CANCELLED'
443+
// status (google.api.servicemanagement.v1.RolloutStatus) 'CANCELLED'
422444
// or 'FAILED', use filter='status=CANCELLED OR status=FAILED'
423445
string filter = 4 [(google.api.field_behavior) = REQUIRED];
424446
}
@@ -434,8 +456,9 @@ message ListServiceRolloutsResponse {
434456

435457
// Request message for GetServiceRollout method.
436458
message GetServiceRolloutRequest {
437-
// Required. The name of the service. See the [overview](/service-management/overview)
438-
// for naming requirements. For example: `example.googleapis.com`.
459+
// Required. The name of the service. See the
460+
// [overview](https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
461+
// example: `example.googleapis.com`.
439462
string service_name = 1 [(google.api.field_behavior) = REQUIRED];
440463

441464
// Required. The id of the rollout resource.

packages/google-api-servicemanagement/samples/generated/v1/service_manager.create_service_config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ function main(serviceName, serviceConfig) {
2626
* TODO(developer): Uncomment these variables before running the sample.
2727
*/
2828
/**
29-
* Required. The name of the service. See the overview (/service-management/overview)
30-
* for naming requirements. For example: `example.googleapis.com`.
29+
* Required. The name of the service. See the
30+
* overview (https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
31+
* example: `example.googleapis.com`.
3132
*/
3233
// const serviceName = 'abc123'
3334
/**

packages/google-api-servicemanagement/samples/generated/v1/service_manager.create_service_rollout.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ function main(serviceName, rollout) {
2626
* TODO(developer): Uncomment these variables before running the sample.
2727
*/
2828
/**
29-
* Required. The name of the service. See the overview (/service-management/overview)
30-
* for naming requirements. For example: `example.googleapis.com`.
29+
* Required. The name of the service. See the
30+
* overview (https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
31+
* example: `example.googleapis.com`.
3132
*/
3233
// const serviceName = 'abc123'
3334
/**

packages/google-api-servicemanagement/samples/generated/v1/service_manager.delete_service.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ function main(serviceName) {
2626
* TODO(developer): Uncomment these variables before running the sample.
2727
*/
2828
/**
29-
* Required. The name of the service. See the overview (/service-management/overview)
30-
* for naming requirements. For example: `example.googleapis.com`.
29+
* Required. The name of the service. See the
30+
* overview (https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
31+
* example: `example.googleapis.com`.
3132
*/
3233
// const serviceName = 'abc123'
3334

packages/google-api-servicemanagement/samples/generated/v1/service_manager.get_service.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ function main(serviceName) {
2626
* TODO(developer): Uncomment these variables before running the sample.
2727
*/
2828
/**
29-
* Required. The name of the service. See the `ServiceManager` overview for naming
30-
* requirements. For example: `example.googleapis.com`.
29+
* Required. The name of the service. See the `ServiceManager` overview for
30+
* naming requirements. For example: `example.googleapis.com`.
3131
*/
3232
// const serviceName = 'abc123'
3333

packages/google-api-servicemanagement/samples/generated/v1/service_manager.get_service_config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ function main(serviceName, configId) {
2626
* TODO(developer): Uncomment these variables before running the sample.
2727
*/
2828
/**
29-
* Required. The name of the service. See the overview (/service-management/overview)
30-
* for naming requirements. For example: `example.googleapis.com`.
29+
* Required. The name of the service. See the
30+
* overview (https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
31+
* example: `example.googleapis.com`.
3132
*/
3233
// const serviceName = 'abc123'
3334
/**

packages/google-api-servicemanagement/samples/generated/v1/service_manager.get_service_rollout.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ function main(serviceName, rolloutId) {
2626
* TODO(developer): Uncomment these variables before running the sample.
2727
*/
2828
/**
29-
* Required. The name of the service. See the overview (/service-management/overview)
30-
* for naming requirements. For example: `example.googleapis.com`.
29+
* Required. The name of the service. See the
30+
* overview (https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
31+
* example: `example.googleapis.com`.
3132
*/
3233
// const serviceName = 'abc123'
3334
/**

packages/google-api-servicemanagement/samples/generated/v1/service_manager.list_service_configs.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ function main(serviceName) {
2626
* TODO(developer): Uncomment these variables before running the sample.
2727
*/
2828
/**
29-
* Required. The name of the service. See the overview (/service-management/overview)
30-
* for naming requirements. For example: `example.googleapis.com`.
29+
* Required. The name of the service. See the
30+
* overview (https://cloud.google.com/service-infrastructure/docs/overview) for naming requirements. For
31+
* example: `example.googleapis.com`.
3132
*/
3233
// const serviceName = 'abc123'
3334
/**

0 commit comments

Comments
 (0)