Skip to content

Commit 6538abf

Browse files
Open-Source-Botoutscale-mgo
authored andcommitted
osc-sdk-java v0.4.0
Signed-off-by: Outscale Bot <opensource+bot@outscale.com>
1 parent 56bd492 commit 6538abf

File tree

1,195 files changed

+4590
-1198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,195 files changed

+4590
-1198
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# osc-sdk-java
44

55
3DS OUTSCALE API
6-
- API version: 1.26.0
6+
- API version: 1.27.0
77

88
Welcome to the OUTSCALE API documentation.<br />
99
The OUTSCALE API enables you to manage your resources in the OUTSCALE Cloud. This documentation describes the different actions available along with code examples.<br /><br />
@@ -46,7 +46,7 @@ Add this dependency to your project's POM:
4646
<dependency>
4747
<groupId>io.github.outscale</groupId>
4848
<artifactId>osc-sdk-java</artifactId>
49-
<version>0.3.0</version>
49+
<version>0.4.0</version>
5050
<scope>compile</scope>
5151
</dependency>
5252
```
@@ -62,7 +62,7 @@ Add this dependency to your project's build file:
6262
}
6363
6464
dependencies {
65-
implementation "io.github.outscale:osc-sdk-java:0.3.0"
65+
implementation "io.github.outscale:osc-sdk-java:0.4.0"
6666
}
6767
```
6868

@@ -76,7 +76,7 @@ mvn clean package
7676

7777
Then manually install the following JARs:
7878

79-
* `target/osc-sdk-java-0.3.0.jar`
79+
* `target/osc-sdk-java-0.4.0.jar`
8080
* `target/lib/*.jar`
8181

8282
## Getting Started

api_version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.26.0
1+
1.27.0

docs/CreateAccessKeyRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
|------------ | ------------- | ------------- | -------------|
1010
|**dryRun** | **Boolean** | If true, checks whether you have the required permissions to perform the action. | [optional] |
1111
|**expirationDate** | **OffsetDateTime** | The date and time, or the date, at which you want the access key to expire, in ISO 8601 format (for example, &#x60;2020-06-14T00:00:00.000Z&#x60;, or &#x60;2020-06-14&#x60;). To remove an existing expiration date, use the method without specifying this parameter. | [optional] |
12+
|**userName** | **String** | The name of the EIM user that owns the key to be created. If you do not specify a user name, this action creates an access key for the user who sends the request (which can be the root account). | [optional] |
1213

1314

1415

docs/DeleteAccessKeyRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
|------------ | ------------- | ------------- | -------------|
1010
|**accessKeyId** | **String** | The ID of the access key you want to delete. | |
1111
|**dryRun** | **Boolean** | If true, checks whether you have the required permissions to perform the action. | [optional] |
12+
|**userName** | **String** | The name of the EIM user the access key you want to delete is associated with. By default, the user who sends the request (which can be the root account). | [optional] |
1213

1314

1415

docs/Image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Information about the OMI.
1212
|**accountId** | **String** | The account ID of the owner of the OMI. | [optional] |
1313
|**architecture** | **String** | The architecture of the OMI (by default, &#x60;i386&#x60;). | [optional] |
1414
|**blockDeviceMappings** | [**List&lt;BlockDeviceMappingImage&gt;**](BlockDeviceMappingImage.md) | One or more block device mappings. | [optional] |
15-
|**creationDate** | **LocalDate** | The date and time of creation of the OMI, in ISO 8601 date-time format. | [optional] |
15+
|**creationDate** | **OffsetDateTime** | The date and time of creation of the OMI, in ISO 8601 date-time format. | [optional] |
1616
|**description** | **String** | The description of the OMI. | [optional] |
1717
|**fileLocation** | **String** | The location of the bucket where the OMI files are stored. | [optional] |
1818
|**imageId** | **String** | The ID of the OMI. | [optional] |

docs/ReadAccessKeysRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
|------------ | ------------- | ------------- | -------------|
1010
|**dryRun** | **Boolean** | If true, checks whether you have the required permissions to perform the action. | [optional] |
1111
|**filters** | [**FiltersAccessKeys**](FiltersAccessKeys.md) | | [optional] |
12+
|**userName** | **String** | The name of the EIM user. By default, the user who sends the request (which can be the root account). | [optional] |
1213

1314

1415

docs/ReadConsumptionAccountRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
1010
|**dryRun** | **Boolean** | If true, checks whether you have the required permissions to perform the action. | [optional] |
11-
|**fromDate** | **OffsetDateTime** | The beginning of the time period, in ISO 8601 date format (for example, &#x60;2020-06-14&#x60;). The date-time format is also accepted, but only with a time set to midnight (for example, &#x60;2020-06-14T00:00:00.000Z&#x60;). | |
11+
|**fromDate** | **LocalDate** | The beginning of the time period, in ISO 8601 date format (for example, &#x60;2020-06-14&#x60;). The date-time format is also accepted, but only with a time set to midnight (for example, &#x60;2020-06-14T00:00:00.000Z&#x60;). | |
1212
|**overall** | **Boolean** | By default or if false, returns only the consumption of the specific account that sends this request. If true, returns either the overall consumption of your paying account and all linked accounts (if the account that sends this request is a paying account) or returns nothing (if the account that sends this request is a linked account). | [optional] |
13-
|**toDate** | **OffsetDateTime** | The end of the time period, in ISO 8601 date format (for example, &#x60;2020-06-30&#x60;). The date-time format is also accepted, but only with a time set to midnight (for example, &#x60;2020-06-30T00:00:00.000Z&#x60;). | |
13+
|**toDate** | **LocalDate** | The end of the time period, in ISO 8601 date format (for example, &#x60;2020-06-30&#x60;). The date-time format is also accepted, but only with a time set to midnight (for example, &#x60;2020-06-30T00:00:00.000Z&#x60;). | |
1414

1515

1616

docs/UpdateAccessKeyRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
|**dryRun** | **Boolean** | If true, checks whether you have the required permissions to perform the action. | [optional] |
1212
|**expirationDate** | **OffsetDateTime** | The date and time, or the date, at which you want the access key to expire, in ISO 8601 format (for example, &#x60;2020-06-14T00:00:00.000Z&#x60; or &#x60;2020-06-14&#x60;). If not specified, the access key is set to not expire. | [optional] |
1313
|**state** | **String** | The new state for the access key (&#x60;ACTIVE&#x60; \\| &#x60;INACTIVE&#x60;). When set to &#x60;ACTIVE&#x60;, the access key is enabled and can be used to send requests. When set to &#x60;INACTIVE&#x60;, the access key is disabled. | |
14+
|**userName** | **String** | The name of the EIM the access key you want to modify is associated with. If you do not specify a user name, this action modifies the access key of the user who sends the request (which can be the root account). | [optional] |
1415

1516

1617

examples/config_env/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>io.github.outscale</groupId>
3030
<artifactId>osc-sdk-java</artifactId>
31-
<version>0.3.0</version>
31+
<version>0.4.0</version>
3232
</dependency>
3333
</dependencies>
3434

examples/config_file/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>io.github.outscale</groupId>
3030
<artifactId>osc-sdk-java</artifactId>
31-
<version>0.3.0</version>
31+
<version>0.4.0</version>
3232
</dependency>
3333
</dependencies>
3434

0 commit comments

Comments
 (0)