Skip to content

Commit 2c4f731

Browse files
pivotalgeorgeKehrlann
authored andcommitted
Update v2 client's CAPI docs links to new subdomain
1 parent 450afff commit 2c4f731

File tree

31 files changed

+253
-253
lines changed

31 files changed

+253
-253
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/ApplicationsV2.java

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
public interface ApplicationsV2 {
2626

2727
/**
28-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/associate_route_with_the_app.html">Associate Route with the Application</a> request
28+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/associate_route_with_the_app.html">Associate Route with the Application</a> request
2929
*
3030
* @param request the Associate Route with the Application request
3131
* @return the response from the Associate Route with the Application request
@@ -34,64 +34,64 @@ Mono<AssociateApplicationRouteResponse> associateRoute(
3434
AssociateApplicationRouteRequest request);
3535

3636
/**
37-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/copy_the_app_bits_for_an_app.html">Copy the app bits for an Application</a> request
37+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/copy_the_app_bits_for_an_app.html">Copy the app bits for an Application</a> request
3838
*
3939
* @param request the Copy Application request
4040
* @return the response from the Copy Application request
4141
*/
4242
Mono<CopyApplicationResponse> copy(CopyApplicationRequest request);
4343

4444
/**
45-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/creating_an_app.html">Creating an App</a> request and the <a
46-
* href="https://apidocs.cloudfoundry.org/latest-release/apps/creating_a_docker_app_%28experimental%29.html">Creating a Docker App</a> request.
45+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/creating_an_app.html">Creating an App</a> request and the <a
46+
* href="https://v2-apidocs.cloudfoundry.org/apps/creating_a_docker_app_%28experimental%29.html">Creating a Docker App</a> request.
4747
*
4848
* @param request the Create Application request
4949
* @return the response from the Create Application request
5050
*/
5151
Mono<CreateApplicationResponse> create(CreateApplicationRequest request);
5252

5353
/**
54-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/delete_a_particular_app.html">Delete the App</a> request
54+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/delete_a_particular_app.html">Delete the App</a> request
5555
*
5656
* @param request the Delete Application request
5757
* @return the response from the Delete Application request
5858
*/
5959
Mono<Void> delete(DeleteApplicationRequest request);
6060

6161
/**
62-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/downloads_the_bits_for_an_app.html">Downloads the bits for an App</a> request
62+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/downloads_the_bits_for_an_app.html">Downloads the bits for an App</a> request
6363
*
6464
* @param request the Download Application request
6565
* @return the response from the Download Application request
6666
*/
6767
Flux<byte[]> download(DownloadApplicationRequest request);
6868

6969
/**
70-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/downloads_the_staged_droplet_for_an_app.html">Downloads the staged droplet for an App</a> request
70+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/downloads_the_staged_droplet_for_an_app.html">Downloads the staged droplet for an App</a> request
7171
*
7272
* @param request the Download Droplet request
7373
* @return the response from the Download Droplet request
7474
*/
7575
Flux<byte[]> downloadDroplet(DownloadApplicationDropletRequest request);
7676

7777
/**
78-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/get_the_env_for_an_app.html">Get the env for an App</a> request
78+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/get_the_env_for_an_app.html">Get the env for an App</a> request
7979
*
8080
* @param request the Get Application Environment request
8181
* @return the response from the Get Application Environment request
8282
*/
8383
Mono<ApplicationEnvironmentResponse> environment(ApplicationEnvironmentRequest request);
8484

8585
/**
86-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/retrieve_a_particular_app.html">Retrieve a Particular App</a> request
86+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/retrieve_a_particular_app.html">Retrieve a Particular App</a> request
8787
*
8888
* @param request the Get Application request
8989
* @return the response from the Get Application request
9090
*/
9191
Mono<GetApplicationResponse> get(GetApplicationRequest request);
9292

9393
/**
94-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/retrieving_permissions_on_a_app.html">Retrieve Permissions on a Particular App</a> request
94+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/retrieving_permissions_on_a_app.html">Retrieve Permissions on a Particular App</a> request
9595
*
9696
* @param request the Get Application Permissions request
9797
* @return the response from the Get Application Permissions request
@@ -100,31 +100,31 @@ Mono<GetApplicationPermissionsResponse> getPermissions(
100100
GetApplicationPermissionsRequest request);
101101

102102
/**
103-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/get_the_instance_information_for_a_started_app.html">Get the instance information for a STARTED App</a> request
103+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/get_the_instance_information_for_a_started_app.html">Get the instance information for a STARTED App</a> request
104104
*
105105
* @param request the Get Instance Information request
106106
* @return the response from the Get Instance Information request
107107
*/
108108
Mono<ApplicationInstancesResponse> instances(ApplicationInstancesRequest request);
109109

110110
/**
111-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/list_all_apps.html">List all Apps</a> request
111+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/list_all_apps.html">List all Apps</a> request
112112
*
113113
* @param request the List Applications request
114114
* @return the response from the List Applications request
115115
*/
116116
Mono<ListApplicationsResponse> list(ListApplicationsRequest request);
117117

118118
/**
119-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/list_all_routes_for_the_app.html">List all Routes for the Application</a> request
119+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/list_all_routes_for_the_app.html">List all Routes for the Application</a> request
120120
*
121121
* @param request the List all Routes for the Application request
122122
* @return the response from the List all Routes for the Application request
123123
*/
124124
Mono<ListApplicationRoutesResponse> listRoutes(ListApplicationRoutesRequest request);
125125

126126
/**
127-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/list_all_service_bindings_for_the_app.html">List all Service Bindings for the App</a> request
127+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/list_all_service_bindings_for_the_app.html">List all Service Bindings for the App</a> request
128128
*
129129
* @param request the List Service Bindings request
130130
* @return the response from the List Service Bindings request
@@ -133,71 +133,71 @@ Mono<ListApplicationServiceBindingsResponse> listServiceBindings(
133133
ListApplicationServiceBindingsRequest request);
134134

135135
/**
136-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/remove_route_from_the_app.html">Remove Route from the Application</a> request
136+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/remove_route_from_the_app.html">Remove Route from the Application</a> request
137137
*
138138
* @param request the Remove Route from the Application request
139139
* @return the response from the Remove Route from the Application request
140140
*/
141141
Mono<Void> removeRoute(RemoveApplicationRouteRequest request);
142142

143143
/**
144-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/remove_service_binding_from_the_app.html">Remove Service Binding from the Application</a> request
144+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/remove_service_binding_from_the_app.html">Remove Service Binding from the Application</a> request
145145
*
146146
* @param request the Remove a Service Binding from an Application request
147147
* @return the response from the Remove a Service Binding from an Application request
148148
*/
149149
Mono<Void> removeServiceBinding(RemoveApplicationServiceBindingRequest request);
150150

151151
/**
152-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/restage_an_app.html">Restage an App</a> request
152+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/restage_an_app.html">Restage an App</a> request
153153
*
154154
* @param request the Restage an Application request
155155
* @return the response from the Restage an Application request
156156
*/
157157
Mono<RestageApplicationResponse> restage(RestageApplicationRequest request);
158158

159159
/**
160-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/get_detailed_stats_for_a_started_app.html">Get detailed stats for a STARTED App</a> request
160+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/get_detailed_stats_for_a_started_app.html">Get detailed stats for a STARTED App</a> request
161161
*
162162
* @param request the Get Statistics request
163163
* @return the response from the Get Statistics request
164164
*/
165165
Mono<ApplicationStatisticsResponse> statistics(ApplicationStatisticsRequest request);
166166

167167
/**
168-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/get_app_summary.html">Get Application Summary</a> request
168+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/get_app_summary.html">Get Application Summary</a> request
169169
*
170170
* @param request the Get Application Summary request
171171
* @return the response from the Get Application Summary request
172172
*/
173173
Mono<SummaryApplicationResponse> summary(SummaryApplicationRequest request);
174174

175175
/**
176-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/terminate_the_running_app_instance_at_the_given_index.html">Terminate Application Instance</a> request
176+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/terminate_the_running_app_instance_at_the_given_index.html">Terminate Application Instance</a> request
177177
*
178178
* @param request the Terminate Application Instance request
179179
* @return the response form the Terminate Application Instance request
180180
*/
181181
Mono<Void> terminateInstance(TerminateApplicationInstanceRequest request);
182182

183183
/**
184-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/updating_an_app.html">Updating an App</a> request
184+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/updating_an_app.html">Updating an App</a> request
185185
*
186186
* @param request the Update Application request
187187
* @return the response from the Update Application request
188188
*/
189189
Mono<UpdateApplicationResponse> update(UpdateApplicationRequest request);
190190

191191
/**
192-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/uploads_the_bits_for_an_app.html">Upload the bits for an App</a> request
192+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/uploads_the_bits_for_an_app.html">Upload the bits for an App</a> request
193193
*
194194
* @param request the Upload Application request
195195
* @return the response from the Upload Application request
196196
*/
197197
Mono<UploadApplicationResponse> upload(UploadApplicationRequest request);
198198

199199
/**
200-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/apps/uploads_the_droplet_for_an_app.html">Upload the droplet for an App</a> request
200+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/apps/uploads_the_droplet_for_an_app.html">Upload the droplet for an App</a> request
201201
*
202202
* @param request the Upload Droplet request
203203
* @return the response from the Upload Droplet request

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applicationusageevents/ApplicationUsageEvents.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@
2424
public interface ApplicationUsageEvents {
2525

2626
/**
27-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/app_usage_events/retrieve_a_particular_app_usage_event.html">Get an Application Usage Event</a> request
27+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/app_usage_events/retrieve_a_particular_app_usage_event.html">Get an Application Usage Event</a> request
2828
*
2929
* @param request the Get Application Usage Event request
3030
* @return the response from the Get all Application Usage Event request
3131
*/
3232
Mono<GetApplicationUsageEventResponse> get(GetApplicationUsageEventRequest request);
3333

3434
/**
35-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/app_usage_events/list_all_app_usage_events.html">List all Application Usage Events</a> request
35+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/app_usage_events/list_all_app_usage_events.html">List all Application Usage Events</a> request
3636
*
3737
* @param request the List all Application Usage Events request
3838
* @return the response from the List all Application Usage Events request
3939
*/
4040
Mono<ListApplicationUsageEventsResponse> list(ListApplicationUsageEventsRequest request);
4141

4242
/**
43-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/app_usage_events/purge_and_reseed_app_usage_events.html">Purge and Reseed Application Usage Events</a> request
43+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/app_usage_events/purge_and_reseed_app_usage_events.html">Purge and Reseed Application Usage Events</a> request
4444
*
4545
* @param request the Purge and Reseed Application Usage Events
4646
* @return the response from the Purge and Reseed Application Usage Events request

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/blobstores/Blobstores.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
public interface Blobstores {
2525

2626
/**
27-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/blobstores/delete_all_blobs_in_the_buildpack_cache_blobstore.html">Delete Buildpack Caches</a> request
27+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/blobstores/delete_all_blobs_in_the_buildpack_cache_blobstore.html">Delete Buildpack Caches</a> request
2828
*
2929
* @param request the Delete Buildpack Caches request
3030
* @return the response from the Delete Buildpack Caches request

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/buildpacks/Buildpacks.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,49 +24,49 @@
2424
public interface Buildpacks {
2525

2626
/**
27-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/creates_an_admin_buildpack.html">Create the Buildpack</a> request
27+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/creates_an_admin_buildpack.html">Create the Buildpack</a> request
2828
*
2929
* @param request the Create Buildpack request
3030
* @return the response from the Create Buildpack request
3131
*/
3232
Mono<CreateBuildpackResponse> create(CreateBuildpackRequest request);
3333

3434
/**
35-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/delete_a_particular_buildpack.html">Delete the Buildpack</a> request
35+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/delete_a_particular_buildpack.html">Delete the Buildpack</a> request
3636
*
3737
* @param request the Delete Buildpack request
3838
* @return the response from the Delete Buildpack request
3939
*/
4040
Mono<DeleteBuildpackResponse> delete(DeleteBuildpackRequest request);
4141

4242
/**
43-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/retrieve_a_particular_buildpack.html">Retrieve a particular Buildpack</a> request
43+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/retrieve_a_particular_buildpack.html">Retrieve a particular Buildpack</a> request
4444
*
4545
* @param request the Get Buildpack request
4646
* @return the response from the Get Buildpack request
4747
*/
4848
Mono<GetBuildpackResponse> get(GetBuildpackRequest request);
4949

5050
/**
51-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/list_all_buildpacks.html">List all Buildpacks</a> request
51+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/list_all_buildpacks.html">List all Buildpacks</a> request
5252
*
5353
* @param request the List all Buildpacks request
5454
* @return the response from the List all Buildpacks request
5555
*/
5656
Mono<ListBuildpacksResponse> list(ListBuildpacksRequest request);
5757

5858
/**
59-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/change_the_position_of_a_buildpack.html">Change the position of a Buildpack</a>,
60-
* <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/enable_or_disable_a_buildpack.html">Enable or disable a Buildpack</a>, and
61-
* <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/lock_or_unlock_a_buildpack.html">Lock or unlock a Buildpack</a> requests
59+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/change_the_position_of_a_buildpack.html">Change the position of a Buildpack</a>,
60+
* <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/enable_or_disable_a_buildpack.html">Enable or disable a Buildpack</a>, and
61+
* <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/lock_or_unlock_a_buildpack.html">Lock or unlock a Buildpack</a> requests
6262
*
6363
* @param request the Update Buildpack request
6464
* @return the response from the Update Buildpack request
6565
*/
6666
Mono<UpdateBuildpackResponse> update(UpdateBuildpackRequest request);
6767

6868
/**
69-
* Makes the <a href="https://apidocs.cloudfoundry.org/latest-release/buildpacks/upload_the_bits_for_an_admin_buildpack.html">Upload Buildpack</a> request
69+
* Makes the <a href="https://v2-apidocs.cloudfoundry.org/buildpacks/upload_the_bits_for_an_admin_buildpack.html">Upload Buildpack</a> request
7070
*
7171
* @param request the Upload Buildpack request
7272
* @return the response from the Upload Buildpack request

0 commit comments

Comments
 (0)