Skip to content

fix(IAM Identity): fix incorrect mapping of policy references in IAM Identity templates #280

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 2 commits into from
Jul 21, 2025
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/

/*
* IBM OpenAPI SDK Code Generator Version: 3.105.1-067d600b-20250616-154447
* IBM OpenAPI SDK Code Generator Version: 3.106.0-09823488-20250707-071701
*/

package com.ibm.cloud.platform_services.iam_identity.v1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public class TemplateAssignmentResponseResource extends GenericModel {
protected TemplateAssignmentResponseResourceDetail profile;
@SerializedName("account_settings")
protected TemplateAssignmentResponseResourceDetail accountSettings;
@SerializedName("policy_template_refs")
protected List<TemplateAssignmentResponseResourceDetail> policyTemplateRefs;
@SerializedName("policy_template_references")
protected List<TemplateAssignmentResponseResourceDetail> policyTemplateReferences;

protected TemplateAssignmentResponseResource() { }

Expand Down Expand Up @@ -62,14 +62,14 @@ public TemplateAssignmentResponseResourceDetail getAccountSettings() {
}

/**
* Gets the policyTemplateRefs.
* Gets the policyTemplateReferences.
*
* Policy resource(s) included only for trusted profile assignments with policy references.
*
* @return the policyTemplateRefs
* @return the policyTemplateReferences
*/
public List<TemplateAssignmentResponseResourceDetail> getPolicyTemplateRefs() {
return policyTemplateRefs;
public List<TemplateAssignmentResponseResourceDetail> getPolicyTemplateReferences() {
return policyTemplateReferences;
}
}

Loading