-
Notifications
You must be signed in to change notification settings - Fork 61
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
feat(IAM Identity): adding userExpm list and token lifetime #221
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes look good, except for my comment re: the account_id -> account-id change. I didn't notice that when I reviewed the java PR :)
iamidentityv1/iam_identity_v1.go
Outdated
} | ||
|
||
builder := core.NewRequestBuilder(core.POST) | ||
builder = builder.WithContext(ctx) | ||
builder.EnableGzipCompression = iamIdentity.GetEnableGzipCompression() | ||
_, err = builder.ResolveRequestURL(iamIdentity.Service.Options.URL, `/v1/activity/accounts/{account_id}/report`, pathParamsMap) | ||
_, err = builder.ResolveRequestURL(iamIdentity.Service.Options.URL, `/v1/activity/accounts/{account-id}/report`, pathParamsMap) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like this path param was changed from using snake-case (which is correct) to using kebab case (which is incorrect). Why the change? Did you run the openapi-validator on the updated API definition???
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh yes, I did generate using the latest API definition, was wondering which could be correct. I will change it back to snake_case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@padamstx updated :)
Signed-off-by: poorani <poorani.senthilkumar.sankari@ibm.com>
a72dea0
to
90f4b8d
Compare
# [0.31.0](v0.30.0...v0.31.0) (2022-11-23) ### Features * **IAM Identity:** adding userExpm list and token lifetime ([#221](#221)) ([c9d55a8](c9d55a8))
🎉 This PR is included in version 0.31.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Signed-off-by: poorani <poorani.senthilkumar.sankari@ibm.com> Signed-off-by: ADYA NAND JHA <ADYA.NAND.Jha1@ibm.com>
# [0.31.0](v0.30.0...v0.31.0) (2022-11-23) ### Features * **IAM Identity:** adding userExpm list and token lifetime ([#221](#221)) ([c9d55a8](c9d55a8)) Signed-off-by: ADYA NAND JHA <ADYA.NAND.Jha1@ibm.com>
Signed-off-by: poorani poorani.senthilkumar.sankari@ibm.com
PR summary
Adding user exception list and token lifetime to IAM account settings
PR Checklist
Please make sure that your PR fulfills the following requirements:
Current vs new behavior
Adding user exception list and token lifetime to IAM account settings
Does this PR introduce a breaking change?