forked from oracle/oci-dotnet-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ListIdentityProviderGroupsResponse.cs
43 lines (34 loc) · 1.71 KB
/
ListIdentityProviderGroupsResponse.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
*/
// NOTE: Code generated by OracleSDKGenerator.
// DO NOT EDIT this file manually.
using System.Runtime.Serialization;
using Oci.IdentityService.Models;
namespace Oci.IdentityService.Responses
{
public class ListIdentityProviderGroupsResponse : Oci.Common.IOciResponse
{
/// <value>
/// Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
/// particular request, please provide the request ID.
///
/// </value>
[Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
/// <value>
/// For pagination of a list of items. When paging through a list, if this header appears in the response,
/// then a partial list might have been returned. Include this value as the `page` parameter for the
/// subsequent GET request to get the next batch of items.
///
/// </value>
[Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Header, "opc-next-page")]
public string OpcNextPage { get; set; }
/// <value>
/// A list of IdentityProviderGroupSummary instances.
/// </value>
[Oci.Common.Http.HttpConverter(Oci.Common.Http.TargetEnum.Body)]
public System.Collections.Generic.List<IdentityProviderGroupSummary> Items { get; set; }
}
}