Skip to content

Commit 06b0048

Browse files
Daniel-Byrnepyrooka
authored andcommitted
fix(IAM Identity): fix incorrect mapping of policy references in IAM Identity templates (#280)
Signed-off-by: Daniel Byrne <[email protected]>
1 parent fcea7b8 commit 06b0048

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

modules/iam-identity/src/main/java/com/ibm/cloud/platform_services/iam_identity/v1/IamIdentity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
/*
15-
* IBM OpenAPI SDK Code Generator Version: 3.105.1-067d600b-20250616-154447
15+
* IBM OpenAPI SDK Code Generator Version: 3.106.0-09823488-20250707-071701
1616
*/
1717

1818
package com.ibm.cloud.platform_services.iam_identity.v1;

modules/iam-identity/src/main/java/com/ibm/cloud/platform_services/iam_identity/v1/model/TemplateAssignmentResponseResource.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ public class TemplateAssignmentResponseResource extends GenericModel {
2727
protected TemplateAssignmentResponseResourceDetail profile;
2828
@SerializedName("account_settings")
2929
protected TemplateAssignmentResponseResourceDetail accountSettings;
30-
@SerializedName("policy_template_refs")
31-
protected List<TemplateAssignmentResponseResourceDetail> policyTemplateRefs;
30+
@SerializedName("policy_template_references")
31+
protected List<TemplateAssignmentResponseResourceDetail> policyTemplateReferences;
3232

3333
protected TemplateAssignmentResponseResource() { }
3434

@@ -62,14 +62,14 @@ public TemplateAssignmentResponseResourceDetail getAccountSettings() {
6262
}
6363

6464
/**
65-
* Gets the policyTemplateRefs.
65+
* Gets the policyTemplateReferences.
6666
*
6767
* Policy resource(s) included only for trusted profile assignments with policy references.
6868
*
69-
* @return the policyTemplateRefs
69+
* @return the policyTemplateReferences
7070
*/
71-
public List<TemplateAssignmentResponseResourceDetail> getPolicyTemplateRefs() {
72-
return policyTemplateRefs;
71+
public List<TemplateAssignmentResponseResourceDetail> getPolicyTemplateReferences() {
72+
return policyTemplateReferences;
7373
}
7474
}
7575

0 commit comments

Comments
 (0)