File tree Expand file tree Collapse file tree
src/main/java/com/openshift/cloud/api/connector/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2074,8 +2074,6 @@ components:
20742074 allOf :
20752075 - $ref : ' #/components/schemas/ConnectorNamespaceRequestMeta'
20762076 description : An evaluation connector namespace create request
2077- required :
2078- - name
20792077 ConnectorNamespaceList :
20802078 allOf :
20812079 - $ref : ' #/components/schemas/List'
@@ -2258,6 +2256,7 @@ components:
22582256 cluster_id :
22592257 type : string
22602258 expiration :
2259+ description : Namespace expiration timestamp in RFC 3339 format
22612260 type : string
22622261 tenant :
22632262 $ref : ' #/components/schemas/ConnectorNamespaceTenant'
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ Name | Type | Description | Notes
1919** resourceVersion** | ** Long** | |
2020** quota** | [ ** ConnectorNamespaceQuota** ] ( ConnectorNamespaceQuota.md ) | | [ optional]
2121** clusterId** | ** String** | |
22- ** expiration** | ** String** | | [ optional]
22+ ** expiration** | ** String** | Namespace expiration timestamp in RFC 3339 format | [ optional]
2323** tenant** | [ ** ConnectorNamespaceTenant** ] ( ConnectorNamespaceTenant.md ) | |
2424** status** | [ ** ConnectorNamespaceStatus** ] ( ConnectorNamespaceStatus.md ) | |
2525
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Name | Type | Description | Notes
99------------ | ------------- | ------------- | -------------
1010** name** | ** String** | |
1111** clusterId** | ** String** | |
12- ** expiration** | ** String** | | [ optional]
12+ ** expiration** | ** String** | Namespace expiration timestamp in RFC 3339 format | [ optional]
1313** tenant** | [ ** ConnectorNamespaceTenant** ] ( ConnectorNamespaceTenant.md ) | |
1414** status** | [ ** ConnectorNamespaceStatus** ] ( ConnectorNamespaceStatus.md ) | |
1515
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ An evaluation connector namespace create request
88
99Name | Type | Description | Notes
1010------------ | ------------- | ------------- | -------------
11- ** name** | ** String** | |
11+ ** name** | ** String** | | [ optional ]
1212** annotations** | [ ** List< ; ConnectorNamespaceRequestMetaAnnotations> ; ** ] ( ConnectorNamespaceRequestMetaAnnotations.md ) | | [ optional]
1313
1414
Original file line number Diff line number Diff line change 137137 <plugin >
138138 <groupId >org.apache.maven.plugins</groupId >
139139 <artifactId >maven-compiler-plugin</artifactId >
140- <version >3.10.1 </version >
140+ <version >3.9.0 </version >
141141 <configuration >
142142 <source >1.8</source >
143143 <target >1.8</target >
146146 <plugin >
147147 <groupId >org.apache.maven.plugins</groupId >
148148 <artifactId >maven-javadoc-plugin</artifactId >
149- <version >3.3.2 </version >
149+ <version >3.3.1 </version >
150150 <configuration >
151151 <doclint >none</doclint >
152152 <source >1.8</source >
175175 <plugin >
176176 <groupId >org.sonatype.plugins</groupId >
177177 <artifactId >nexus-staging-maven-plugin</artifactId >
178- <version >1.6.12 </version >
178+ <version >1.6.8 </version >
179179 <extensions >true</extensions >
180180 <configuration >
181181 <serverId >ossrh</serverId >
263263 <swagger-annotations-version >1.5.22</swagger-annotations-version >
264264 <resteasy-version >5.0.1.Final</resteasy-version >
265265 <jackson-version >2.10.5</jackson-version >
266- <jackson-databind-version >2.13.2.2 </jackson-databind-version >
266+ <jackson-databind-version >2.10.5.1 </jackson-databind-version >
267267 <jackson-databind-nullable-version >0.2.1</jackson-databind-nullable-version >
268268 <javax-annotation-version >1.3.2</javax-annotation-version >
269269 <threetenbp-version >2.9.10</threetenbp-version >
Original file line number Diff line number Diff line change @@ -415,11 +415,11 @@ public ConnectorNamespace expiration(String expiration) {
415415 }
416416
417417 /**
418- * Get expiration
418+ * Namespace expiration timestamp in RFC 3339 format
419419 * @return expiration
420420 **/
421421 @ javax .annotation .Nullable
422- @ ApiModelProperty (value = "" )
422+ @ ApiModelProperty (value = "Namespace expiration timestamp in RFC 3339 format " )
423423 @ JsonProperty (JSON_PROPERTY_EXPIRATION )
424424 @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
425425
Original file line number Diff line number Diff line change @@ -119,11 +119,11 @@ public ConnectorNamespaceAllOf expiration(String expiration) {
119119 }
120120
121121 /**
122- * Get expiration
122+ * Namespace expiration timestamp in RFC 3339 format
123123 * @return expiration
124124 **/
125125 @ javax .annotation .Nullable
126- @ ApiModelProperty (value = "" )
126+ @ ApiModelProperty (value = "Namespace expiration timestamp in RFC 3339 format " )
127127 @ JsonProperty (JSON_PROPERTY_EXPIRATION )
128128 @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
129129
Original file line number Diff line number Diff line change @@ -59,18 +59,18 @@ public ConnectorNamespaceEvalRequest name(String name) {
5959 * Get name
6060 * @return name
6161 **/
62- @ javax .annotation .Nonnull
63- @ ApiModelProperty (required = true , value = "" )
62+ @ javax .annotation .Nullable
63+ @ ApiModelProperty (value = "" )
6464 @ JsonProperty (JSON_PROPERTY_NAME )
65- @ JsonInclude (value = JsonInclude .Include .ALWAYS )
65+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
6666
6767 public String getName () {
6868 return name ;
6969 }
7070
7171
7272 @ JsonProperty (JSON_PROPERTY_NAME )
73- @ JsonInclude (value = JsonInclude .Include .ALWAYS )
73+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
7474 public void setName (String name ) {
7575 this .name = name ;
7676 }
Original file line number Diff line number Diff line change 137137 <plugin >
138138 <groupId >org.apache.maven.plugins</groupId >
139139 <artifactId >maven-compiler-plugin</artifactId >
140- <version >3.10.1 </version >
140+ <version >3.9.0 </version >
141141 <configuration >
142142 <source >1.8</source >
143143 <target >1.8</target >
146146 <plugin >
147147 <groupId >org.apache.maven.plugins</groupId >
148148 <artifactId >maven-javadoc-plugin</artifactId >
149- <version >3.3.2 </version >
149+ <version >3.3.1 </version >
150150 <configuration >
151151 <doclint >none</doclint >
152152 <source >1.8</source >
175175 <plugin >
176176 <groupId >org.sonatype.plugins</groupId >
177177 <artifactId >nexus-staging-maven-plugin</artifactId >
178- <version >1.6.12 </version >
178+ <version >1.6.8 </version >
179179 <extensions >true</extensions >
180180 <configuration >
181181 <serverId >ossrh</serverId >
258258 <swagger-annotations-version >1.5.22</swagger-annotations-version >
259259 <resteasy-version >5.0.1.Final</resteasy-version >
260260 <jackson-version >2.10.5</jackson-version >
261- <jackson-databind-version >2.13.2.2 </jackson-databind-version >
261+ <jackson-databind-version >2.10.5.1 </jackson-databind-version >
262262 <jackson-databind-nullable-version >0.2.1</jackson-databind-nullable-version >
263263 <javax-annotation-version >1.3.2</javax-annotation-version >
264264 <threetenbp-version >2.9.10</threetenbp-version >
Original file line number Diff line number Diff line change 137137 <plugin >
138138 <groupId >org.apache.maven.plugins</groupId >
139139 <artifactId >maven-compiler-plugin</artifactId >
140- <version >3.10.1 </version >
140+ <version >3.9.0 </version >
141141 <configuration >
142142 <source >1.8</source >
143143 <target >1.8</target >
146146 <plugin >
147147 <groupId >org.apache.maven.plugins</groupId >
148148 <artifactId >maven-javadoc-plugin</artifactId >
149- <version >3.3.2 </version >
149+ <version >3.3.1 </version >
150150 <configuration >
151151 <doclint >none</doclint >
152152 <source >1.8</source >
175175 <plugin >
176176 <groupId >org.sonatype.plugins</groupId >
177177 <artifactId >nexus-staging-maven-plugin</artifactId >
178- <version >1.6.12 </version >
178+ <version >1.6.8 </version >
179179 <extensions >true</extensions >
180180 <configuration >
181181 <serverId >ossrh</serverId >
263263 <swagger-annotations-version >1.5.22</swagger-annotations-version >
264264 <resteasy-version >5.0.1.Final</resteasy-version >
265265 <jackson-version >2.10.5</jackson-version >
266- <jackson-databind-version >2.13.2.2 </jackson-databind-version >
266+ <jackson-databind-version >2.10.5.1 </jackson-databind-version >
267267 <jackson-databind-nullable-version >0.2.1</jackson-databind-nullable-version >
268268 <javax-annotation-version >1.3.2</javax-annotation-version >
269269 <threetenbp-version >2.9.10</threetenbp-version >
You can’t perform that action at this time.
0 commit comments