Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GE API spec version to 2023.3 #112

Merged
merged 2 commits into from
Nov 14, 2023
Merged

Conversation

github-actions[bot]
Copy link
Contributor

@gabrielfeo gabrielfeo closed this Sep 14, 2023
@gabrielfeo gabrielfeo reopened this Sep 14, 2023
@github-actions
Copy link
Contributor Author

github-actions bot commented Sep 14, 2023

Generated API diff

diff -ur ./base-ref-api/.openapi-generator/FILES ./pr-ref-api/.openapi-generator/FILES
--- ./base-ref-api/.openapi-generator/FILES	2023-11-14 15:11:00.992604454 +0000
+++ ./pr-ref-api/.openapi-generator/FILES	2023-11-14 15:10:48.608636758 +0000
@@ -1,6 +1,7 @@
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/BuildCacheApi.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/BuildsApi.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/MetaApi.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/ProjectsApi.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/TestDistributionApi.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/internal/auth/HttpBearerAuth.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/internal/infrastructure/BigDecimalAdapter.kt
@@ -48,6 +49,13 @@
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/MavenGradleEnterpriseSettings.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/MavenModule.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/NodeConfiguration.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/PageMetadata.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/PageQuery.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/Project.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/ProjectGroup.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/ProjectGroupsPage.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/ProjectReference.kt
+src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/ProjectsPage.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/ReplicationConfiguration.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfiguration.kt
 src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfigurationWithId.kt
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/BuildsApi.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/BuildsApi.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/BuildsApi.kt	2023-11-14 15:11:01.176604066 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/BuildsApi.kt	2023-11-14 15:10:48.940636093 +0000
@@ -44,10 +44,11 @@
      * @param reverse A boolean indicating the time direction of the query. A value of `true` indicates a backward query, and returned builds will be sorted from most to least recent. A value of `false` indicates a forward query, and returned builds will be sorted from least to most recent. This parameter has no effect if any of `since`, `sinceBuild` are used. If not provided, the default value is `false`.  (optional)
      * @param maxBuilds The maximum number of builds returned by the query. The query returns when that number is reached or when `maxWaitSecs` is reached. If not provided, the default value is `100`.  (optional)
      * @param maxWaitSecs The maximum number of seconds to wait for builds before returning. If this time is reached before `maxBuilds` is reached, the query returns with the already processed builds. Note that this time is respected with best effort. A query will return soon after this time has passed but there is no guarantee that it exactly returns before this time has passed. This parameter has no effect if `reverse=true` is specified, because new builds cannot become available in the past. If not provided, the default value is `3`.  (optional)
+     * @param query A query for filtering builds, written in the Gradle Enterprise advanced query language See: https://gradle.com/help/enterprise-advanced-query  (optional)
      * @return [kotlin.collections.List<Build>]
      */
     @GET("api/builds")
-    suspend fun getBuilds(@Query("since") since: kotlin.Long? = null, @Query("sinceBuild") sinceBuild: kotlin.String? = null, @Query("fromInstant") fromInstant: kotlin.Long? = null, @Query("fromBuild") fromBuild: kotlin.String? = null, @Query("reverse") reverse: kotlin.Boolean? = null, @Query("maxBuilds") maxBuilds: kotlin.Int? = null, @Query("maxWaitSecs") maxWaitSecs: kotlin.Int? = null): kotlin.collections.List<Build>
+    suspend fun getBuilds(@Query("since") since: kotlin.Long? = null, @Query("sinceBuild") sinceBuild: kotlin.String? = null, @Query("fromInstant") fromInstant: kotlin.Long? = null, @Query("fromBuild") fromBuild: kotlin.String? = null, @Query("reverse") reverse: kotlin.Boolean? = null, @Query("maxBuilds") maxBuilds: kotlin.Int? = null, @Query("maxWaitSecs") maxWaitSecs: kotlin.Int? = null, @Query("query") query: kotlin.String? = null): kotlin.collections.List<Build>
 
     /**
      * Get the attributes of a Gradle Build Scan.
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api: ProjectsApi.kt
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/TestDistributionApi.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/TestDistributionApi.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/TestDistributionApi.kt	2023-11-14 15:11:01.180604059 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/TestDistributionApi.kt	2023-11-14 15:10:48.940636093 +0000
@@ -11,7 +11,7 @@
 @JvmSuppressWildcards
 interface TestDistributionApi {
     /**
-     * Create or update an Agent Pool
+     * Create or update an Agent Pool.
      * Create a new Agent Pool in Gradle Enterprise or update the configuration of an existing one. The orderIndex element is optional and can be used to specify the priority order in which the Agent Pool is considered. When not specified, the Agent Pool will be either added last on creation, or will not change position on update. When specified, the Agent Pool will be added at/moved to the specified index and all other Agent Pools will be moved down. If the specified index is out of bounds, the Agent Pool will be added last with the orderIndex adjusted accordingly. 
      * Responses:
      *  - 200: The Agent Pool was created or its configuration was updated successfully.
@@ -27,7 +27,7 @@
     suspend fun createOrUpdateTestDistributionAgentPool(@Path("poolId") poolId: kotlin.String, @Body testDistributionAgentPoolConfiguration: TestDistributionAgentPoolConfiguration): TestDistributionAgentPoolConfigurationWithId
 
     /**
-     * Create an Agent Pool
+     * Create an Agent Pool.
      * Create a new Agent Pool in Gradle Enterprise. The orderIndex element is optional and can be used to specify the priority order in which the Agent Pool is considered. When not specified, the Agent Pool will be added last. When specified, the Agent Pool will be added at the specified index and all other Agent Pools will be moved down. If the specified index is out of bounds, the Agent Pool will be added last with the orderIndex adjusted accordingly. 
      * Responses:
      *  - 200: A new Agent Pool was created with the configuration specified in the request.
@@ -42,8 +42,8 @@
     suspend fun createTestDistributionAgentPool(@Body testDistributionAgentPoolConfiguration: TestDistributionAgentPoolConfiguration): TestDistributionAgentPoolConfigurationWithId
 
     /**
-     * Delete an Agent Pool
-     * View the identifier, capabilities and size of an Agent Pool.
+     * Delete an Agent Pool.
+     * Delete an existing Agent Pool.
      * Responses:
      *  - 200: The poolId referenced an existing Agent Pool and it was deleted.
      *  - 403: The authenticated user has insufficient permissions.
@@ -56,7 +56,7 @@
     suspend fun deleteTestDistributionAgentPool(@Path("poolId") poolId: kotlin.String): Unit
 
     /**
-     * Generate a new Test Distribution API key
+     * Generate a new Test Distribution API key.
      * Generate a new Test Distribution API key to connect agents and query the agent pool API.
      * Responses:
      *  - 200: A new API key was successfully generated and contained in the response.
@@ -112,7 +112,7 @@
     suspend fun getTestDistributionApiKey(@Path("keyPrefix") keyPrefix: kotlin.String): TestDistributionApiKeyPrefix
 
     /**
-     * Insert a specific Test Distribution API key
+     * Insert a specific Test Distribution API key.
      * Inserts a specific Test Distribution API key to connect agents and query the agent pool API. If a key with the same prefix but different key already exists, it will return 400. 
      * Responses:
      *  - 200: The API key was successfully inserted.
@@ -128,7 +128,7 @@
     suspend fun insertTestDistributionApiKey(@Path("keyPrefix") keyPrefix: kotlin.String, @Body testDistributionApiKey: TestDistributionApiKey): TestDistributionApiKeyPrefix
 
     /**
-     * Lists Agent Pools
+     * Lists Agent Pools.
      * Returns a list of all Agent Pools.
      * Responses:
      *  - 200: The response contains a listing of all Agent Pools.
@@ -141,7 +141,7 @@
     suspend fun listTestDistributionAgentPools(): TestDistributionAgentPoolPage
 
     /**
-     * Lists Test Distribution API keys
+     * Lists Test Distribution API keys.
      * Returns a list of all Test Distribution API key prefixes.
      * Responses:
      *  - 200: The response contains a listing of the requested type of (active or revoked) Test Distribution API keys.
@@ -154,7 +154,7 @@
     suspend fun listTestDistributionApiKeys(): TestDistributionApiKeyPrefixPage
 
     /**
-     * Revoke a Test Distribution API key
+     * Revoke a Test Distribution API key.
      * Revoke the Test Distribution API key for the given prefix which uniquely identifies a Test Distribution API key. A revoked key can no longer be used to connect agents, but it will still be queryable and returned in the list. 
      * Responses:
      *  - 200: The API key was revoked successfully.
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/BuildsQuery.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/BuildsQuery.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/BuildsQuery.kt	2023-11-14 15:11:00.480605531 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/BuildsQuery.kt	2023-11-14 15:10:48.088637799 +0000
@@ -29,6 +29,7 @@
  * @param reverse A boolean indicating the time direction of the query. A value of `true` indicates a backward query, and returned builds will be sorted from most to least recent. A value of `false` indicates a forward query, and returned builds will be sorted from least to most recent. This parameter has no effect if any of `since`, `sinceBuild` are used. If not provided, the default value is `false`. 
  * @param maxBuilds The maximum number of builds returned by the query. The query returns when that number is reached or when `maxWaitSecs` is reached. If not provided, the default value is `100`. 
  * @param maxWaitSecs The maximum number of seconds to wait for builds before returning. If this time is reached before `maxBuilds` is reached, the query returns with the already processed builds. Note that this time is respected with best effort. A query will return soon after this time has passed but there is no guarantee that it exactly returns before this time has passed. This parameter has no effect if `reverse=true` is specified, because new builds cannot become available in the past. If not provided, the default value is `3`. 
+ * @param query A query for filtering builds, written in the Gradle Enterprise advanced query language See: https://gradle.com/help/enterprise-advanced-query 
  */
 
 
@@ -62,7 +63,11 @@
 
     /* The maximum number of seconds to wait for builds before returning. If this time is reached before `maxBuilds` is reached, the query returns with the already processed builds. Note that this time is respected with best effort. A query will return soon after this time has passed but there is no guarantee that it exactly returns before this time has passed. This parameter has no effect if `reverse=true` is specified, because new builds cannot become available in the past. If not provided, the default value is `3`.  */
     @Json(name = "maxWaitSecs")
-    val maxWaitSecs: kotlin.Int? = null
+    val maxWaitSecs: kotlin.Int? = null,
+
+    /* A query for filtering builds, written in the Gradle Enterprise advanced query language See: https://gradle.com/help/enterprise-advanced-query  */
+    @Json(name = "query")
+    val query: kotlin.String? = null
 
 )
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/GradleAttributes.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/GradleAttributes.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/GradleAttributes.kt	2023-11-14 15:11:01.188604042 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/GradleAttributes.kt	2023-11-14 15:10:48.952636069 +0000
@@ -37,6 +37,8 @@
  * @param buildOptions 
  * @param environment 
  * @param rootProjectName The root project name. May be `null` in case of very early build failure.
+ * @param hasVerificationFailure Set only if the build failed: true when the build has at least one failure classified as \"Verification\", false otherwise.  The Verification classification is meant for failures that are expected within a standard application development lifecycle. They typically represent a problem with the developer’s inputs to the build such as the source code. 
+ * @param hasNonVerificationFailure Set only if the build failed: true when the build has at least one failure classified as \"Non-verification\", false otherwise.  The Non-verification classification is meant for failures that are typically not expected within a standard application development lifecycle, such as build configuration failures, dependency resolution failures, and infrastructure failures. 
  */
 
 
@@ -93,7 +95,15 @@
 
     /* The root project name. May be `null` in case of very early build failure. */
     @Json(name = "rootProjectName")
-    val rootProjectName: kotlin.String? = null
+    val rootProjectName: kotlin.String? = null,
+
+    /* Set only if the build failed: true when the build has at least one failure classified as \"Verification\", false otherwise.  The Verification classification is meant for failures that are expected within a standard application development lifecycle. They typically represent a problem with the developer’s inputs to the build such as the source code.  */
+    @Json(name = "hasVerificationFailure")
+    val hasVerificationFailure: kotlin.Boolean? = null,
+
+    /* Set only if the build failed: true when the build has at least one failure classified as \"Non-verification\", false otherwise.  The Non-verification classification is meant for failures that are typically not expected within a standard application development lifecycle, such as build configuration failures, dependency resolution failures, and infrastructure failures.  */
+    @Json(name = "hasNonVerificationFailure")
+    val hasNonVerificationFailure: kotlin.Boolean? = null
 
 )
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/MavenAttributes.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/MavenAttributes.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/MavenAttributes.kt	2023-11-14 15:11:01.196604024 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/MavenAttributes.kt	2023-11-14 15:10:48.960636052 +0000
@@ -37,6 +37,8 @@
  * @param buildOptions 
  * @param environment 
  * @param topLevelProjectName The top level project name. May be `null` in case of very early build failure.
+ * @param hasVerificationFailure Set only if the build failed: true when the build has at least one failure classified as \"Verification\", false otherwise.  The Verification classification is meant for failures that are expected within a standard application development lifecycle. They typically represent a problem with the developer’s inputs to the build such as the source code. 
+ * @param hasNonVerificationFailure Set only if the build failed: true when the build has at least one failure classified as \"Non-verification\", false otherwise.  The Non-verification classification is meant for failures that are typically not expected within a standard application development lifecycle, such as build configuration failures, dependency resolution failures, and infrastructure failures. 
  */
 
 
@@ -93,7 +95,15 @@
 
     /* The top level project name. May be `null` in case of very early build failure. */
     @Json(name = "topLevelProjectName")
-    val topLevelProjectName: kotlin.String? = null
+    val topLevelProjectName: kotlin.String? = null,
+
+    /* Set only if the build failed: true when the build has at least one failure classified as \"Verification\", false otherwise.  The Verification classification is meant for failures that are expected within a standard application development lifecycle. They typically represent a problem with the developer’s inputs to the build such as the source code.  */
+    @Json(name = "hasVerificationFailure")
+    val hasVerificationFailure: kotlin.Boolean? = null,
+
+    /* Set only if the build failed: true when the build has at least one failure classified as \"Non-verification\", false otherwise.  The Non-verification classification is meant for failures that are typically not expected within a standard application development lifecycle, such as build configuration failures, dependency resolution failures, and infrastructure failures.  */
+    @Json(name = "hasNonVerificationFailure")
+    val hasNonVerificationFailure: kotlin.Boolean? = null
 
 )
 
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model: PageMetadata.kt
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model: PageQuery.kt
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model: Project.kt
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model: ProjectGroup.kt
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model: ProjectGroupsPage.kt
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model: ProjectReference.kt
Only in ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model: ProjectsPage.kt
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfiguration.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfiguration.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfiguration.kt	2023-11-14 15:11:00.716605034 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfiguration.kt	2023-11-14 15:10:48.316637342 +0000
@@ -20,19 +20,19 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * An Agent Pool configuration.
+ * An agent pool configuration.
  *
- * @param name The alias or display name of the Agent Pool.
+ * @param name The alias or display name of the agent pool.
  * @param minimumSize 
  * @param maximumSize 
  * @param capabilities 
- * @param orderIndex The order in which the Agent Pool is considered for allocation. Lower values are considered first.
+ * @param orderIndex The order in which the agent pool is considered for allocation. Lower values are considered first.
  */
 
 
 data class TestDistributionAgentPoolConfiguration (
 
-    /* The alias or display name of the Agent Pool. */
+    /* The alias or display name of the agent pool. */
     @Json(name = "name")
     val name: kotlin.String,
 
@@ -45,7 +45,7 @@
     @Json(name = "capabilities")
     val capabilities: kotlin.collections.List<kotlin.String>,
 
-    /* The order in which the Agent Pool is considered for allocation. Lower values are considered first. */
+    /* The order in which the agent pool is considered for allocation. Lower values are considered first. */
     @Json(name = "orderIndex")
     val orderIndex: kotlin.Int? = null
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfigurationWithId.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfigurationWithId.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfigurationWithId.kt	2023-11-14 15:11:00.724605018 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolConfigurationWithId.kt	2023-11-14 15:10:48.324637326 +0000
@@ -20,24 +20,24 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * An Agent Pool configuration.
+ * An agent pool configuration.
  *
- * @param id The unique identifier of the Agent Pool.
- * @param name The alias or display name of the Agent Pool.
+ * @param id The unique identifier of the agent pool.
+ * @param name The alias or display name of the agent pool.
  * @param minimumSize 
  * @param maximumSize 
- * @param orderIndex The order in which the Agent Pool is considered for allocation. Lower values are considered first.
+ * @param orderIndex The order in which the agent pool is considered for allocation. Lower values are considered first.
  * @param capabilities 
  */
 
 
 data class TestDistributionAgentPoolConfigurationWithId (
 
-    /* The unique identifier of the Agent Pool. */
+    /* The unique identifier of the agent pool. */
     @Json(name = "id")
     val id: kotlin.String,
 
-    /* The alias or display name of the Agent Pool. */
+    /* The alias or display name of the agent pool. */
     @Json(name = "name")
     val name: kotlin.String,
 
@@ -47,7 +47,7 @@
     @Json(name = "maximumSize")
     val maximumSize: kotlin.Int,
 
-    /* The order in which the Agent Pool is considered for allocation. Lower values are considered first. */
+    /* The order in which the agent pool is considered for allocation. Lower values are considered first. */
     @Json(name = "orderIndex")
     val orderIndex: kotlin.Int,
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolPage.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolPage.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolPage.kt	2023-11-14 15:11:01.204604007 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolPage.kt	2023-11-14 15:10:48.972636029 +0000
@@ -21,15 +21,15 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * A list of Agent Pools.
+ * A list of agent pools.
  *
- * @param content A list of Agent Pool IDs.
+ * @param content A list of agent pool IDs.
  */
 
 
 data class TestDistributionAgentPoolPage (
 
-    /* A list of Agent Pool IDs. */
+    /* A list of agent pool IDs. */
     @Json(name = "content")
     val content: kotlin.collections.List<TestDistributionAgentPoolConfigurationWithId>
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolStatus.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolStatus.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolStatus.kt	2023-11-14 15:11:00.736604992 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionAgentPoolStatus.kt	2023-11-14 15:10:48.344637287 +0000
@@ -20,10 +20,10 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * The status of an Agent Pool.
+ * The status of an agent pool.
  *
- * @param id The unique identifier of the Agent Pool.
- * @param name The alias or display name of the Agent Pool.
+ * @param id The unique identifier of the agent pool.
+ * @param name The alias or display name of the agent pool.
  * @param minimumSize 
  * @param maximumSize 
  * @param connectedAgents 
@@ -34,11 +34,11 @@
 
 data class TestDistributionAgentPoolStatus (
 
-    /* The unique identifier of the Agent Pool. */
+    /* The unique identifier of the agent pool. */
     @Json(name = "id")
     val id: kotlin.String,
 
-    /* The alias or display name of the Agent Pool. */
+    /* The alias or display name of the agent pool. */
     @Json(name = "name")
     val name: kotlin.String,
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKey.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKey.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKey.kt	2023-11-14 15:11:00.740604983 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKey.kt	2023-11-14 15:10:48.356637262 +0000
@@ -20,16 +20,16 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * A Test Distribution Agent API key.
+ * A Test Distribution agent API key.
  *
- * @param key The Agent API key.
+ * @param key The agent API key.
  * @param description Description of the API key, such as the agent pool where it will be used, to help identify it later.
  */
 
 
 data class TestDistributionApiKey (
 
-    /* The Agent API key. */
+    /* The agent API key. */
     @Json(name = "key")
     val key: kotlin.String,
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyDescription.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyDescription.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyDescription.kt	2023-11-14 15:11:00.744604975 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyDescription.kt	2023-11-14 15:10:48.360637254 +0000
@@ -20,7 +20,7 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * Optional description of a Test Distribution Agent API key.
+ * Optional description of a Test Distribution agent API key.
  *
  * @param description Description of the API key, such as the agent pool where it will be used, to help identify it later.
  */
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefix.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefix.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefix.kt	2023-11-14 15:11:00.768604924 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefix.kt	2023-11-14 15:10:48.372637230 +0000
@@ -20,9 +20,9 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * A Test Distribution Agent API key prefix.
+ * A Test Distribution agent API key prefix.
  *
- * @param keyPrefix The Agent API key.
+ * @param keyPrefix The agent API key.
  * @param generatedAt 
  * @param description Description of the API key, such as the agent pool where it will be used, to help identify it later.
  * @param lastUsedAt 
@@ -33,7 +33,7 @@
 
 data class TestDistributionApiKeyPrefix (
 
-    /* The Agent API key. */
+    /* The agent API key. */
     @Json(name = "keyPrefix")
     val keyPrefix: kotlin.String,
 
diff -ur ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefixPage.kt ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefixPage.kt
--- ./base-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefixPage.kt	2023-11-14 15:11:01.208604000 +0000
+++ ./pr-ref-api/src/main/kotlin/com/gabrielfeo/gradle/enterprise/api/model/TestDistributionApiKeyPrefixPage.kt	2023-11-14 15:10:48.976636021 +0000
@@ -21,7 +21,7 @@
 import com.squareup.moshi.JsonClass
 
 /**
- * A list of Test Distribution Agent API key prefixes.
+ * A list of Test Distribution agent API key prefixes.
  *
  * @param content 
  */

@gabrielfeo gabrielfeo force-pushed the feature/api-spec-2023.3 branch from 4443c58 to 3ef6b27 Compare October 10, 2023 18:39
@gabrielfeo gabrielfeo force-pushed the feature/api-spec-2023.3 branch from 3ef6b27 to ff9fd59 Compare November 14, 2023 15:09
@gabrielfeo gabrielfeo merged commit 8d51055 into main Nov 14, 2023
8 checks passed
@gabrielfeo gabrielfeo deleted the feature/api-spec-2023.3 branch November 14, 2023 15:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant