You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: modules/examples/src/main/java/com/ibm/cloud/platform_services/iam_access_groups/v2/IamAccessGroupsExamples.java
+32-2
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@
63
63
// IAM_ACCESS_GROUPS_APIKEY=<your iam apikey>
64
64
// IAM_ACCESS_GROUPS_AUTH_URL=<IAM token service URL - omit this if using the production environment>
65
65
// IAM_ACCESS_GROUPS_TEST_ACCOUNT_ID=<id of an account used for testing>
66
+
// IAM_ACCESS_GROUPS_TEST_PROFILE_ID=<id of an profile used for testing>
66
67
//
67
68
// These configuration properties can be exported as environment variables, or stored
68
69
// in a configuration file and then:
@@ -73,13 +74,14 @@ public class IamAccessGroupsExamples {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/main/java/com/ibm/cloud/platform_services/iam_access_groups/v2/IamAccessGroups.java
+14-6
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
*/
13
13
14
14
/*
15
-
* IBM OpenAPI SDK Code Generator Version: 3.43.4-432d779b-20220119-173927
15
+
* IBM OpenAPI SDK Code Generator Version: 3.46.1-a5569134-20220316-164819
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/main/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/AddGroupMembersRequestMembersItem.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,7 @@ public Builder newBuilder() {
106
106
/**
107
107
* Gets the iamId.
108
108
*
109
-
* The IBMid, Service Id or Profile Id of the member.
109
+
* The IBMid, service ID or trusted profile ID of the member.
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/main/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/Group.java
+13
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,8 @@ public class Group extends GenericModel {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/main/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/ListAccessGroupMembersOptions.java
+29-1
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ public class ListAccessGroupMembersOptions extends GenericModel {
21
21
22
22
protectedStringaccessGroupId;
23
23
protectedStringtransactionId;
24
+
protectedStringmembershipType;
24
25
protectedLonglimit;
25
26
protectedLongoffset;
26
27
protectedStringtype;
@@ -33,6 +34,7 @@ public class ListAccessGroupMembersOptions extends GenericModel {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/main/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/ListAccessGroupsOptions.java
+30-1
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ public class ListAccessGroupsOptions extends GenericModel {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/main/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/ListGroupMembersResponseMember.java
+14-1
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,8 @@ public class ListGroupMembersResponseMember extends GenericModel {
25
25
@SerializedName("iam_id")
26
26
protectedStringiamId;
27
27
protectedStringtype;
28
+
@SerializedName("membership_type")
29
+
protectedStringmembershipType;
28
30
protectedStringname;
29
31
protectedStringemail;
30
32
protectedStringdescription;
@@ -48,14 +50,25 @@ public String getIamId() {
48
50
/**
49
51
* Gets the type.
50
52
*
51
-
* The member type - either `user`or `service`.
53
+
* The member type - either `user`, `service` or `profile`.
52
54
*
53
55
* @return the type
54
56
*/
55
57
publicStringgetType() {
56
58
returntype;
57
59
}
58
60
61
+
/**
62
+
* Gets the membershipType.
63
+
*
64
+
* The membership type - either `static` or `dynamic`.
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/test/java/com/ibm/cloud/platform_services/iam_access_groups/v2/IamAccessGroupsIT.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ public class IamAccessGroupsIT extends SdkIntegrationTestBase {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/test/java/com/ibm/cloud/platform_services/iam_access_groups/v2/IamAccessGroupsTest.java
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/test/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/GroupTest.java
+1
Original file line number
Diff line number
Diff line change
@@ -38,5 +38,6 @@ public void testGroup() throws Throwable {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/test/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/ListAccessGroupMembersOptionsTest.java
+2
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ public void testListAccessGroupMembersOptions() throws Throwable {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/test/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/ListAccessGroupsOptionsTest.java
+2
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@ public void testListAccessGroupsOptions() throws Throwable {
35
35
.accountId("testString")
36
36
.transactionId("testString")
37
37
.iamId("testString")
38
+
.membershipType("static")
38
39
.limit(Long.valueOf("26"))
39
40
.offset(Long.valueOf("26"))
40
41
.sort("name")
@@ -44,6 +45,7 @@ public void testListAccessGroupsOptions() throws Throwable {
Copy file name to clipboardexpand all lines: modules/iam-access-groups/src/test/java/com/ibm/cloud/platform_services/iam_access_groups/v2/model/ListGroupMembersResponseMemberTest.java
+1
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ public void testListGroupMembersResponseMember() throws Throwable {
0 commit comments