Class: Google::Apis::CloudidentityV1beta1::ListInboundSsoAssignmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::ListInboundSsoAssignmentsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudidentity_v1beta1/classes.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb,
lib/google/apis/cloudidentity_v1beta1/representations.rb
Overview
Response of the InboundSsoAssignmentsService.ListInboundSsoAssignments method.
Instance Attribute Summary collapse
-
#inbound_sso_assignments ⇒ Array<Google::Apis::CloudidentityV1beta1::InboundSsoAssignment>
The assignments.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInboundSsoAssignmentsResponse
constructor
A new instance of ListInboundSsoAssignmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInboundSsoAssignmentsResponse
Returns a new instance of ListInboundSsoAssignmentsResponse.
2942 2943 2944 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2942 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inbound_sso_assignments ⇒ Array<Google::Apis::CloudidentityV1beta1::InboundSsoAssignment>
The assignments.
Corresponds to the JSON property inboundSsoAssignments
2934 2935 2936 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2934 def inbound_sso_assignments @inbound_sso_assignments end |
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
2940 2941 2942 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2940 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2947 2948 2949 2950 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2947 def update!(**args) @inbound_sso_assignments = args[:inbound_sso_assignments] if args.key?(:inbound_sso_assignments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |