class Azure::ServiceFabric::V6_4_0_36::Models::PagedSecretValueResourceDescriptionList
The list of values of a secret resource, paged if the number of results exceeds the limits of a single message. The next set of results can be obtained by executing the same query with the continuation token provided in the previous page.
Attributes
@return [String] The continuation token parameter is used to obtain next set of results. The continuation token is included in the response of the API when the results from the system do not fit in a single response. When this value is passed to the next API call, the API returns next set of results. If there are no further results, then the continuation token is not included in the response.
@return [Array<SecretValueResourceDescription>] One page of the list.
Public Class Methods
Mapper for PagedSecretValueResourceDescriptionList
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.4.0.36/generated/azure_service_fabric/models/paged_secret_value_resource_description_list.rb, line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PagedSecretValueResourceDescriptionList', type: { name: 'Composite', class_name: 'PagedSecretValueResourceDescriptionList', model_properties: { continuation_token: { client_side_validation: true, required: false, serialized_name: 'ContinuationToken', type: { name: 'String' } }, items: { client_side_validation: true, required: false, serialized_name: 'Items', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SecretValueResourceDescriptionElementType', type: { name: 'Composite', class_name: 'SecretValueResourceDescription' } } } } } } } end