Skip to content

Commit f7f5c21

Browse files
committed
Support name field in IdentityProviderGroupSummary response
1 parent fcc0465 commit f7f5c21

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
## 3.84.0 (Unreleased)
2+
3+
### Added
4+
- Support `name` field to Identity Provider Group Summary response
5+
26
## 3.83.0 (July 01, 2020)
37

48
### Added

oci/identity_identity_provider_groups_data_source.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ func IdentityIdentityProviderGroupsDataSource() *schema.Resource {
4949
Type: schema.TypeString,
5050
Computed: true,
5151
},
52+
"name": {
53+
Type: schema.TypeString,
54+
Computed: true,
55+
},
5256
"time_created": {
5357
Type: schema.TypeString,
5458
Computed: true,
@@ -138,6 +142,10 @@ func (s *IdentityIdentityProviderGroupsDataSourceCrud) SetData() error {
138142
identityProviderGroup["id"] = *r.Id
139143
}
140144

145+
if r.Name != nil {
146+
identityProviderGroup["name"] = *r.Name
147+
}
148+
141149
if r.TimeCreated != nil {
142150
identityProviderGroup["time_created"] = r.TimeCreated.String()
143151
}

website/docs/d/identity_identity_provider_groups.html.markdown

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ The following attributes are exported:
4242
* `external_identifier` - Identifier of the group in the identity provider
4343
* `id` - The OCID of the `IdentityProviderGroup`.
4444
* `identity_provider_id` - The OCID of the `IdentityProvider` this group belongs to.
45+
* `name` - Display name of the group
4546
* `time_created` - Date and time the `IdentityProviderGroup` was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
4647
* `time_modified` - Date and time the `IdentityProviderGroup` was last modified, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
4748

0 commit comments

Comments
 (0)