Skip to content

feat(spec): updated the sdk as per the api spec released on 2024-11-13 #59

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

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  

Large diffs are not rendered by default.

987 changes: 983 additions & 4 deletions modules/vpc/src/main/java/com/ibm/cloud/is/vpc/v1/Vpc.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public class AddressPrefixCollection extends GenericModel {

@SerializedName("address_prefixes")
protected List<AddressPrefix> addressPrefixes;
protected AddressPrefixCollectionFirst first;
protected PageLink first;
protected Long limit;
protected AddressPrefixCollectionNext next;
protected PageLink next;
@SerializedName("total_count")
protected Long totalCount;

Expand All @@ -51,7 +51,7 @@ public List<AddressPrefix> getAddressPrefixes() {
*
* @return the first
*/
public AddressPrefixCollectionFirst getFirst() {
public PageLink getFirst() {
return first;
}

Expand All @@ -74,7 +74,7 @@ public Long getLimit() {
*
* @return the next
*/
public AddressPrefixCollectionNext getNext() {
public PageLink getNext() {
return next;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public class BackupPolicyCollection extends GenericModel {

@SerializedName("backup_policies")
protected List<BackupPolicy> backupPolicies;
protected BackupPolicyCollectionFirst first;
protected PageLink first;
protected Long limit;
protected BackupPolicyCollectionNext next;
protected PageLink next;
@SerializedName("total_count")
protected Long totalCount;

Expand All @@ -51,7 +51,7 @@ public List<BackupPolicy> getBackupPolicies() {
*
* @return the first
*/
public BackupPolicyCollectionFirst getFirst() {
public PageLink getFirst() {
return first;
}

Expand All @@ -74,7 +74,7 @@ public Long getLimit() {
*
* @return the next
*/
public BackupPolicyCollectionNext getNext() {
public PageLink getNext() {
return next;
}

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
*/
public class BackupPolicyJobCollection extends GenericModel {

protected BackupPolicyJobCollectionFirst first;
protected PageLink first;
protected List<BackupPolicyJob> jobs;
protected Long limit;
protected BackupPolicyJobCollectionNext next;
protected PageLink next;
@SerializedName("total_count")
protected Long totalCount;

Expand All @@ -39,7 +39,7 @@ protected BackupPolicyJobCollection() { }
*
* @return the first
*/
public BackupPolicyJobCollectionFirst getFirst() {
public PageLink getFirst() {
return first;
}

Expand Down Expand Up @@ -73,7 +73,7 @@ public Long getLimit() {
*
* @return the next
*/
public BackupPolicyJobCollectionNext getNext() {
public PageLink getNext() {
return next;
}

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
*/
public class BackupPolicyPlanCollection extends GenericModel {

protected BackupPolicyPlanCollectionFirst first;
protected PageLink first;
protected Long limit;
protected BackupPolicyPlanCollectionNext next;
protected PageLink next;
protected List<BackupPolicyPlan> plans;
@SerializedName("total_count")
protected Long totalCount;
Expand All @@ -39,7 +39,7 @@ protected BackupPolicyPlanCollection() { }
*
* @return the first
*/
public BackupPolicyPlanCollectionFirst getFirst() {
public PageLink getFirst() {
return first;
}

Expand All @@ -62,7 +62,7 @@ public Long getLimit() {
*
* @return the next
*/
public BackupPolicyPlanCollectionNext getNext() {
public PageLink getNext() {
return next;
}

Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public class BareMetalServerCollection extends GenericModel {

@SerializedName("bare_metal_servers")
protected List<BareMetalServer> bareMetalServers;
protected BareMetalServerCollectionFirst first;
protected PageLink first;
protected Long limit;
protected BareMetalServerCollectionNext next;
protected PageLink next;
@SerializedName("total_count")
protected Long totalCount;

Expand All @@ -51,7 +51,7 @@ public List<BareMetalServer> getBareMetalServers() {
*
* @return the first
*/
public BareMetalServerCollectionFirst getFirst() {
public PageLink getFirst() {
return first;
}

Expand All @@ -74,7 +74,7 @@ public Long getLimit() {
*
* @return the next
*/
public BareMetalServerCollectionNext getNext() {
public PageLink getNext() {
return next;
}

Expand Down

This file was deleted.

Loading