Skip to content

Commit d3f826f

Browse files
chore(release): 3.1.1 [skip ci]
## [3.1.1](3.1.0...3.1.1) (2025-04-17) ### Bug Fixes * **pipeline:** add incomplete as a finished state for pipeline steps. Fixes [#384](#384) ([df80ba0](df80ba0))
1 parent 54bff9f commit d3f826f

File tree

5 files changed

+27
-20
lines changed

5 files changed

+27
-20
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [3.1.1](https://github.com/adobe/aio-lib-cloudmanager/compare/3.1.0...3.1.1) (2025-04-17)
4+
5+
6+
### Bug Fixes
7+
8+
* **pipeline:** add incomplete as a finished state for pipeline steps. Fixes [#384](https://github.com/adobe/aio-lib-cloudmanager/issues/384) ([df80ba0](https://github.com/adobe/aio-lib-cloudmanager/commit/df80ba0f0bd9ffabe8d7b68ee239ebd102ea3538))
9+
310
# [3.1.0](https://github.com/adobe/aio-lib-cloudmanager/compare/3.0.0...3.1.0) (2023-04-26)
411

512

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1040,12 +1040,12 @@ Describes an __IP Allowed List Binding__
10401040

10411041
| Name | Type | Description |
10421042
| --- | --- | --- |
1043-
| id | <code>string</code> | Identifier of the IP Allowed List Binding to an Environment |
1043+
| id | <code>integer</code> | Identifier of the IP Allowed List Binding to an Environment |
10441044
| tier | <code>string</code> | Tier of the environment. |
10451045
| status | <code>string</code> | Status of the binding. |
1046-
| programId | <code>string</code> | Identifier of the program. |
1047-
| ipAllowListId | <code>string</code> | Identifier of the IP allow list. |
1048-
| environmentId | <code>string</code> | Identifier of the environment. |
1046+
| programId | <code>integer</code> | Identifier of the program. |
1047+
| ipAllowListId | <code>integer</code> | Identifier of the IP allow list. |
1048+
| environmentId | <code>integer</code> | Identifier of the environment. |
10491049

10501050
<a name="IPAllowedList"></a>
10511051

@@ -1057,10 +1057,10 @@ Describes an __IP Allowed List__
10571057

10581058
| Name | Type | Description |
10591059
| --- | --- | --- |
1060-
| id | <code>string</code> | Identifier of the IP Allowed List |
1060+
| id | <code>integer</code> | Identifier of the IP Allowed List |
10611061
| name | <code>string</code> | Name of the IP Allowed List |
1062+
| programId | <code>integer</code> | Identifier of the program. |
10621063
| ipCidrSet | <code>Array.&lt;string&gt;</code> | IP CIDR Set |
1063-
| programId | <code>string</code> | Identifier of the program. |
10641064
| bindings | [<code>Array.&lt;IPAllowedListBinding&gt;</code>](#IPAllowedListBinding) | IP Allowlist bindings |
10651065

10661066
<a name="ListPipelineOptions"></a>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/aio-lib-cloudmanager",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"description": "Adobe I/O Cloud Manager Library",
55
"repository": {
66
"type": "git",

src/sdktypes.jsdoc.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -194,23 +194,23 @@ Mandatory if type=BUILD
194194
* Describes an __IP Allowed List Binding__
195195
*
196196
* @typedef {object} IPAllowedListBinding
197-
* @property {string} id - Identifier of the IP Allowed List Binding to an Environment
197+
* @property {integer} id - Identifier of the IP Allowed List Binding to an Environment
198198
* @property {string} tier - Tier of the environment.
199199
* @property {string} status - Status of the binding.
200-
* @property {string} programId - Identifier of the program.
201-
* @property {string} ipAllowListId - Identifier of the IP allow list.
202-
* @property {string} environmentId - Identifier of the environment.
200+
* @property {integer} programId - Identifier of the program.
201+
* @property {integer} ipAllowListId - Identifier of the IP allow list.
202+
* @property {integer} environmentId - Identifier of the environment.
203203
*/
204204

205205

206206
/**
207207
* Describes an __IP Allowed List__
208208
*
209209
* @typedef {object} IPAllowedList
210-
* @property {string} id - Identifier of the IP Allowed List
210+
* @property {integer} id - Identifier of the IP Allowed List
211211
* @property {string} name - Name of the IP Allowed List
212+
* @property {integer} programId - Identifier of the program.
212213
* @property {string[]} ipCidrSet - IP CIDR Set
213-
* @property {string} programId - Identifier of the program.
214214
* @property {IPAllowedListBinding[]} bindings - IP Allowlist bindings
215215
*/
216216

types.d.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -620,27 +620,27 @@ declare type LogOptionRepresentation = {
620620
* @property environmentId - Identifier of the environment.
621621
*/
622622
declare type IPAllowedListBinding = {
623-
id: string;
623+
id: integer;
624624
tier: string;
625625
status: string;
626-
programId: string;
627-
ipAllowListId: string;
628-
environmentId: string;
626+
programId: integer;
627+
ipAllowListId: integer;
628+
environmentId: integer;
629629
};
630630

631631
/**
632632
* Describes an __IP Allowed List__
633633
* @property id - Identifier of the IP Allowed List
634634
* @property name - Name of the IP Allowed List
635-
* @property ipCidrSet - IP CIDR Set
636635
* @property programId - Identifier of the program.
636+
* @property ipCidrSet - IP CIDR Set
637637
* @property bindings - IP Allowlist bindings
638638
*/
639639
declare type IPAllowedList = {
640-
id: string;
640+
id: integer;
641641
name: string;
642+
programId: integer;
642643
ipCidrSet: string[];
643-
programId: string;
644644
bindings: IPAllowedListBinding[];
645645
};
646646

0 commit comments

Comments
 (0)