Skip to content

Commit 381b8c0

Browse files
algolia-botsbellone
andcommitted
fix(specs): ingestion small fix + added source input descriptions (generated)
algolia/api-clients-automation#5515 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Sylvain Bellone <[email protected]>
1 parent b76c1b2 commit 381b8c0

File tree

11 files changed

+11
-27
lines changed

11 files changed

+11
-27
lines changed

algoliasearch/src/main/java/com/algolia/model/ingestion/AuthenticationUpdate.java

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ public class AuthenticationUpdate {
1616
@JsonProperty("name")
1717
private String name;
1818

19-
@JsonProperty("platform")
20-
private Platform platform;
21-
2219
@JsonProperty("input")
2320
private AuthInputPartial input;
2421

@@ -44,17 +41,6 @@ public String getName() {
4441
return name;
4542
}
4643

47-
public AuthenticationUpdate setPlatform(Platform platform) {
48-
this.platform = platform;
49-
return this;
50-
}
51-
52-
/** Get platform */
53-
@javax.annotation.Nullable
54-
public Platform getPlatform() {
55-
return platform;
56-
}
57-
5844
public AuthenticationUpdate setInput(AuthInputPartial input) {
5945
this.input = input;
6046
return this;
@@ -78,14 +64,13 @@ public boolean equals(Object o) {
7864
return (
7965
Objects.equals(this.type, authenticationUpdate.type) &&
8066
Objects.equals(this.name, authenticationUpdate.name) &&
81-
Objects.equals(this.platform, authenticationUpdate.platform) &&
8267
Objects.equals(this.input, authenticationUpdate.input)
8368
);
8469
}
8570

8671
@Override
8772
public int hashCode() {
88-
return Objects.hash(type, name, platform, input);
73+
return Objects.hash(type, name, input);
8974
}
9075

9176
@Override
@@ -94,7 +79,6 @@ public String toString() {
9479
sb.append("class AuthenticationUpdate {\n");
9580
sb.append(" type: ").append(toIndentedString(type)).append("\n");
9681
sb.append(" name: ").append(toIndentedString(name)).append("\n");
97-
sb.append(" platform: ").append(toIndentedString(platform)).append("\n");
9882
sb.append(" input: ").append(toIndentedString(input)).append("\n");
9983
sb.append("}");
10084
return sb.toString();

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceBigCommerce.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.List;
1010
import java.util.Objects;
1111

12-
/** SourceBigCommerce */
12+
/** Specific configuration attributes of a `bigcommerce` source. */
1313
@JsonDeserialize(as = SourceBigCommerce.class)
1414
public class SourceBigCommerce implements SourceInput {
1515

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceBigQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.fasterxml.jackson.databind.annotation.*;
88
import java.util.Objects;
99

10-
/** SourceBigQuery */
10+
/** Specific configuration attributes of a `bigquery` source. */
1111
@JsonDeserialize(as = SourceBigQuery.class)
1212
public class SourceBigQuery implements SourceInput, SourceUpdateInput {
1313

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceCSV.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.Map;
1010
import java.util.Objects;
1111

12-
/** SourceCSV */
12+
/** Specific configuration attributes of a `csv` source. */
1313
@JsonDeserialize(as = SourceCSV.class)
1414
public class SourceCSV implements SourceInput, SourceUpdateInput {
1515

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceCommercetools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.List;
1010
import java.util.Objects;
1111

12-
/** SourceCommercetools */
12+
/** Specific configuration attributes of a `commercetools` source. */
1313
@JsonDeserialize(as = SourceCommercetools.class)
1414
public class SourceCommercetools implements SourceInput {
1515

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceDocker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.fasterxml.jackson.databind.annotation.*;
88
import java.util.Objects;
99

10-
/** SourceDocker */
10+
/** Specific configuration attributes of a `docker` source. */
1111
@JsonDeserialize(as = SourceDocker.class)
1212
public class SourceDocker implements SourceInput {
1313

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceGA4BigQueryExport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.fasterxml.jackson.databind.annotation.*;
88
import java.util.Objects;
99

10-
/** SourceGA4BigQueryExport */
10+
/** Specific configuration attributes of a `ga4BigqueryExport` source. */
1111
@JsonDeserialize(as = SourceGA4BigQueryExport.class)
1212
public class SourceGA4BigQueryExport implements SourceInput, SourceUpdateInput {
1313

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceJSON.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.fasterxml.jackson.databind.annotation.*;
88
import java.util.Objects;
99

10-
/** SourceJSON */
10+
/** Specific configuration attributes of a `json` source. */
1111
@JsonDeserialize(as = SourceJSON.class)
1212
public class SourceJSON implements SourceInput, SourceUpdateInput {
1313

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceUpdateCommercetools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.List;
1010
import java.util.Objects;
1111

12-
/** SourceUpdateCommercetools */
12+
/** Specific configuration attributes of a `commercetools` source. */
1313
@JsonDeserialize(as = SourceUpdateCommercetools.class)
1414
public class SourceUpdateCommercetools implements SourceUpdateInput {
1515

algoliasearch/src/main/java/com/algolia/model/ingestion/SourceUpdateDocker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import com.fasterxml.jackson.databind.annotation.*;
88
import java.util.Objects;
99

10-
/** SourceUpdateDocker */
10+
/** Specific configuration attributes of a `docker` source. */
1111
@JsonDeserialize(as = SourceUpdateDocker.class)
1212
public class SourceUpdateDocker implements SourceUpdateInput {
1313

0 commit comments

Comments
 (0)