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` # Generated by default/object.tt package Paws::ApiGateway::PatchOperation; use Moose; has From => (is => 'ro', isa => 'Str', request_name => 'from', traits => ['NameInRequest']); has Op => (is => 'ro', isa => 'Str', request_name => 'op', traits => ['NameInRequest']); has Path => (is => 'ro', isa => 'Str', request_name => 'path', traits => ['NameInRequest']); has Value => (is => 'ro', isa => 'Str', request_name => 'value', traits => ['NameInRequest']); 1; ### main pod documentation begin ### =head1 NAME Paws::ApiGateway::PatchOperation =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::ApiGateway::PatchOperation object: $service_obj->Method(Att1 => { From => $value, ..., Value => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::ApiGateway::PatchOperation object: $result = $service_obj->Method(...); $result->Att1->From =head1 DESCRIPTION A single patch operation to apply to the specified resource. Please refer to http://tools.ietf.org/html/rfc6902#section-4 for an explanation of how each operation is used. =head1 ATTRIBUTES =head2 From => Str The C update operation's source as identified by a C value referencing the location within the targeted resource to copy the value from. For example, to promote a canary deployment, you copy the canary deployment ID to the affiliated deployment ID by calling a PATCH request on a Stage resource with C<"op":"copy">, C<"from":"/canarySettings/deploymentId"> and C<"path":"/deploymentId">. =head2 Op => Str An update operation to be performed with this PATCH request. The valid value can be C, C, C or C. Not all valid operations are supported for a given resource. Support of the operations depends on specific operational contexts. Attempts to apply an unsupported operation on a resource will return an error message. =head2 Path => Str The C operation's target, as identified by a JSON Pointer (https://tools.ietf.org/html/draft-ietf-appsawg-json-pointer-08) value that references a location within the targeted resource. For example, if the target resource has an updateable property of C<{"name":"value"}>, the path for this property is C. If the C property value is a JSON object (e.g., C<{"name": {"child/name": "child-value"}}>), the path for the C property will be C. Any slash ("/") character appearing in path names must be escaped with "~1", as shown in the example above. Each C operation can have only one C associated with it. =head2 Value => Str The new target value of the update operation. It is applicable for the C or C operation. When using AWS CLI to update a property of a JSON value, enclose the JSON object with a pair of single quotes in a Linux shell, e.g., '{"a": ...}'. In a Windows shell, see Using JSON for Parameters (https://docs.aws.amazon.com/cli/latest/userguide/cli-using-param.html#cli-using-param-json). =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut