diff --git a/README.md b/README.md index 99a540d315..ffed2f36f4 100644 --- a/README.md +++ b/README.md @@ -312,7 +312,7 @@ Lastly before running the tests, it is strongly recommended that you take a snap ## License This project is released under version 2.0 of the [Apache License][l]. -[a]: https://apidocs.cloudfoundry.org/latest-release/ +[a]: https://apidocs.cloudfoundry.org/ [c]: https://github.com/cloudfoundry/cli [e]: https://github.com/cloudfoundry/java-client/issues [g]: https://gradle.org diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/ApplicationsV2.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/ApplicationsV2.java index 7ee1aae013..ab1cc6f8e9 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/ApplicationsV2.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/ApplicationsV2.java @@ -25,7 +25,7 @@ public interface ApplicationsV2 { /** - * Makes the Associate Route with the Application request + * Makes the Associate Route with the Application request * * @param request the Associate Route with the Application request * @return the response from the Associate Route with the Application request @@ -34,7 +34,7 @@ Mono associateRoute( AssociateApplicationRouteRequest request); /** - * Makes the Copy the app bits for an Application request + * Makes the Copy the app bits for an Application request * * @param request the Copy Application request * @return the response from the Copy Application request @@ -42,8 +42,8 @@ Mono associateRoute( Mono copy(CopyApplicationRequest request); /** - * Makes the Creating an App request and the Creating a Docker App request. + * Makes the Creating an App request and the Creating a Docker App request. * * @param request the Create Application request * @return the response from the Create Application request @@ -51,7 +51,7 @@ Mono associateRoute( Mono create(CreateApplicationRequest request); /** - * Makes the Delete the App request + * Makes the Delete the App request * * @param request the Delete Application request * @return the response from the Delete Application request @@ -59,7 +59,7 @@ Mono associateRoute( Mono delete(DeleteApplicationRequest request); /** - * Makes the Downloads the bits for an App request + * Makes the Downloads the bits for an App request * * @param request the Download Application request * @return the response from the Download Application request @@ -67,7 +67,7 @@ Mono associateRoute( Flux download(DownloadApplicationRequest request); /** - * Makes the Downloads the staged droplet for an App request + * Makes the Downloads the staged droplet for an App request * * @param request the Download Droplet request * @return the response from the Download Droplet request @@ -75,7 +75,7 @@ Mono associateRoute( Flux downloadDroplet(DownloadApplicationDropletRequest request); /** - * Makes the Get the env for an App request + * Makes the Get the env for an App request * * @param request the Get Application Environment request * @return the response from the Get Application Environment request @@ -83,7 +83,7 @@ Mono associateRoute( Mono environment(ApplicationEnvironmentRequest request); /** - * Makes the Retrieve a Particular App request + * Makes the Retrieve a Particular App request * * @param request the Get Application request * @return the response from the Get Application request @@ -91,7 +91,7 @@ Mono associateRoute( Mono get(GetApplicationRequest request); /** - * Makes the Retrieve Permissions on a Particular App request + * Makes the Retrieve Permissions on a Particular App request * * @param request the Get Application Permissions request * @return the response from the Get Application Permissions request @@ -100,7 +100,7 @@ Mono getPermissions( GetApplicationPermissionsRequest request); /** - * Makes the Get the instance information for a STARTED App request + * Makes the Get the instance information for a STARTED App request * * @param request the Get Instance Information request * @return the response from the Get Instance Information request @@ -108,7 +108,7 @@ Mono getPermissions( Mono instances(ApplicationInstancesRequest request); /** - * Makes the List all Apps request + * Makes the List all Apps request * * @param request the List Applications request * @return the response from the List Applications request @@ -116,7 +116,7 @@ Mono getPermissions( Mono list(ListApplicationsRequest request); /** - * Makes the List all Routes for the Application request + * Makes the List all Routes for the Application request * * @param request the List all Routes for the Application request * @return the response from the List all Routes for the Application request @@ -124,7 +124,7 @@ Mono getPermissions( Mono listRoutes(ListApplicationRoutesRequest request); /** - * Makes the List all Service Bindings for the App request + * Makes the List all Service Bindings for the App request * * @param request the List Service Bindings request * @return the response from the List Service Bindings request @@ -133,7 +133,7 @@ Mono listServiceBindings( ListApplicationServiceBindingsRequest request); /** - * Makes the Remove Route from the Application request + * Makes the Remove Route from the Application request * * @param request the Remove Route from the Application request * @return the response from the Remove Route from the Application request @@ -141,7 +141,7 @@ Mono listServiceBindings( Mono removeRoute(RemoveApplicationRouteRequest request); /** - * Makes the Remove Service Binding from the Application request + * Makes the Remove Service Binding from the Application request * * @param request the Remove a Service Binding from an Application request * @return the response from the Remove a Service Binding from an Application request @@ -149,7 +149,7 @@ Mono listServiceBindings( Mono removeServiceBinding(RemoveApplicationServiceBindingRequest request); /** - * Makes the Restage an App request + * Makes the Restage an App request * * @param request the Restage an Application request * @return the response from the Restage an Application request @@ -157,7 +157,7 @@ Mono listServiceBindings( Mono restage(RestageApplicationRequest request); /** - * Makes the Get detailed stats for a STARTED App request + * Makes the Get detailed stats for a STARTED App request * * @param request the Get Statistics request * @return the response from the Get Statistics request @@ -165,7 +165,7 @@ Mono listServiceBindings( Mono statistics(ApplicationStatisticsRequest request); /** - * Makes the Get Application Summary request + * Makes the Get Application Summary request * * @param request the Get Application Summary request * @return the response from the Get Application Summary request @@ -173,7 +173,7 @@ Mono listServiceBindings( Mono summary(SummaryApplicationRequest request); /** - * Makes the Terminate Application Instance request + * Makes the Terminate Application Instance request * * @param request the Terminate Application Instance request * @return the response form the Terminate Application Instance request @@ -181,7 +181,7 @@ Mono listServiceBindings( Mono terminateInstance(TerminateApplicationInstanceRequest request); /** - * Makes the Updating an App request + * Makes the Updating an App request * * @param request the Update Application request * @return the response from the Update Application request @@ -189,7 +189,7 @@ Mono listServiceBindings( Mono update(UpdateApplicationRequest request); /** - * Makes the Upload the bits for an App request + * Makes the Upload the bits for an App request * * @param request the Upload Application request * @return the response from the Upload Application request @@ -197,7 +197,7 @@ Mono listServiceBindings( Mono upload(UploadApplicationRequest request); /** - * Makes the Upload the droplet for an App request + * Makes the Upload the droplet for an App request * * @param request the Upload Droplet request * @return the response from the Upload Droplet request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applicationusageevents/ApplicationUsageEvents.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applicationusageevents/ApplicationUsageEvents.java index e053fdcdfa..220587b793 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applicationusageevents/ApplicationUsageEvents.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applicationusageevents/ApplicationUsageEvents.java @@ -24,7 +24,7 @@ public interface ApplicationUsageEvents { /** - * Makes the Get an Application Usage Event request + * Makes the Get an Application Usage Event request * * @param request the Get Application Usage Event request * @return the response from the Get all Application Usage Event request @@ -32,7 +32,7 @@ public interface ApplicationUsageEvents { Mono get(GetApplicationUsageEventRequest request); /** - * Makes the List all Application Usage Events request + * Makes the List all Application Usage Events request * * @param request the List all Application Usage Events request * @return the response from the List all Application Usage Events request @@ -40,7 +40,7 @@ public interface ApplicationUsageEvents { Mono list(ListApplicationUsageEventsRequest request); /** - * Makes the Purge and Reseed Application Usage Events request + * Makes the Purge and Reseed Application Usage Events request * * @param request the Purge and Reseed Application Usage Events * @return the response from the Purge and Reseed Application Usage Events request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/blobstores/Blobstores.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/blobstores/Blobstores.java index e35564c589..e595f9a273 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/blobstores/Blobstores.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/blobstores/Blobstores.java @@ -24,7 +24,7 @@ public interface Blobstores { /** - * Makes the Delete Buildpack Caches request + * Makes the Delete Buildpack Caches request * * @param request the Delete Buildpack Caches request * @return the response from the Delete Buildpack Caches request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/buildpacks/Buildpacks.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/buildpacks/Buildpacks.java index 680611acce..a44ac6cecc 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/buildpacks/Buildpacks.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/buildpacks/Buildpacks.java @@ -24,7 +24,7 @@ public interface Buildpacks { /** - * Makes the Create the Buildpack request + * Makes the Create the Buildpack request * * @param request the Create Buildpack request * @return the response from the Create Buildpack request @@ -32,7 +32,7 @@ public interface Buildpacks { Mono create(CreateBuildpackRequest request); /** - * Makes the Delete the Buildpack request + * Makes the Delete the Buildpack request * * @param request the Delete Buildpack request * @return the response from the Delete Buildpack request @@ -40,7 +40,7 @@ public interface Buildpacks { Mono delete(DeleteBuildpackRequest request); /** - * Makes the Retrieve a particular Buildpack request + * Makes the Retrieve a particular Buildpack request * * @param request the Get Buildpack request * @return the response from the Get Buildpack request @@ -48,7 +48,7 @@ public interface Buildpacks { Mono get(GetBuildpackRequest request); /** - * Makes the List all Buildpacks request + * Makes the List all Buildpacks request * * @param request the List all Buildpacks request * @return the response from the List all Buildpacks request @@ -56,9 +56,9 @@ public interface Buildpacks { Mono list(ListBuildpacksRequest request); /** - * Makes the Change the position of a Buildpack, - * Enable or disable a Buildpack, and - * Lock or unlock a Buildpack requests + * Makes the Change the position of a Buildpack, + * Enable or disable a Buildpack, and + * Lock or unlock a Buildpack requests * * @param request the Update Buildpack request * @return the response from the Update Buildpack request @@ -66,7 +66,7 @@ public interface Buildpacks { Mono update(UpdateBuildpackRequest request); /** - * Makes the Upload Buildpack request + * Makes the Upload Buildpack request * * @param request the Upload Buildpack request * @return the response from the Upload Buildpack request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/domains/Domains.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/domains/Domains.java index f91b620340..baf6e9ea9a 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/domains/Domains.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/domains/Domains.java @@ -24,8 +24,8 @@ public interface Domains { /** - * Makes the deprecated Create a Domain - * owned by the given Organization request and the deprecated + * Makes the deprecated Create a Domain + * owned by the given Organization request and the deprecated * Create a Shared Domain request * * @param request the Create a Domain request @@ -35,7 +35,7 @@ public interface Domains { Mono create(CreateDomainRequest request); /** - * Makes the deprecated Delete a Particular Domain request + * Makes the deprecated Delete a Particular Domain request * * @param request the Delete a Particular Domain request * @return the response from the Delete a Particular Domain request @@ -44,7 +44,7 @@ public interface Domains { Mono delete(DeleteDomainRequest request); /** - * Makes the deprecated Get Domain request + * Makes the deprecated Get Domain request * * @param request The Get Domain request * @return the response from the Get Domain request @@ -53,7 +53,7 @@ public interface Domains { Mono get(GetDomainRequest request); /** - * Makes the deprecated List all Domains request + * Makes the deprecated List all Domains request * * @param request the List all Domains request * @return the response from the List all Domains request @@ -62,7 +62,7 @@ public interface Domains { Mono list(ListDomainsRequest request); /** - * Makes the deprecated List all Spaces for the Domain + * Makes the deprecated List all Spaces for the Domain * request * * @param request the List all Spaces for the Domain request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/environmentvariablegroups/EnvironmentVariableGroups.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/environmentvariablegroups/EnvironmentVariableGroups.java index cfacbd8182..73e1bd5233 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/environmentvariablegroups/EnvironmentVariableGroups.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/environmentvariablegroups/EnvironmentVariableGroups.java @@ -24,7 +24,7 @@ public interface EnvironmentVariableGroups { /** - * Makes the Get the Running Environment + * Makes the Get the Running Environment * Variables request * * @param request the Get Running Environment Variables request @@ -34,7 +34,7 @@ Mono getRunningEnvironmentVariables( GetRunningEnvironmentVariablesRequest request); /** - * Makes the Get the Staging Environment + * Makes the Get the Staging Environment * Variables request * * @param request the Get Staging Environment Variables request @@ -44,7 +44,7 @@ Mono getStagingEnvironmentVariables( GetStagingEnvironmentVariablesRequest request); /** - * Makes the Update the Running Environment + * Makes the Update the Running Environment * Variables request * * @param request the Update Running Environment Variables request @@ -54,7 +54,7 @@ Mono updateRunningEnvironmentVariable UpdateRunningEnvironmentVariablesRequest request); /** - * Makes the Update + * Makes the Update * the Staging Environment Variables request * * @param request the Update Staging Environment Variables request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/events/Events.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/events/Events.java index 513c0ac405..f8f0a50c89 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/events/Events.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/events/Events.java @@ -24,7 +24,7 @@ public interface Events { /** - * Makes the Get Event request + * Makes the Get Event request * * @param request the Get Event request * @return the response from the Get Event request @@ -32,7 +32,7 @@ public interface Events { Mono get(GetEventRequest request); /** - * Makes the List Events request + * Makes the List Events request * * @param request the List Events request * @return the response from the List Events request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/featureflags/FeatureFlags.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/featureflags/FeatureFlags.java index 0a8cfe0437..2f0787908d 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/featureflags/FeatureFlags.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/featureflags/FeatureFlags.java @@ -24,7 +24,7 @@ public interface FeatureFlags { /** - * Makes one of the Get feature flags requests. See API under Feature Flags. + * Makes one of the Get feature flags requests. See API under Feature Flags. * * @param request the get feature flag request * @return the response from the get feature flag request @@ -32,7 +32,7 @@ public interface FeatureFlags { Mono get(GetFeatureFlagRequest request); /** - * Makes the List Feature Flags request + * Makes the List Feature Flags request * * @param request the list feature flags request * @return the response from the list feature flags request @@ -40,7 +40,7 @@ public interface FeatureFlags { Mono list(ListFeatureFlagsRequest request); /** - * Makes the Set Feature Flag request + * Makes the Set Feature Flag request * * @param request the set feature flag request * @return the response from the set feature flag request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/info/Info.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/info/Info.java index 1b8c854c91..00ae77e265 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/info/Info.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/info/Info.java @@ -24,7 +24,7 @@ public interface Info { /** - * Makes the Get Info request + * Makes the Get Info request * * @param request the Get Info request * @return the response from the Get Info request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/jobs/Jobs.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/jobs/Jobs.java index 924e56a8be..74513f9523 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/jobs/Jobs.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/jobs/Jobs.java @@ -24,7 +24,7 @@ public interface Jobs { /** - * Makes the Get Job request + * Makes the Get Job request * * @param request the Get Job request * @return the response from the Get Job request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizationquotadefinitions/OrganizationQuotaDefinitions.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizationquotadefinitions/OrganizationQuotaDefinitions.java index b2f6610174..553a527cc8 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizationquotadefinitions/OrganizationQuotaDefinitions.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizationquotadefinitions/OrganizationQuotaDefinitions.java @@ -24,7 +24,7 @@ public interface OrganizationQuotaDefinitions { /** - * Makes the Creating an Organization Quota Definition + * Makes the Creating an Organization Quota Definition * request * * @param request the Create an Organization Quota Definition request @@ -34,7 +34,7 @@ Mono create( CreateOrganizationQuotaDefinitionRequest request); /** - * Makes the Delete an Organization Quota + * Makes the Delete an Organization Quota * Definition request * * @param request the Delete an Organization Quota Definition request @@ -44,7 +44,7 @@ Mono delete( DeleteOrganizationQuotaDefinitionRequest request); /** - * Makes the Retrieve a Particular Organization + * Makes the Retrieve a Particular Organization * Quota Definition request * * @param request the Retrieve a Particular Organization Quota Definition request @@ -53,7 +53,7 @@ Mono delete( Mono get(GetOrganizationQuotaDefinitionRequest request); /** - * Makes the List all Organization Quota Definitions + * Makes the List all Organization Quota Definitions * request * * @param request the List all Organization Quota Definitions request @@ -63,7 +63,7 @@ Mono list( ListOrganizationQuotaDefinitionsRequest request); /** - * Makes the Update an Organization Quota Definition + * Makes the Update an Organization Quota Definition * request * * @param request the Update an Organization Quota Definition request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizations/Organizations.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizations/Organizations.java index 094676680d..88a8d89a2d 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizations/Organizations.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/organizations/Organizations.java @@ -24,7 +24,7 @@ public interface Organizations { /** - * Makes the Associate Auditor with the Organization request + * Makes the Associate Auditor with the Organization request * * @param request the Associate Auditor request * @return the response from the Associate Auditor request @@ -33,7 +33,7 @@ Mono associateAuditor( AssociateOrganizationAuditorRequest request); /** - * Makes the Associate Auditor with the Organization by Username + * Makes the Associate Auditor with the Organization by Username * request * * @param request the Associate Auditor with an Organization by Username request @@ -43,7 +43,7 @@ Mono associateAuditorByUsername( AssociateOrganizationAuditorByUsernameRequest request); /** - * Makes the Associate Billing Manager with the Organization + * Makes the Associate Billing Manager with the Organization * request * * @param request the Associate Billing Manager with the Organization request @@ -53,7 +53,7 @@ Mono associateBillingManager( AssociateOrganizationBillingManagerRequest request); /** - * Makes the Associate Billing Manager with the Organization + * Makes the Associate Billing Manager with the Organization * by Username request * * @param request the Associate Billing Manager with the Organization by Username request @@ -63,7 +63,7 @@ Mono associateBillingMana AssociateOrganizationBillingManagerByUsernameRequest request); /** - * Makes the Associate Manager with the Organization request + * Makes the Associate Manager with the Organization request * * @param request the Associate Manager with the Organization request * @return the response from the Associate Manager with the Organization request @@ -72,7 +72,7 @@ Mono associateManager( AssociateOrganizationManagerRequest request); /** - * Makes the Associate Manager with the Organization by Username + * Makes the Associate Manager with the Organization by Username * request * * @param request the Associate Manager with the Organization by Username request @@ -82,7 +82,7 @@ Mono associateManagerByUsername( AssociateOrganizationManagerByUsernameRequest request); /** - * Makes the Associate Private Domain with the Organization request + * Makes the Associate Private Domain with the Organization request * * @param request the Associate Private Domain with the Organization request * @return the response from the Associate Private Domain with the Organization request @@ -91,7 +91,7 @@ Mono associatePrivateDomain( AssociateOrganizationPrivateDomainRequest request); /** - * Makes the Associate User with the Organization request + * Makes the Associate User with the Organization request * * @param request the Associate User with the Organization request * @return the response from the Associate User with the Organization request @@ -99,7 +99,7 @@ Mono associatePrivateDomain( Mono associateUser(AssociateOrganizationUserRequest request); /** - * Makes the Associate User with the Organization by Username + * Makes the Associate User with the Organization by Username * request * * @param request the Associate User with the Organization by Username request @@ -109,7 +109,7 @@ Mono associateUserByUsername( AssociateOrganizationUserByUsernameRequest request); /** - * Makes the Creating an Organization request + * Makes the Creating an Organization request * * @param request the Creating an Organization request * @return the response from the Creating an Organization request @@ -117,7 +117,7 @@ Mono associateUserByUsername( Mono create(CreateOrganizationRequest request); /** - * Makes the Delete a Particular Organization request + * Makes the Delete a Particular Organization request * * @param request the Delete a Particular Organization request * @return the response from the Delete a Particular Organization request @@ -125,7 +125,7 @@ Mono associateUserByUsername( Mono delete(DeleteOrganizationRequest request); /** - * Makes the Retrieve a Particular Organization request + * Makes the Retrieve a Particular Organization request * * @param request the Retrieve a Particular Organization request * @return the response from the Retrieve a Particular Organization request @@ -133,7 +133,7 @@ Mono associateUserByUsername( Mono get(GetOrganizationRequest request); /** - * Makes the Retrieving organization instance usage request + * Makes the Retrieving organization instance usage request * * @param request the Retrieving organization instance usage request * @return the response from the Retrieving organization instance usage request @@ -142,7 +142,7 @@ Mono getInstanceUsage( GetOrganizationInstanceUsageRequest request); /** - * Makes the Retrieving organization memory usage request + * Makes the Retrieving organization memory usage request * * @param request the Retrieving organization memory usage request * @return the response from the Retrieving organization memory usage request @@ -151,7 +151,7 @@ Mono getMemoryUsage( GetOrganizationMemoryUsageRequest request); /** - * Makes the Retrieving the roles of all Users in the + * Makes the Retrieving the roles of all Users in the * Organization request * * @param request the Retrieving the roles of all Users in the Organization request @@ -160,7 +160,7 @@ Mono getMemoryUsage( Mono getUserRoles(GetOrganizationUserRolesRequest request); /** - * Makes the List Organizations request + * Makes the List Organizations request * * @param request the List Organizations request * @return the response from the List Organizations request @@ -168,7 +168,7 @@ Mono getMemoryUsage( Mono list(ListOrganizationsRequest request); /** - * Makes the List all Auditors for the Organization request + * Makes the List all Auditors for the Organization request * * @param request the List all Auditors for the Organization request * @return the response from the List all Auditors for the Organization request @@ -176,7 +176,7 @@ Mono getMemoryUsage( Mono listAuditors(ListOrganizationAuditorsRequest request); /** - * Makes the List all Billing Managers for the Organization request + * Makes the List all Billing Managers for the Organization request * * @param request the List all Billing Managers for the Organization request * @return the response from the List all Billing Managers for the Organization request @@ -185,7 +185,7 @@ Mono listBillingManagers( ListOrganizationBillingManagersRequest request); /** - * List all Domains for the Organization request + * List all Domains for the Organization request * * @param request the List all Domains for the Organization request * @return the response from the List all Domains for the Organization request @@ -194,7 +194,7 @@ Mono listBillingManagers( Mono listDomains(ListOrganizationDomainsRequest request); /** - * Makes the List all Managers for the Organization request + * Makes the List all Managers for the Organization request * * @param request the List all Managers for the Organization request * @return the response from the List all Managers for the Organization request @@ -202,7 +202,7 @@ Mono listBillingManagers( Mono listManagers(ListOrganizationManagersRequest request); /** - * List all Private Domains for the Organization request + * List all Private Domains for the Organization request * * @param request the List all Private Domains for the Organization request * @return the response from the List all Private Domains for the Organization request @@ -211,7 +211,7 @@ Mono listPrivateDomains( ListOrganizationPrivateDomainsRequest request); /** - * Makes the List all Services for the Organization request + * Makes the List all Services for the Organization request * * @param request the List all Services for the Organization request * @return the response from the List all Services for the Organization request @@ -219,7 +219,7 @@ Mono listPrivateDomains( Mono listServices(ListOrganizationServicesRequest request); /** - * Makes the List all Space Quota Definitions for the + * Makes the List all Space Quota Definitions for the * Organization request * * @param request the List all Space Quota Definitions for the Organization request @@ -229,7 +229,7 @@ Mono listSpaceQuotaDefinitions( ListOrganizationSpaceQuotaDefinitionsRequest request); /** - * Makes the List all Spaces for the Organization request + * Makes the List all Spaces for the Organization request * * @param request the List all Spaces for the Organization request * @return the response from the List all Spaces for the Organization request @@ -237,7 +237,7 @@ Mono listSpaceQuotaDefinitions( Mono listSpaces(ListOrganizationSpacesRequest request); /** - * Makes the List all Users for the Organization request + * Makes the List all Users for the Organization request * * @param request the List all Users for the Organization request * @return the response from the List all Users for the Organization request @@ -245,7 +245,7 @@ Mono listSpaceQuotaDefinitions( Mono listUsers(ListOrganizationUsersRequest request); /** - * Makes the Remove Auditor from the Organization request + * Makes the Remove Auditor from the Organization request * * @param request the Remove Auditor from the Organization request * @return the response from the Remove Auditor from the Organization request @@ -253,7 +253,7 @@ Mono listSpaceQuotaDefinitions( Mono removeAuditor(RemoveOrganizationAuditorRequest request); /** - * Makes the Disassociate Auditor with the Organization by + * Makes the Disassociate Auditor with the Organization by * Username request * * @param request the Remove Auditor with the Organization By Username request @@ -262,7 +262,7 @@ Mono listSpaceQuotaDefinitions( Mono removeAuditorByUsername(RemoveOrganizationAuditorByUsernameRequest request); /** - * Makes the Remove Billing Manager from the Organization request + * Makes the Remove Billing Manager from the Organization request * * @param request the Remove Billing Manager from the Organization request * @return the response from the Remove Billing Manager from the Organization request @@ -270,7 +270,7 @@ Mono listSpaceQuotaDefinitions( Mono removeBillingManager(RemoveOrganizationBillingManagerRequest request); /** - * Makes the Disassociate Billing Manager with the + * Makes the Disassociate Billing Manager with the * Organization by Username request * * @param request the Disassociate Billing Manager with the Organization by Username request @@ -280,7 +280,7 @@ Mono removeBillingManagerByUsername( RemoveOrganizationBillingManagerByUsernameRequest request); /** - * Makes the Remove Manager from the Organization request + * Makes the Remove Manager from the Organization request * * @param request the Remove Manager from the Organization request * @return the response from the Remove Manager from the Organization request @@ -288,7 +288,7 @@ Mono removeBillingManagerByUsername( Mono removeManager(RemoveOrganizationManagerRequest request); /** - * Makes the Disassociate Manager with the Organization by + * Makes the Disassociate Manager with the Organization by * Username request * * @param request the Disassociate Manager with the Organization by Username request @@ -297,7 +297,7 @@ Mono removeBillingManagerByUsername( Mono removeManagerByUsername(RemoveOrganizationManagerByUsernameRequest request); /** - * Makes the Remove Private Domain from the Organization request + * Makes the Remove Private Domain from the Organization request * * @param request the Remove Private Domain from the Organization request * @return the response from the Remove Private Domain from the Organization request @@ -305,7 +305,7 @@ Mono removeBillingManagerByUsername( Mono removePrivateDomain(RemoveOrganizationPrivateDomainRequest request); /** - * Makes the Remove User from the Organization request + * Makes the Remove User from the Organization request * * @param request the Remove User from the Organization request * @return the response from the Remove User from the Organization request @@ -313,7 +313,7 @@ Mono removeBillingManagerByUsername( Mono removeUser(RemoveOrganizationUserRequest request); /** - * Makes the Disassociate User with the Organization by Username + * Makes the Disassociate User with the Organization by Username * request * * @param request the Disassociate User with the Organization by Username request @@ -322,7 +322,7 @@ Mono removeBillingManagerByUsername( Mono removeUserByUsername(RemoveOrganizationUserByUsernameRequest request); /** - * Makes the Get Organization summary request + * Makes the Get Organization summary request * * @param request the Organization summary request * @return the response from the Organization summary request @@ -330,7 +330,7 @@ Mono removeBillingManagerByUsername( Mono summary(SummaryOrganizationRequest request); /** - * Makes the Update an Organization request + * Makes the Update an Organization request * * @param request the Update an Organization request * @return the response from the Update an Organization request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/privatedomains/PrivateDomains.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/privatedomains/PrivateDomains.java index c84f285f90..6f1c418040 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/privatedomains/PrivateDomains.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/privatedomains/PrivateDomains.java @@ -24,7 +24,7 @@ public interface PrivateDomains { /** - * Makes the Create a Private Domain owned by the given + * Makes the Create a Private Domain owned by the given * Organization request * * @param request the Create a Private Domain request @@ -33,7 +33,7 @@ public interface PrivateDomains { Mono create(CreatePrivateDomainRequest request); /** - * Makes the Delete a Particular Private Domain request + * Makes the Delete a Particular Private Domain request * * @param request the Delete Private Domain request * @return the response from the Delete Private Domain request @@ -41,7 +41,7 @@ public interface PrivateDomains { Mono delete(DeletePrivateDomainRequest request); /** - * Makes the Retrieve a Particular Private Domain request + * Makes the Retrieve a Particular Private Domain request * * @param request the Get Private Domain request * @return the response from the Get Private Domain request @@ -49,7 +49,7 @@ public interface PrivateDomains { Mono get(GetPrivateDomainRequest request); /** - * Makes the List Private Domains request + * Makes the List Private Domains request * * @param request the List Private Domains request * @return the response from the List Private Domains request @@ -57,7 +57,7 @@ public interface PrivateDomains { Mono list(ListPrivateDomainsRequest request); /** - * Makes the List all Shared Organizations for the Private + * Makes the List all Shared Organizations for the Private * Domain request * * @param request the List Private Domain Shared Organizations request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/resourcematch/ResourceMatch.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/resourcematch/ResourceMatch.java index 6fc32ce3df..01843cd15b 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/resourcematch/ResourceMatch.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/resourcematch/ResourceMatch.java @@ -24,7 +24,7 @@ public interface ResourceMatch { /** - * Makes the List Matching Resources request + * Makes the List Matching Resources request * * @param request the List Matching Resources request * @return the response from the List Matching Resources request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routemappings/RouteMappings.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routemappings/RouteMappings.java index b072b415a9..24f734157f 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routemappings/RouteMappings.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routemappings/RouteMappings.java @@ -24,7 +24,7 @@ public interface RouteMappings { /** - * Makes the Creating a Route Mapping request + * Makes the Creating a Route Mapping request * * @param request the Creating a Route Mapping request * @return the response from the Creating a Route Mapping request @@ -32,7 +32,7 @@ public interface RouteMappings { Mono create(CreateRouteMappingRequest request); /** - * Makes the Deleting a Route Mapping request + * Makes the Deleting a Route Mapping request * * @param request the Delete a Route Mapping request * @return the response from deleting a Route Mapping request @@ -40,7 +40,7 @@ public interface RouteMappings { Mono delete(DeleteRouteMappingRequest request); /** - * Makes the Retrieve a Particular Route Mapping request + * Makes the Retrieve a Particular Route Mapping request * * @param request the Get a Particular Route Mapping request * @return the response from the Get a Particular Route Mapping request @@ -48,7 +48,7 @@ public interface RouteMappings { Mono get(GetRouteMappingRequest request); /** - * Makes the List Route Mappings request + * Makes the List Route Mappings request * * @param request the List Route Mappings request * @return the response from the List Route Mappings request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routes/Routes.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routes/Routes.java index 3e4573a9c6..f0b4f6dbf3 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routes/Routes.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/routes/Routes.java @@ -24,7 +24,7 @@ public interface Routes { /** - * Makes the Associate Application with the Route request + * Makes the Associate Application with the Route request * * @param request the Associate an Application with the Route request * @return the response from the Associate an Application with the Route request @@ -33,7 +33,7 @@ Mono associateApplication( AssociateRouteApplicationRequest request); /** - * Makes the Creating a Route request + * Makes the Creating a Route request * * @param request the Creating a Route request * @return the response from the Creating a Route request @@ -41,7 +41,7 @@ Mono associateApplication( Mono create(CreateRouteRequest request); /** - * Makes the Delete a Particular Route request + * Makes the Delete a Particular Route request * * @param request the Delete a Particular Route request * @return the response from the Delete a Particular Route request @@ -49,7 +49,7 @@ Mono associateApplication( Mono delete(DeleteRouteRequest request); /** - * Makes the Check a Route exists request + * Makes the Check a Route exists request * * @param request the Check a Route exists request * @return the response from the Check a Route exists request @@ -57,7 +57,7 @@ Mono associateApplication( Mono exists(RouteExistsRequest request); /** - * Makes the Retrieve a Particular Route request + * Makes the Retrieve a Particular Route request * * @param request the Retrieve a Particular Route request * @return the response from the Retrieve a Particular Route request @@ -65,7 +65,7 @@ Mono associateApplication( Mono get(GetRouteRequest request); /** - * Makes the List all Routes request + * Makes the List all Routes request * * @param request the List all Applications for the Route request * @return the response from the List all Applications for the Route request @@ -73,7 +73,7 @@ Mono associateApplication( Mono list(ListRoutesRequest request); /** - * Makes the List all Applications for the Route request + * Makes the List all Applications for the Route request * * @param request the List all Applications for the Route request * @return the response from the List all Applications for the Route request @@ -81,7 +81,7 @@ Mono associateApplication( Mono listApplications(ListRouteApplicationsRequest request); /** - * Makes the List all Route Mappings for the Route request + * Makes the List all Route Mappings for the Route request * * @param request the List all Route Mappings for the Route request * @return the response from the List all Route Mappings for the Route request @@ -89,7 +89,7 @@ Mono associateApplication( Mono listMappings(ListRouteMappingsRequest request); /** - * Makes the Remove Application from the Route request + * Makes the Remove Application from the Route request * * @param request the Remove Application from the Route request * @return the response from the Remove Application from the Route request @@ -97,7 +97,7 @@ Mono associateApplication( Mono removeApplication(RemoveRouteApplicationRequest request); /** - * Makes the Update a Route request + * Makes the Update a Route request * * @param request the Update a Route request * @return the response from the Update a Route request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/securitygroups/SecurityGroups.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/securitygroups/SecurityGroups.java index a75077e262..ec6e07b489 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/securitygroups/SecurityGroups.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/securitygroups/SecurityGroups.java @@ -21,7 +21,7 @@ public interface SecurityGroups { /** - * Makes the Associate Space with the Security Group request. + * Makes the Associate Space with the Security Group request. * * @param request the associate security group space request * @return the response from the associate security group space request @@ -30,7 +30,7 @@ Mono associateSpace( AssociateSecurityGroupSpaceRequest request); /** - * Makes the Creating a Security Group request. + * Makes the Creating a Security Group request. * * @param request the create security group request * @return the response from the create security group request @@ -38,7 +38,7 @@ Mono associateSpace( Mono create(CreateSecurityGroupRequest request); /** - * Makes the Delete a Particular Security Group request. + * Makes the Delete a Particular Security Group request. * * @param request the delete security group request * @return the response from the delete security group request @@ -46,7 +46,7 @@ Mono associateSpace( Mono delete(DeleteSecurityGroupRequest request); /** - * Makes the Retrieve a Particular Security Group request. + * Makes the Retrieve a Particular Security Group request. * * @param request the get security groups request * @return the response from the get security groups request @@ -54,7 +54,7 @@ Mono associateSpace( Mono get(GetSecurityGroupRequest request); /** - * Makes the List all Security Groups request. + * Makes the List all Security Groups request. * * @param request the list all security groups request * @return the response from the list all security groups request @@ -62,7 +62,7 @@ Mono associateSpace( Mono list(ListSecurityGroupsRequest request); /** - * Makes the List Running Security Groups + * Makes the List Running Security Groups * request. * * @param request the list running security groups request @@ -72,7 +72,7 @@ Mono listRunningDefaults( ListSecurityGroupRunningDefaultsRequest request); /** - * Makes the List all Spaces for the Security Group request. + * Makes the List all Spaces for the Security Group request. * * @param request the list all spaces for the security group request * @return the response from the list all spaces for the security group request @@ -80,7 +80,7 @@ Mono listRunningDefaults( Mono listSpaces(ListSecurityGroupSpacesRequest request); /** - * Makes the List Staging Security Groups request. + * Makes the List Staging Security Groups request. * * @param request the list staging security groups request * @return the response from the list staging security groups request @@ -89,7 +89,7 @@ Mono listStagingDefaults( ListSecurityGroupStagingDefaultsRequest request); /** - * Makes the + * Makes the * Removing a Security Group as a default for running Apps request. * * @param request the remove running security group request @@ -98,7 +98,7 @@ Mono listStagingDefaults( Mono removeRunningDefault(RemoveSecurityGroupRunningDefaultRequest request); /** - * Makes the Remove Space from the Security Group request. + * Makes the Remove Space from the Security Group request. * * @param request the remove security group space request * @return the response from the remove security group space request @@ -106,7 +106,7 @@ Mono listStagingDefaults( Mono removeSpace(RemoveSecurityGroupSpaceRequest request); /** - * Makes the + * Makes the * Removing a Security Group as a default for staging request. * * @param request the remove staging security group request @@ -115,7 +115,7 @@ Mono listStagingDefaults( Mono removeStagingDefault(RemoveSecurityGroupStagingDefaultRequest request); /** - * Makes the Set a Security Group as a default for + * Makes the Set a Security Group as a default for * running Apps request. * * @param request the list running security groups request @@ -125,7 +125,7 @@ Mono setRunningDefault( SetSecurityGroupRunningDefaultRequest request); /** - * Makes the Set a Security Group as a default for + * Makes the Set a Security Group as a default for * staging Apps request. * * @param request the list staging security groups request @@ -135,7 +135,7 @@ Mono setStagingDefault( SetSecurityGroupStagingDefaultRequest request); /** - * Makes the Updating a Security Group request. + * Makes the Updating a Security Group request. * * @param request the update security group request * @return the response from the update security group request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebindings/ServiceBindingsV2.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebindings/ServiceBindingsV2.java index 082acb2b1f..1d0f4a4e21 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebindings/ServiceBindingsV2.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebindings/ServiceBindingsV2.java @@ -24,7 +24,7 @@ public interface ServiceBindingsV2 { /** - * Makes the Create Service Binding request + * Makes the Create Service Binding request * * @param request the Create Service Binding request * @return the response from the Create Service Binding request @@ -32,7 +32,7 @@ public interface ServiceBindingsV2 { Mono create(CreateServiceBindingRequest request); /** - * Makes the Delete the Service Binding request + * Makes the Delete the Service Binding request * * @param request the Delete Service Binding request * @return the response from the Delete Service Binding request @@ -40,7 +40,7 @@ public interface ServiceBindingsV2 { Mono delete(DeleteServiceBindingRequest request); /** - * Makes the Retrieve a Particular Service Binding request + * Makes the Retrieve a Particular Service Binding request * * @param request the Get Service Binding request * @return the response from the Get Service Binding request @@ -48,7 +48,7 @@ public interface ServiceBindingsV2 { Mono get(GetServiceBindingRequest request); /** - * Makes the Retrieve a Particular Service Binding's Parameters + * Makes the Retrieve a Particular Service Binding's Parameters * request * * @param request the Get Parameters request @@ -58,7 +58,7 @@ Mono getParameters( GetServiceBindingParametersRequest request); /** - * Makes the List all Service Bindings request + * Makes the List all Service Bindings request * * @param request the List Service Bindings request * @return the response from the List Service Bindings request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebrokers/ServiceBrokers.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebrokers/ServiceBrokers.java index a58caaaa1d..7a99a835a5 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebrokers/ServiceBrokers.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicebrokers/ServiceBrokers.java @@ -24,7 +24,7 @@ public interface ServiceBrokers { /** - * Makes the Create Service Broker request + * Makes the Create Service Broker request * * @param request the Create Service Broker request * @return the response from the Create Service Broker request @@ -32,7 +32,7 @@ public interface ServiceBrokers { Mono create(CreateServiceBrokerRequest request); /** - * Makes the Delete the Service Broker request + * Makes the Delete the Service Broker request * * @param request the Delete Service Broker request * @return the response from the Delete Service Broker request @@ -40,7 +40,7 @@ public interface ServiceBrokers { Mono delete(DeleteServiceBrokerRequest request); /** - * Makes the Retrieve a Particular Service Broker request + * Makes the Retrieve a Particular Service Broker request * * @param request the Get Service Broker request * @return the response from the Get Service Broker request @@ -48,7 +48,7 @@ public interface ServiceBrokers { Mono get(GetServiceBrokerRequest request); /** - * Makes the List all Service Brokers request + * Makes the List all Service Brokers request * * @param request the List Service Brokers request * @return the response from the List Service Brokers request @@ -56,7 +56,7 @@ public interface ServiceBrokers { Mono list(ListServiceBrokersRequest request); /** - * Makes the Update Service Broker request + * Makes the Update Service Broker request * * @param request the Update Service Broker request * @return the response from the Update Service Broker request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceinstances/ServiceInstances.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceinstances/ServiceInstances.java index 641cc99a81..95b2dccc7e 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceinstances/ServiceInstances.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceinstances/ServiceInstances.java @@ -24,7 +24,7 @@ public interface ServiceInstances { /** - * Makes the Bind Service Instance To a Route request + * Makes the Bind Service Instance To a Route request * * @param request the Bind Service Instance To Route request * @return the response from the Bind Service Instance To Route request @@ -32,7 +32,7 @@ public interface ServiceInstances { Mono bindRoute(BindServiceInstanceRouteRequest request); /** - * Makes the Create Service Instance request + * Makes the Create Service Instance request * * @param request the Create Service Instance request * @return the response from the Create Service Instance request @@ -40,7 +40,7 @@ public interface ServiceInstances { Mono create(CreateServiceInstanceRequest request); /** - * Makes the Delete the Service Instance request + * Makes the Delete the Service Instance request * * @param request the Delete Service Instance request * @return the response from the Delete Service Instance request @@ -48,7 +48,7 @@ public interface ServiceInstances { Mono delete(DeleteServiceInstanceRequest request); /** - * Makes the Retrieve a Particular Service Instance request + * Makes the Retrieve a Particular Service Instance request * * @param request the Get Service Instance request * @return the response from the Get Service Instance request @@ -57,7 +57,7 @@ public interface ServiceInstances { /** * Makes the - * Retrieve a Particular Service Instance's Parameters + * Retrieve a Particular Service Instance's Parameters * request * * @param request the Get Parameters request @@ -67,7 +67,7 @@ Mono getParameters( GetServiceInstanceParametersRequest request); /** - * Makes the Retrieving permissions on a Service Instance request + * Makes the Retrieving permissions on a Service Instance request * * @param request the Get Permissions request * @return the response from the Get Permissions request @@ -76,7 +76,7 @@ Mono getPermissions( GetServiceInstancePermissionsRequest request); /** - * Makes the List Service Instances request + * Makes the List Service Instances request * * @param request the List Service Instances request * @return the response from the List Service Instances request @@ -84,7 +84,7 @@ Mono getPermissions( Mono list(ListServiceInstancesRequest request); /** - * Makes the List all Routes for the Service Instance request + * Makes the List all Routes for the Service Instance request * * @param request the List Routes request * @return the response from the List Routes request @@ -92,7 +92,7 @@ Mono getPermissions( Mono listRoutes(ListServiceInstanceRoutesRequest request); /** - * Makes the List all Service Bindings for the Service + * Makes the List all Service Bindings for the Service * Instance request * * @param request the List Service Bindings request @@ -102,7 +102,7 @@ Mono listServiceBindings( ListServiceInstanceServiceBindingsRequest request); /** - * Makes the List all Service keys for the Service + * Makes the List all Service keys for the Service * Instance request * * @param request the List Service Keys request @@ -112,7 +112,7 @@ Mono listServiceKeys( ListServiceInstanceServiceKeysRequest request); /** - * Makes the Unbinding a Service Instance from a Route request + * Makes the Unbinding a Service Instance from a Route request * * @param request the Unbind Service Instance from a Route request * @return the response from the Unbind Service Instance from a Route request @@ -120,7 +120,7 @@ Mono listServiceKeys( Mono unbindRoute(UnbindServiceInstanceRouteRequest request); /** - * Makes the Update Service Instance request + * Makes the Update Service Instance request * * @param request the Update Service Instance request * @return the response from the Update Service Instance request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicekeys/ServiceKeys.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicekeys/ServiceKeys.java index e8537adaa8..40e9aac417 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicekeys/ServiceKeys.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/servicekeys/ServiceKeys.java @@ -24,7 +24,7 @@ public interface ServiceKeys { /** - * Makes the Create Service Key request + * Makes the Create Service Key request * * @param request the Create Service Key request * @return the response from the Create Service Key request @@ -32,7 +32,7 @@ public interface ServiceKeys { Mono create(CreateServiceKeyRequest request); /** - * Makes the Delete the Service Key request + * Makes the Delete the Service Key request * * @param request the Delete Service Key request * @return the response from the Delete Service Key request @@ -40,7 +40,7 @@ public interface ServiceKeys { Mono delete(DeleteServiceKeyRequest request); /** - * Makes the Retrieve a Particular Service Key request + * Makes the Retrieve a Particular Service Key request * * @param request the Get Service Key request * @return the response from the Get Service Key request @@ -48,7 +48,7 @@ public interface ServiceKeys { Mono get(GetServiceKeyRequest request); /** - * Makes the List Service Keys request + * Makes the List Service Keys request * * @param request the List Service Keys request * @return the response from the List Service Keys request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplans/ServicePlans.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplans/ServicePlans.java index b9909d8b46..2a936efab9 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplans/ServicePlans.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplans/ServicePlans.java @@ -21,7 +21,7 @@ public interface ServicePlans { /** - * Makes the Delete the Service Plan request + * Makes the Delete the Service Plan request * * @param request the Delete Service Plan request * @return the response from the Delete Service Plan request @@ -29,7 +29,7 @@ public interface ServicePlans { Mono delete(DeleteServicePlanRequest request); /** - * Makes the Retrieve a Particular Service Plan request + * Makes the Retrieve a Particular Service Plan request * * @param request the Get Service Plan request * @return the response from the Get Service Plan request @@ -37,7 +37,7 @@ public interface ServicePlans { Mono get(GetServicePlanRequest request); /** - * Makes the List Service Plans request + * Makes the List Service Plans request * * @param request the List Service Plans request * @return the response from the List Service Plans request @@ -45,7 +45,7 @@ public interface ServicePlans { Mono list(ListServicePlansRequest request); /** - * Makes the List all Service Instances for the Service Plan + * Makes the List all Service Instances for the Service Plan * request * * @param request the List Service Instances request @@ -55,7 +55,7 @@ Mono listServiceInstances( ListServicePlanServiceInstancesRequest request); /** - * Makes the Updating a Service Plan request + * Makes the Updating a Service Plan request * * @param request the Update Service Plan request * @return the response from the Update Service Plan request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplanvisibilities/ServicePlanVisibilities.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplanvisibilities/ServicePlanVisibilities.java index 9827fe6d81..78a0f34b95 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplanvisibilities/ServicePlanVisibilities.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceplanvisibilities/ServicePlanVisibilities.java @@ -24,7 +24,7 @@ public interface ServicePlanVisibilities { /** - * Makes the Create Service Plan Visibility request + * Makes the Create Service Plan Visibility request * * @param request the Create Service Plan Visibility request * @return the response from the Create Service Plan Visibility request @@ -32,7 +32,7 @@ public interface ServicePlanVisibilities { Mono create(CreateServicePlanVisibilityRequest request); /** - * Makes the Delete the Service Plan Visibility request + * Makes the Delete the Service Plan Visibility request * * @param request the Delete Service Plan Visibility request * @return the response from the Delete Service Plan Visibility request @@ -40,7 +40,7 @@ public interface ServicePlanVisibilities { Mono delete(DeleteServicePlanVisibilityRequest request); /** - * Makes the Retrieve a Particular Service Plan Visibility + * Makes the Retrieve a Particular Service Plan Visibility * request * * @param request the Get Service Plan Visibility request @@ -49,7 +49,7 @@ public interface ServicePlanVisibilities { Mono get(GetServicePlanVisibilityRequest request); /** - * Makes the List all Service Plan Visibilities request + * Makes the List all Service Plan Visibilities request * * @param request the List Service Plan Visibilities request * @return the response from the List Service Plan Visibilities request @@ -57,7 +57,7 @@ public interface ServicePlanVisibilities { Mono list(ListServicePlanVisibilitiesRequest request); /** - * Makes the Update Service Plan Visibility request + * Makes the Update Service Plan Visibility request * * @param request the Update Service Plan Visibility request * @return the response from the Update Service Plan Visibility request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/services/Services.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/services/Services.java index fff76483d2..2fe16bb42a 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/services/Services.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/services/Services.java @@ -24,7 +24,7 @@ public interface Services { /** - * Makes the Delete the Service request + * Makes the Delete the Service request * * @param request the Delete Service request * @return the response from the Delete Service request @@ -32,7 +32,7 @@ public interface Services { Mono delete(DeleteServiceRequest request); /** - * Makes the Retrieve a Particular Service request + * Makes the Retrieve a Particular Service request * * @param request the Get Service request * @return the response from the Get Service request @@ -40,7 +40,7 @@ public interface Services { Mono get(GetServiceRequest request); /** - * Makes the List Services request + * Makes the List Services request * * @param request the List Services request * @return the response from the List Services request @@ -48,7 +48,7 @@ public interface Services { Mono list(ListServicesRequest request); /** - * Makes the List all Service Plans for the Service request + * Makes the List all Service Plans for the Service request * * @param request the List Service Plans request * @return the response from the List Service Plans request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceusageevents/ServiceUsageEvents.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceusageevents/ServiceUsageEvents.java index c457c95443..477d45f3fd 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceusageevents/ServiceUsageEvents.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/serviceusageevents/ServiceUsageEvents.java @@ -24,7 +24,7 @@ public interface ServiceUsageEvents { /** - * Makes the Retrieve a Particular Service Usage Events request + * Makes the Retrieve a Particular Service Usage Events request * * @param request the Get Service Usage Events * @return the response from the Get Service Usage Events request @@ -32,7 +32,7 @@ public interface ServiceUsageEvents { Mono get(GetServiceUsageEventRequest request); /** - * Makes the List Service Usage Events request + * Makes the List Service Usage Events request * * @param request the List Service Usage Events request * @return the response from the List Service Usage Events request @@ -40,7 +40,7 @@ public interface ServiceUsageEvents { Mono list(ListServiceUsageEventsRequest request); /** - * Makes the Purge and Reseed Service Usage Events request + * Makes the Purge and Reseed Service Usage Events request * * @param request the Purge and Reseed Service Usage Events * @return the response from the Purge and Reseed Service Usage Events request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/shareddomains/SharedDomains.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/shareddomains/SharedDomains.java index 48affb3146..c91f303843 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/shareddomains/SharedDomains.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/shareddomains/SharedDomains.java @@ -24,7 +24,7 @@ public interface SharedDomains { /** - * Makes the Create a Shared Domain request + * Makes the Create a Shared Domain request * * @param request the Create a Shared Domain request * @return the response from the Create a Shared Domain request @@ -32,7 +32,7 @@ public interface SharedDomains { Mono create(CreateSharedDomainRequest request); /** - * Makes the Delete a Shared Domain request + * Makes the Delete a Shared Domain request * * @param request the Delete a Shared Domain request * @return the response from the Delete a Shared Domain request @@ -40,7 +40,7 @@ public interface SharedDomains { Mono delete(DeleteSharedDomainRequest request); /** - * Makes the Get a Shared Domain request + * Makes the Get a Shared Domain request * * @param request the Get a Shared Domain request * @return the response from the Get a Shared Domain request @@ -48,7 +48,7 @@ public interface SharedDomains { Mono get(GetSharedDomainRequest request); /** - * Makes the List all Shared Domains request + * Makes the List all Shared Domains request * * @param request the List all Shared Domains request * @return the response from the List all Shared Domains request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spacequotadefinitions/SpaceQuotaDefinitions.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spacequotadefinitions/SpaceQuotaDefinitions.java index d014fe1470..fb148dc5d9 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spacequotadefinitions/SpaceQuotaDefinitions.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spacequotadefinitions/SpaceQuotaDefinitions.java @@ -24,7 +24,7 @@ public interface SpaceQuotaDefinitions { /** - * Makes the Associate a Space with a Space Quota + * Makes the Associate a Space with a Space Quota * Definition request * * @param request the Associate a Space with a Space Quota Definition request @@ -34,7 +34,7 @@ Mono associateSpace( AssociateSpaceQuotaDefinitionRequest request); /** - * Makes the Creating a Space Quota Definition request + * Makes the Creating a Space Quota Definition request * * @param request the Create a Space Quota Definition request * @return the response from the Create a Space Quota Definition request @@ -42,7 +42,7 @@ Mono associateSpace( Mono create(CreateSpaceQuotaDefinitionRequest request); /** - * Makes the Delete a Particular Space Quota Definition request + * Makes the Delete a Particular Space Quota Definition request * * @param request the Delete a Particular Space Quota Definition request * @return the response from the Delete a Particular Space Quota Definition request @@ -50,7 +50,7 @@ Mono associateSpace( Mono delete(DeleteSpaceQuotaDefinitionRequest request); /** - * Makes the Retrieve a Particular Space Quota Definition + * Makes the Retrieve a Particular Space Quota Definition * request * * @param request the Retrieve a Particular Space Quota Definition request @@ -59,7 +59,7 @@ Mono associateSpace( Mono get(GetSpaceQuotaDefinitionRequest request); /** - * Makes the List all Space Quota Definitions request + * Makes the List all Space Quota Definitions request * * @param request the List Space Quota Definitions request * @return the response from the List Space Quota Definitions request @@ -67,7 +67,7 @@ Mono associateSpace( Mono list(ListSpaceQuotaDefinitionsRequest request); /** - * Makes the List all Spaces for the Space Quota Definition + * Makes the List all Spaces for the Space Quota Definition * request * * @param request the List all Spaces for the Space Quota Definition request @@ -77,7 +77,7 @@ Mono listSpaces( ListSpaceQuotaDefinitionSpacesRequest request); /** - * Makes the Remove a Space from a Space Quota Definition + * Makes the Remove a Space from a Space Quota Definition * request * * @param request the Remove a Space from a Space Quota Definition request @@ -86,7 +86,7 @@ Mono listSpaces( Mono removeSpace(RemoveSpaceQuotaDefinitionRequest request); /** - * Makes the Updating a Space Quota Definition request + * Makes the Updating a Space Quota Definition request * * @param request the Update Space Quota Definitions request * @return the response from the Update Space Quota Definitions request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spaces/Spaces.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spaces/Spaces.java index b0f6f61e9f..c34d840c20 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spaces/Spaces.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/spaces/Spaces.java @@ -24,7 +24,7 @@ public interface Spaces { /** - * Makes the Associate Auditor with the Space request + * Makes the Associate Auditor with the Space request * * @param request the Associate Auditor request * @return the response from the Associate Auditor request @@ -32,7 +32,7 @@ public interface Spaces { Mono associateAuditor(AssociateSpaceAuditorRequest request); /** - * Makes the Associate Auditor with the Space by Username request + * Makes the Associate Auditor with the Space by Username request * * @param request the Associate Auditor with the Space by Username request * @return the response from the Associate Auditor with the Space by Username request @@ -41,7 +41,7 @@ Mono associateAuditorByUsername( AssociateSpaceAuditorByUsernameRequest request); /** - * Makes the Associate Developer with the Space request + * Makes the Associate Developer with the Space request * * @param request the Associate Developer request * @return the response from the Associate Developer request @@ -50,7 +50,7 @@ Mono associateDeveloper( AssociateSpaceDeveloperRequest request); /** - * Makes the Associate Developer with the Space by Username request + * Makes the Associate Developer with the Space by Username request * * @param request the Associate Developer with the Space by Username request * @return the response from the Associate Developer with the Space by Username request @@ -59,7 +59,7 @@ Mono associateDeveloperByUsername( AssociateSpaceDeveloperByUsernameRequest request); /** - * Makes the Associate Manager with the Space request + * Makes the Associate Manager with the Space request * * @param request the Associate Manager request * @return the response from the Associate Manager request @@ -67,7 +67,7 @@ Mono associateDeveloperByUsername( Mono associateManager(AssociateSpaceManagerRequest request); /** - * Makes the Associate Manager with the Space by Username request + * Makes the Associate Manager with the Space by Username request * * @param request the Associate Manager with the Space by Username request * @return the response from the Associate Manager with the Space by Username request @@ -76,7 +76,7 @@ Mono associateManagerByUsername( AssociateSpaceManagerByUsernameRequest request); /** - * Makes the Associate Security Group with the Space request + * Makes the Associate Security Group with the Space request * * @param request the Associate Security Group request * @return the response from the Associate Security Group request @@ -85,7 +85,7 @@ Mono associateSecurityGroup( AssociateSpaceSecurityGroupRequest request); /** - * Makes the Create Space request + * Makes the Create Space request * * @param request the Create Space request * @return the response from the Create Space request @@ -93,7 +93,7 @@ Mono associateSecurityGroup( Mono create(CreateSpaceRequest request); /** - * Makes the Delete a Particular Space request + * Makes the Delete a Particular Space request * * @param request the Delete a Space request * @return the response from the Delete a Space request @@ -101,7 +101,7 @@ Mono associateSecurityGroup( Mono delete(DeleteSpaceRequest request); /** - * Makes the Get Space request + * Makes the Get Space request * * @param request the Get Space request * @return the response from the Get Space request @@ -109,7 +109,7 @@ Mono associateSecurityGroup( Mono get(GetSpaceRequest request); /** - * Makes the Get Space Summary request + * Makes the Get Space Summary request * * @param request the Get Space Summary request * @return the response from the Get Space Summary request @@ -117,7 +117,7 @@ Mono associateSecurityGroup( Mono getSummary(GetSpaceSummaryRequest request); /** - * Makes the List Spaces request + * Makes the List Spaces request * * @param request the List Spaces request * @return the response from the List Spaces request @@ -125,7 +125,7 @@ Mono associateSecurityGroup( Mono list(ListSpacesRequest request); /** - * Makes the List all Apps for the Space request + * Makes the List all Apps for the Space request * * @param request the List all Apps for the Space request * @return the response from the List all Apps for the Space request @@ -133,7 +133,7 @@ Mono associateSecurityGroup( Mono listApplications(ListSpaceApplicationsRequest request); /** - * Makes the List all Auditors for the Space request + * Makes the List all Auditors for the Space request * * @param request the List all Auditors for the Space request * @return the response from the List all Auditors for the Space request @@ -141,7 +141,7 @@ Mono associateSecurityGroup( Mono listAuditors(ListSpaceAuditorsRequest request); /** - * Makes the List all Developers for the Space request + * Makes the List all Developers for the Space request * * @param request the List all Developers for the Space request * @return the response from the List all Developers for the Space request @@ -149,7 +149,7 @@ Mono associateSecurityGroup( Mono listDevelopers(ListSpaceDevelopersRequest request); /** - * Makes the deprecated List all Domains for the Space request + * Makes the deprecated List all Domains for the Space request * * @param request the List all Domains for the Space request * @return the response from the List all Domains for the Space request @@ -158,7 +158,7 @@ Mono associateSecurityGroup( Mono listDomains(ListSpaceDomainsRequest request); /** - * Makes the List all Events for the Space request + * Makes the List all Events for the Space request * * @param request the List all Events for the Space request * @return the response from the List all Events for the Space request @@ -166,7 +166,7 @@ Mono associateSecurityGroup( Mono listEvents(ListSpaceEventsRequest request); /** - * Makes the List all Managers for the Space request + * Makes the List all Managers for the Space request * * @param request the List all Managers for the Space request * @return the response from the List all Managers for the Space request @@ -174,7 +174,7 @@ Mono associateSecurityGroup( Mono listManagers(ListSpaceManagersRequest request); /** - * Makes the List all Routes for the Space request + * Makes the List all Routes for the Space request * * @param request the List all Routes for the Space request * @return the response from the List all Routes for the Space request @@ -182,7 +182,7 @@ Mono associateSecurityGroup( Mono listRoutes(ListSpaceRoutesRequest request); /** - * Makes the List all Security Groups for the Space request + * Makes the List all Security Groups for the Space request * * @param request the List all Security Groups for the Space request * @return the response from the List all Security Groups for the Space request @@ -191,7 +191,7 @@ Mono listSecurityGroups( ListSpaceSecurityGroupsRequest request); /** - * Makes the List all Service Instances for the Space request + * Makes the List all Service Instances for the Space request * * @param request the List all Service Instances for the Space request * @return the response from the List all Service Instances for the Space request @@ -200,7 +200,7 @@ Mono listServiceInstances( ListSpaceServiceInstancesRequest request); /** - * Makes the List all Services for the Space request + * Makes the List all Services for the Space request * * @param request the List all Services for the Space request * @return the response from the List all Services for the Space request @@ -208,7 +208,7 @@ Mono listServiceInstances( Mono listServices(ListSpaceServicesRequest request); /** - * Makes the Retrieving the roles of all Users in the Space request + * Makes the Retrieving the roles of all Users in the Space request * * @param request the Retrieving the roles of all Users in the Space request * @return the response from the Retrieving the roles of all Users in the Space request @@ -216,7 +216,7 @@ Mono listServiceInstances( Mono listUserRoles(ListSpaceUserRolesRequest request); /** - * Makes the Remove Auditor from the Space request + * Makes the Remove Auditor from the Space request * * @param request the Remove Auditor from the Space request * @return the response from the Remove Auditor from the Space request @@ -224,7 +224,7 @@ Mono listServiceInstances( Mono removeAuditor(RemoveSpaceAuditorRequest request); /** - * Makes the Disassociate Auditor with the Space by Username request + * Makes the Disassociate Auditor with the Space by Username request * * @param request the Disassociate Auditor with the Space by Username request * @return the response from the Disassociate Auditor with the Space by Username request @@ -233,7 +233,7 @@ Mono removeAuditorByUsername( RemoveSpaceAuditorByUsernameRequest request); /** - * Makes the Remove Developer from the Space request + * Makes the Remove Developer from the Space request * * @param request the Remove Developer from the Space request * @return the response from the Remove Developer from the Space request @@ -241,7 +241,7 @@ Mono removeAuditorByUsername( Mono removeDeveloper(RemoveSpaceDeveloperRequest request); /** - * Makes the Disassociate Developer with the Space by Username request + * Makes the Disassociate Developer with the Space by Username request * * @param request the Disassociate Developer with the Space by Username request * @return the response from the Disassociate Developer with the Space by Username request @@ -250,7 +250,7 @@ Mono removeDeveloperByUsername( RemoveSpaceDeveloperByUsernameRequest request); /** - * Makes the Remove Manager from the Space request + * Makes the Remove Manager from the Space request * * @param request the Remove Manager from the Space request * @return the response from the Remove Manager from the Space request @@ -258,7 +258,7 @@ Mono removeDeveloperByUsername( Mono removeManager(RemoveSpaceManagerRequest request); /** - * Makes the Disassociate Manager with the Space by Username request + * Makes the Disassociate Manager with the Space by Username request * * @param request the Disassociate Manager with the Space by Username request * @return the response from the Disassociate Manager with the Space by Username request @@ -267,7 +267,7 @@ Mono removeManagerByUsername( RemoveSpaceManagerByUsernameRequest request); /** - * Makes the Remove Security Group from the Space request + * Makes the Remove Security Group from the Space request * * @param request the Remove Security Group from the Space request * @return the response from the Remove Security Group from the Space request @@ -275,7 +275,7 @@ Mono removeManagerByUsername( Mono removeSecurityGroup(RemoveSpaceSecurityGroupRequest request); /** - * Makes the Update a Space request + * Makes the Update a Space request * * @param request the Update a Space request * @return the response from the Update a Space request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/stacks/Stacks.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/stacks/Stacks.java index 168ce4527d..c8b36478a0 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/stacks/Stacks.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/stacks/Stacks.java @@ -21,7 +21,7 @@ public interface Stacks { /** - * Makes the Create a Stack request + * Makes the Create a Stack request * * @param request the Create a Stack request * @return the response from the Create a Stack Request @@ -29,7 +29,7 @@ public interface Stacks { Mono create(CreateStackRequest request); /** - * Makes the Delete a Stack request + * Makes the Delete a Stack request * * @param request the Delete a Stack request * @return the response from the Delete a Stack Request @@ -37,7 +37,7 @@ public interface Stacks { Mono delete(DeleteStackRequest request); /** - * Makes the Get Stack request + * Makes the Get Stack request * * @param request the Get Stack request * @return the response from the Get Stack Request @@ -45,7 +45,7 @@ public interface Stacks { Mono get(GetStackRequest request); /** - * Makes the List Stacks request + * Makes the List Stacks request * * @param request the List Stacks request * @return the response from the List Stacks request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/userprovidedserviceinstances/UserProvidedServiceInstances.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/userprovidedserviceinstances/UserProvidedServiceInstances.java index 63f50035b4..4b87b3993a 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/userprovidedserviceinstances/UserProvidedServiceInstances.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/userprovidedserviceinstances/UserProvidedServiceInstances.java @@ -24,7 +24,7 @@ public interface UserProvidedServiceInstances { /** - * Makes the Associate Route with the User + * Makes the Associate Route with the User * Provided Service Instance request * * @param request the Associate Route With User Provided Service Instance request @@ -34,7 +34,7 @@ Mono associateRoute( AssociateUserProvidedServiceInstanceRouteRequest request); /** - * Makes the Create User Provided Service Instance + * Makes the Create User Provided Service Instance * request * * @param request the Create User Provided Service Instance request @@ -44,7 +44,7 @@ Mono create( CreateUserProvidedServiceInstanceRequest request); /** - * Makes the Delete the User Provided Service + * Makes the Delete the User Provided Service * Instance request * * @param request the Delete User Provided Service Instance request @@ -53,7 +53,7 @@ Mono create( Mono delete(DeleteUserProvidedServiceInstanceRequest request); /** - * Makes the Retrieve a Particular User Provided + * Makes the Retrieve a Particular User Provided * Service Instance request * * @param request the Get User Provided Service Instance request @@ -62,7 +62,7 @@ Mono create( Mono get(GetUserProvidedServiceInstanceRequest request); /** - * Makes the List User Provided Service Instances + * Makes the List User Provided Service Instances * request * * @param request the List User Provided Service Instances request @@ -72,7 +72,7 @@ Mono list( ListUserProvidedServiceInstancesRequest request); /** - * Makes the List all Routes for the User + * Makes the List all Routes for the User * Provided Service Instance request * * @param request the List User Provided Service Instance Routes request @@ -82,7 +82,7 @@ Mono listRoutes( ListUserProvidedServiceInstanceRoutesRequest request); /** - * Makes the List all Service + * Makes the List all Service * Bindings for the User Provided Service Instance request * * @param request the List Service Bindings request @@ -92,7 +92,7 @@ Mono listServiceBindings ListUserProvidedServiceInstanceServiceBindingsRequest request); /** - * Makes the Remove Route from the User Provided + * Makes the Remove Route from the User Provided * Service Instance request * * @param request the Remove Route from the User Provided Service Instance request @@ -101,7 +101,7 @@ Mono listServiceBindings Mono removeRoute(RemoveUserProvidedServiceInstanceRouteRequest request); /** - * Makes the Update User Provided Service Instance + * Makes the Update User Provided Service Instance * request * * @param request the Update User Provided Service Instance request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/users/Users.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/users/Users.java index af058500a2..4217d553b6 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/users/Users.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/users/Users.java @@ -21,7 +21,7 @@ public interface Users { /** - * Makes the Associate Audited Organization with the User request + * Makes the Associate Audited Organization with the User request * * @param request the Associate Audited Organization with the User request * @return the response from the Associate Audited Organization with the User request @@ -30,7 +30,7 @@ Mono associateAuditedOrganization( AssociateUserAuditedOrganizationRequest request); /** - * Makes the Associate Audited Space with the User request + * Makes the Associate Audited Space with the User request * * @param request the Associate Audited Space with the User request * @return the response from the Associate Audited Space with the User request @@ -39,7 +39,7 @@ Mono associateAuditedSpace( AssociateUserAuditedSpaceRequest request); /** - * Makes the Associate Billing Managed Organization with the User + * Makes the Associate Billing Managed Organization with the User * request * * @param request the Associate Billing Managed Organization with the User request @@ -49,7 +49,7 @@ Mono associateBillingManagedOrg AssociateUserBillingManagedOrganizationRequest request); /** - * Makes the Associate Managed Organization with the User request + * Makes the Associate Managed Organization with the User request * * @param request the Associate Managed Organization with the User request * @return the response from the Associate Managed Organization with the User request @@ -58,7 +58,7 @@ Mono associateManagedOrganization( AssociateUserManagedOrganizationRequest request); /** - * Makes the Associate Managed Space with the User request + * Makes the Associate Managed Space with the User request * * @param request the Associate Managed Space with the User request * @return the response from the Associate Managed Space with the User request @@ -67,7 +67,7 @@ Mono associateManagedSpace( AssociateUserManagedSpaceRequest request); /** - * Makes the Associate Organization with the User request + * Makes the Associate Organization with the User request * * @param request the Associate Organization with the User request * @return the response from the Associate Organization with the User request @@ -76,7 +76,7 @@ Mono associateOrganization( AssociateUserOrganizationRequest request); /** - * Makes the Associate Space with the User request + * Makes the Associate Space with the User request * * @param request the Associate Space with the User request * @return the response from the Associate Space with the User request @@ -84,7 +84,7 @@ Mono associateOrganization( Mono associateSpace(AssociateUserSpaceRequest request); /** - * Makes the Creating a User request + * Makes the Creating a User request * * @param request the Creating a User request * @return the response from the Creating a User request @@ -92,7 +92,7 @@ Mono associateOrganization( Mono create(CreateUserRequest request); /** - * Makes the Delete a Particular User request + * Makes the Delete a Particular User request * * @param request the Delete a Particular User request * @return the response from the Delete a Particular User request @@ -100,7 +100,7 @@ Mono associateOrganization( Mono delete(DeleteUserRequest request); /** - * Makes the Retrieve a Particular User request + * Makes the Retrieve a Particular User request * * @param request the Retrieve a Particular User request * @return the response from the Retrieve a Particular User request @@ -108,7 +108,7 @@ Mono associateOrganization( Mono get(GetUserRequest request); /** - * Makes the List all Users request + * Makes the List all Users request * * @param request the List all Users request * @return the response from the List all Users request @@ -116,7 +116,7 @@ Mono associateOrganization( Mono list(ListUsersRequest request); /** - * Makes the List all Audited Organizations for the User request + * Makes the List all Audited Organizations for the User request * * @param request the List all Audited Organizations for the User request * @return the response from the List all Audited Organizations for the User request @@ -125,7 +125,7 @@ Mono listAuditedOrganizations( ListUserAuditedOrganizationsRequest request); /** - * Makes the List all Audited Spaces for the User request + * Makes the List all Audited Spaces for the User request * * @param request the List all Audited Spaces for the User request * @return the response from the List all Audited Spaces for the User request @@ -133,7 +133,7 @@ Mono listAuditedOrganizations( Mono listAuditedSpaces(ListUserAuditedSpacesRequest request); /** - * Makes the List all Billing Managed Organizations for the User request + * Makes the List all Billing Managed Organizations for the User request * * @param request the List all Billing Managed Organizations for the User request * @return the response from the List all Billing Managed Organizations for the User request @@ -142,7 +142,7 @@ Mono listBillingManagedOrganization ListUserBillingManagedOrganizationsRequest request); /** - * Makes the List all Managed Organizations for the User request + * Makes the List all Managed Organizations for the User request * * @param request the List all Managed Organizations for the User request * @return the response from the List all Managed Organizations for the User request @@ -151,7 +151,7 @@ Mono listManagedOrganizations( ListUserManagedOrganizationsRequest request); /** - * Makes the List all Managed Spaces for the User request + * Makes the List all Managed Spaces for the User request * * @param request the List all Managed Spaces for the User request * @return the response from the List all Managed Spaces for the User request @@ -159,7 +159,7 @@ Mono listManagedOrganizations( Mono listManagedSpaces(ListUserManagedSpacesRequest request); /** - * Makes the List all Organizations for the User request + * Makes the List all Organizations for the User request * * @param request the List all Organizations for the User request * @return the response from the List all Organizations for the User request @@ -167,7 +167,7 @@ Mono listManagedOrganizations( Mono listOrganizations(ListUserOrganizationsRequest request); /** - * Makes the List all Spaces for the User request + * Makes the List all Spaces for the User request * * @param request the List all Spaces for the User request * @return the response from the List all Spaces for the User request @@ -175,7 +175,7 @@ Mono listManagedOrganizations( Mono listSpaces(ListUserSpacesRequest request); /** - * Makes the Remove Audited Organization from the User request + * Makes the Remove Audited Organization from the User request * * @param request the Remove Audited Organization from the User request * @return the response from the Remove Audited Organization from the User request @@ -183,7 +183,7 @@ Mono listManagedOrganizations( Mono removeAuditedOrganization(RemoveUserAuditedOrganizationRequest request); /** - * Makes the Remove Audited Space from the User request + * Makes the Remove Audited Space from the User request * * @param request the Remove Audited Space from the User request * @return the response from the Remove Audited Space from the User request @@ -191,7 +191,7 @@ Mono listManagedOrganizations( Mono removeAuditedSpace(RemoveUserAuditedSpaceRequest request); /** - * Makes the Remove Managed Billing Organization from the User request + * Makes the Remove Managed Billing Organization from the User request * * @param request the Remove Billing Managed Organization from the User request * @return the response from the Remove Billing Managed Organization from the User request @@ -200,7 +200,7 @@ Mono removeBillingManagedOrganization( RemoveUserBillingManagedOrganizationRequest request); /** - * Makes the Remove Managed Organization from the User request + * Makes the Remove Managed Organization from the User request * * @param request the Remove Managed Organization from the User request * @return the response from the Remove Managed Organization from the User request @@ -208,7 +208,7 @@ Mono removeBillingManagedOrganization( Mono removeManagedOrganization(RemoveUserManagedOrganizationRequest request); /** - * Makes the Remove Managed Space from the User request + * Makes the Remove Managed Space from the User request * * @param request the Remove Managed Space from the User request * @return the response from the Remove Managed Space from the User request @@ -216,7 +216,7 @@ Mono removeBillingManagedOrganization( Mono removeManagedSpace(RemoveUserManagedSpaceRequest request); /** - * Makes the Remove Organization from the User request + * Makes the Remove Organization from the User request * * @param request the Remove Organization from the User request * @return the response from the Remove Organization from the User request @@ -224,7 +224,7 @@ Mono removeBillingManagedOrganization( Mono removeOrganization(RemoveUserOrganizationRequest request); /** - * Makes the Remove Space from the User request + * Makes the Remove Space from the User request * * @param request the Remove Space from the User request * @return the response from the Remove Space from the User request @@ -232,7 +232,7 @@ Mono removeBillingManagedOrganization( Mono removeSpace(RemoveUserSpaceRequest request); /** - * Makes the Get User Summary request + * Makes the Get User Summary request * * @param request the Get User summary request * @return the response from the Get User summary request @@ -240,7 +240,7 @@ Mono removeBillingManagedOrganization( Mono summary(SummaryUserRequest request); /** - * Makes the Updating a User request + * Makes the Updating a User request * * @param request the Updating a User request * @return the response from the Updating a User request diff --git a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/securitygroups/SecurityGroupsV3.java b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/securitygroups/SecurityGroupsV3.java index 88e5e6d743..daf492453f 100644 --- a/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/securitygroups/SecurityGroupsV3.java +++ b/cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/securitygroups/SecurityGroupsV3.java @@ -22,7 +22,7 @@ public interface SecurityGroupsV3 { /** * Makes the Creating + * "https://v3-apidocs.cloudfoundry.org/version/3.169.0/index.html#create-a-security-group">Creating * a Security Group request. * * @param request the Create Security Group request