PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::ServiceDiscovery::DiscoverInstances; use Moose; has HealthStatus => (is => 'ro', isa => 'Str'); has MaxResults => (is => 'ro', isa => 'Int'); has NamespaceName => (is => 'ro', isa => 'Str', required => 1); has OptionalParameters => (is => 'ro', isa => 'Paws::ServiceDiscovery::Attributes'); has QueryParameters => (is => 'ro', isa => 'Paws::ServiceDiscovery::Attributes'); has ServiceName => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'DiscoverInstances'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ServiceDiscovery::DiscoverInstancesResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::ServiceDiscovery::DiscoverInstances - Arguments for method DiscoverInstances on L =head1 DESCRIPTION This class represents the parameters used for calling the method DiscoverInstances on the L service. Use the attributes of this class as arguments to method DiscoverInstances. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DiscoverInstances. =head1 SYNOPSIS my $servicediscovery = Paws->service('ServiceDiscovery'); my $DiscoverInstancesResponse = $servicediscovery->DiscoverInstances( NamespaceName => 'MyNamespaceName', ServiceName => 'MyServiceName', HealthStatus => 'HEALTHY', # OPTIONAL MaxResults => 1, # OPTIONAL OptionalParameters => { 'MyAttrKey' => 'MyAttrValue', # key: max: 255, value: max: 1024 }, # OPTIONAL QueryParameters => { 'MyAttrKey' => 'MyAttrValue', # key: max: 255, value: max: 1024 }, # OPTIONAL ); # Results: my $Instances = $DiscoverInstancesResponse->Instances; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 HealthStatus => Str The health status of the instances that you want to discover. This parameter is ignored for services that don't have a health check configured, and all instances are returned. =over =item HEALTHY Returns healthy instances. =item UNHEALTHY Returns unhealthy instances. =item ALL Returns all instances. =item HEALTHY_OR_ELSE_ALL Returns healthy instances, unless none are reporting a healthy state. In that case, return all instances. This is also called failing open. =back Valid values are: C<"HEALTHY">, C<"UNHEALTHY">, C<"ALL">, C<"HEALTHY_OR_ELSE_ALL"> =head2 MaxResults => Int The maximum number of instances that you want Cloud Map to return in the response to a C request. If you don't specify a value for C, Cloud Map returns up to 100 instances. =head2 B NamespaceName => Str The C name of the namespace. It's found in the C member of the C member of the namespace. =head2 OptionalParameters => L Opportunistic filters to scope the results based on custom attributes. If there are instances that match both the filters specified in both the C parameter and this parameter, all of these instances are returned. Otherwise, the filters are ignored, and only instances that match the filters that are specified in the C parameter are returned. =head2 QueryParameters => L Filters to scope the results based on custom attributes for the instance (for example, C<{version=v1, az=1a}>). Only instances that match all the specified key-value pairs are returned. =head2 B ServiceName => Str The name of the service that you specified when you registered the instance. =head1 SEE ALSO This class forms part of L, documenting arguments for method DiscoverInstances in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut