diff --git a/v1.34.1/DOCTUM_VERSION b/v1.34.1/DOCTUM_VERSION new file mode 100644 index 000000000..0413736d6 --- /dev/null +++ b/v1.34.1/DOCTUM_VERSION @@ -0,0 +1 @@ +5.5.4 \ No newline at end of file diff --git a/v1.34.1/Google.html b/v1.34.1/Google.html new file mode 100644 index 000000000..8ae49e92c --- /dev/null +++ b/v1.34.1/Google.html @@ -0,0 +1,99 @@ + + + + + + Google | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + +

Namespaces

+ + + + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore.html b/v1.34.1/Google/ApiCore.html new file mode 100644 index 000000000..2c96b86ef --- /dev/null +++ b/v1.34.1/Google/ApiCore.html @@ -0,0 +1,278 @@ + + + + + + Google\ApiCore | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + +

Namespaces

+ + +

Classes

+
+
+ +

Class containing functions used to build the Agent header.

+
+
+ +
+
+
+ +

Provides basic array helper methods.

+
+
+ +

BidiStream is the response object from a gRPC bidirectional streaming API call.

+
+
+
+ Call
+

Contains information necessary to manage a network request.

+
+
+ +

Common functions used to work with various clients.

+
+
+ +

ClientStream is the response object from a gRPC client streaming API call.

+
+
+ +

The CredentialsWrapper object provides a wrapper around a FetchAuthTokenInterface.

+
+
+ +

A collection of elements retrieved using one or more API calls. The +collection will attempt to retrieve a fixed number of elements, and +will make API calls until that fixed number is reached, or there +are no more elements to retrieve.

+
+
+ +

Container class for Protobuf label constants. See FieldDescriptorProto.Label in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

+
+
+ +

Container class for Protobuf type constants. See FieldDescriptorProto.Type in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

+
+
+ +

Common functions used to work with various clients.

+
+
+ +

Provides helper methods for gRPC support.

+
+
+ +

For connect to emulator.

+
+
+ +

Response object from a long running API method.

+
+
+
+ Page
+

A Page object wraps an API list method response and provides methods +to retrieve additional pages using the page token.

+
+
+ +

Holds the description information used for page streaming.

+
+
+ +

Response object for paged results from a list API method

+
+
+ +

Represents a path template.

+
+
+ +
+
+
+ +

Builds a PSR-7 request from a set of request information.

+
+
+ +

Encapsulates request params header metadata.

+
+
+ +

Provides functionality for loading a resource name template map from a descriptor config, +retrieving a PathTemplate, and parsing values using registered templates.

+
+
+ +

The RetrySettings class is used to configure retrying and timeouts for RPCs.

+
+
+ +

Collection of methods to help with serialization of protobuf objects

+
+
+ +

ServerStream is the response object from a server streaming API call.

+
+
+
+ ServiceAddressTrait deprecated
+

Provides helper methods for service address handling.

+
+
+ +

Provides a light wrapper around often used URI related functions.

+
+
+ +
+
+
+ +
+
+
+

Interfaces

+ + +

Exceptions

+
+
+ +

Represents an exception thrown during an RPC.

+
+
+ +

ValidationException represents a local error (i.e. not during an RPC call).

+
+
+
+
+ + + diff --git a/v1.34.1/Google/ApiCore/AgentHeader.html b/v1.34.1/Google/ApiCore/AgentHeader.html new file mode 100644 index 000000000..1273c9fb1 --- /dev/null +++ b/v1.34.1/Google/ApiCore/AgentHeader.html @@ -0,0 +1,283 @@ + + + + + + Google\ApiCore\AgentHeader | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + AgentHeader (View source) +

+ + + + + +
+

Class containing functions used to build the Agent header.

+ + +

Constants

+ + + + + + + + +
+ AGENT_HEADER_KEY + +

+

+
+ UNKNOWN_VERSION + +

+

+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ buildAgentHeader(array $headerInfo) + +

No description

+
+
+
+
+
+ static string +
+
+ readGapicVersionFromFile(string $callingClass) + +

Reads the gapic version string from a VERSION file. In order to determine the file +location, this method follows this procedure:

+
    +
  • accepts a class name $callingClass
  • +
  • identifies the file defining that class
  • +
  • searches up the directory structure for the 'src' directory
  • +
  • looks in the directory above 'src' for a file named VERSION
  • +

+
+
+
+ + +

Details

+ +
+
+

+ + static array + buildAgentHeader(array $headerInfo) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$headerInfo

{ +Optional.

+
@type string $phpVersion the PHP version.
+@type string $libName the name of the client application.
+@type string $libVersion the version of the client application.
+@type string $gapicVersion the code generator version of the GAPIC library.
+@type string $apiCoreVersion the ApiCore version.
+@type string $grpcVersion the gRPC version.
+@type string $restVersion the REST transport version (typically same as the
+      ApiCore version).
+@type string $protobufVersion the protobuf version in format 'x.y.z+a' where both 'x.y.z'
+      and '+a' are optional, and where 'a' is a single letter representing the
+      implementation type of the protobuf runtime. It is recommended to use 'c' for a C
+      implementation, and 'n' for the native language implementation (PHP).
+

}

+ + +

Return Value

+ + + + + + +
array

Agent header array

+ + + + +
+
+ +
+
+

+ + static string + readGapicVersionFromFile(string $callingClass) + +

+
+ + + +
+

Reads the gapic version string from a VERSION file. In order to determine the file +location, this method follows this procedure:

+
    +
  • accepts a class name $callingClass
  • +
  • identifies the file defining that class
  • +
  • searches up the directory structure for the 'src' directory
  • +
  • looks in the directory above 'src' for a file named VERSION
  • +

+
+
+

Parameters

+ + + + + + + +
string$callingClass
+ + +

Return Value

+ + + + + + +
string

the gapic version

+ + +

Exceptions

+ + + + + + +
ReflectionException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ApiException.html b/v1.34.1/Google/ApiCore/ApiException.html new file mode 100644 index 000000000..32eccc0d8 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ApiException.html @@ -0,0 +1,782 @@ + + + + + + Google\ApiCore\ApiException | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ApiException extends Exception (View source) +

+ + + + + +
+

Represents an exception thrown during an RPC.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(string $message, int $code, string $status = null, array $optionalArgs = []) + +

ApiException constructor.

+
+
+
+
+ +
+
+ getStatus() + +

No description

+
+
+
+
+
+ string|null +
+
+ getReason() + +

Returns the reason in ErrorInfo for an exception, or null if there is no ErrorInfo.

+
+
+
+
+ string|null +
+
+ getDomain() + +

Returns the domain in ErrorInfo for an exception, or null if there is no ErrorInfo.

+
+
+
+
+ array|null +
+
+ getErrorInfoMetadata() + +

Returns the metadata in ErrorInfo for an exception, or null if there is no ErrorInfo.

+
+
+
+
+ static ApiException +
+
+ createFromStdClass(stdClass $status) + +

No description

+
+
+
+
+
+ static ApiException +
+
+ createFromApiResponse(string $basicMessage, int $rpcCode, array $metadata = null, Exception $previous = null) + +

No description

+
+
+
+
+
+ static ApiException +
+
+ createFromRestApiResponse(string $basicMessage, int $rpcCode, array $metadata = null, Exception $previous = null) + +

For REST-based responses, the metadata does not need to be decoded.

+
+
+
+
+ static ApiException +
+
+ createFromRpcStatus(Status $status) + +

No description

+
+
+
+
+
+ static ApiException +
+
+ createFromRequestException(RequestException $ex, bool $isStream = false) + +

Creates an ApiException from a GuzzleHttp RequestException.

+
+
+
+
+ null|string +
+
+ getBasicMessage() + +

No description

+
+
+
+
+
+ array +
+
+ getMetadata() + +

No description

+
+
+
+
+
+ string +
+
+ __toString() + +

String representation of ApiException

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(string $message, int $code, string $status = null, array $optionalArgs = []) + +

+
+ + + +
+

ApiException constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$message
int$code
string$status
array$optionalArgs

{ +@type Exception|null $previous +@type array|null $metadata +@type string|null $basicMessage +}

+ + + + + +
+
+ +
+
+

+ + + getStatus() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + string|null + getReason() + +

+
+ + + +
+

Returns the reason in ErrorInfo for an exception, or null if there is no ErrorInfo.

+
+
+ +

Return Value

+ + + + + + +
string|null$reason
+ + + + +
+
+ +
+
+

+ + string|null + getDomain() + +

+
+ + + +
+

Returns the domain in ErrorInfo for an exception, or null if there is no ErrorInfo.

+
+
+ +

Return Value

+ + + + + + +
string|null$domain
+ + + + +
+
+ +
+
+

+ + array|null + getErrorInfoMetadata() + +

+
+ + + +
+

Returns the metadata in ErrorInfo for an exception, or null if there is no ErrorInfo.

+
+
+ +

Return Value

+ + + + + + +
array|null$errorInfoMetadata
+ + + + +
+
+ +
+
+

+ + static ApiException + createFromStdClass(stdClass $status) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
stdClass$status
+ + +

Return Value

+ + + + + + +
ApiException
+ + + + +
+
+ +
+
+

+ + static ApiException + createFromApiResponse(string $basicMessage, int $rpcCode, array $metadata = null, Exception $previous = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$basicMessage
int$rpcCode
array$metadata
Exception$previous
+ + +

Return Value

+ + + + + + +
ApiException
+ + + + +
+
+ +
+
+

+ + static ApiException + createFromRestApiResponse(string $basicMessage, int $rpcCode, array $metadata = null, Exception $previous = null) + +

+
+ + + +
+

For REST-based responses, the metadata does not need to be decoded.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$basicMessage
int$rpcCode
array$metadata
Exception$previous
+ + +

Return Value

+ + + + + + +
ApiException
+ + + + +
+
+ +
+
+

+ + static ApiException + createFromRpcStatus(Status $status) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
Status$status
+ + +

Return Value

+ + + + + + +
ApiException
+ + + + +
+
+ +
+
+

+ + static ApiException + createFromRequestException(RequestException $ex, bool $isStream = false) + +

+
+ + + +
+

Creates an ApiException from a GuzzleHttp RequestException.

+
+
+

Parameters

+ + + + + + + + + + + + +
RequestException$ex
bool$isStream
+ + +

Return Value

+ + + + + + +
ApiException
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + null|string + getBasicMessage() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
null|string
+ + + + +
+
+ +
+
+

+ + array + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + string + __toString() + +

+
+ + + +
+

String representation of ApiException

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ApiStatus.html b/v1.34.1/Google/ApiCore/ApiStatus.html new file mode 100644 index 000000000..3aded5240 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ApiStatus.html @@ -0,0 +1,505 @@ + + + + + + Google\ApiCore\ApiStatus | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ApiStatus (View source) +

+ + + + + + + +

Constants

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ OK + +

+

+
+ CANCELLED + +

+

+
+ UNKNOWN + +

+

+
+ INVALID_ARGUMENT + +

+

+
+ DEADLINE_EXCEEDED + +

+

+
+ NOT_FOUND + +

+

+
+ ALREADY_EXISTS + +

+

+
+ PERMISSION_DENIED + +

+

+
+ RESOURCE_EXHAUSTED + +

+

+
+ FAILED_PRECONDITION + +

+

+
+ ABORTED + +

+

+
+ OUT_OF_RANGE + +

+

+
+ UNIMPLEMENTED + +

+

+
+ INTERNAL + +

+

+
+ UNAVAILABLE + +

+

+
+ DATA_LOSS + +

+

+
+ UNAUTHENTICATED + +

+

+
+ UNRECOGNIZED_STATUS + +

+

+
+ UNRECOGNIZED_CODE + +

+

+
+ + + +

Methods

+ +
+
+
+ static bool +
+
+ isValidStatus(string $status) + +

No description

+
+
+
+
+
+ static string +
+
+ statusFromRpcCode(int $code) + +

No description

+
+
+
+
+
+ static int +
+
+ rpcCodeFromStatus(string $status) + +

No description

+
+
+
+
+
+ static int +
+
+ rpcCodeFromHttpStatusCode(int $httpStatusCode) + +

Maps HTTP status codes to Google\Rpc\Code codes.

+
+
+
+ + +

Details

+ +
+
+

+ + static bool + isValidStatus(string $status) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$status
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + static string + statusFromRpcCode(int $code) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
int$code
+ + +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + static int + rpcCodeFromStatus(string $status) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$status
+ + +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+

+ + static int + rpcCodeFromHttpStatusCode(int $httpStatusCode) + +

+
+ + + +
+

Maps HTTP status codes to Google\Rpc\Code codes.

Some codes are left out because they map to multiple gRPC codes (e.g. 500).

+
+
+

Parameters

+ + + + + + + +
int$httpStatusCode
+ + +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ArrayTrait.html b/v1.34.1/Google/ApiCore/ArrayTrait.html new file mode 100644 index 000000000..5a9e2221b --- /dev/null +++ b/v1.34.1/Google/ApiCore/ArrayTrait.html @@ -0,0 +1,115 @@ + + + + + + Google\ApiCore\ArrayTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + ArrayTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Provides basic array helper methods.

+ + + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/BidiStream.html b/v1.34.1/Google/ApiCore/BidiStream.html new file mode 100644 index 000000000..1b360c1a2 --- /dev/null +++ b/v1.34.1/Google/ApiCore/BidiStream.html @@ -0,0 +1,471 @@ + + + + + + Google\ApiCore\BidiStream | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + BidiStream (View source) +

+ + + + + +
+

BidiStream is the response object from a gRPC bidirectional streaming API call.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(BidiStreamingCall $bidiStreamingCall, array $streamingDescriptor = []) + +

BidiStream constructor.

+
+
+
+
+ +
+
+ write(mixed $request) + +

Write request to the server.

+
+
+
+
+ +
+
+ writeAll(iterable $requests = []) + +

Write all requests in $requests.

+
+
+
+
+ +
+
+ closeWrite() + +

Inform the server that no more requests will be written. The write() function cannot be +called after closeWrite() is called.

+
+
+
+
+ mixed +
+
+ read() + +

Read the next response from the server. Returns null if the streaming call completed +successfully. Throws an ApiException if the streaming call failed.

+
+
+
+
+ Generator|array +
+
+ closeWriteAndReadAll() + +

Call closeWrite(), and read all responses from the server, until the streaming call is +completed. Throws an ApiException if the streaming call failed.

+
+
+
+
+ BidiStreamingCall|mixed +
+
+ getBidiStreamingCall() + +

Return the underlying gRPC call object

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(BidiStreamingCall $bidiStreamingCall, array $streamingDescriptor = []) + +

+
+ + + +
+

BidiStream constructor.

+
+
+

Parameters

+ + + + + + + + + + + + +
BidiStreamingCall$bidiStreamingCall

The gRPC bidirectional streaming call object

array$streamingDescriptor
+ + + + + +
+
+ +
+
+

+ + + write(mixed $request) + +

+
+ + + +
+

Write request to the server.

+
+
+

Parameters

+ + + + + + + +
mixed$request

The request to write

+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + + writeAll(iterable $requests = []) + +

+
+ + + +
+

Write all requests in $requests.

+
+
+

Parameters

+ + + + + + + +
iterable$requests

An Iterable of request objects to write to the server

+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + + closeWrite() + +

+
+ + + +
+

Inform the server that no more requests will be written. The write() function cannot be +called after closeWrite() is called.

+
+
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + mixed + read() + +

+
+ + + +
+

Read the next response from the server. Returns null if the streaming call completed +successfully. Throws an ApiException if the streaming call failed.

+
+
+ +

Return Value

+ + + + + + +
mixed
+ + +

Exceptions

+ + + + + + + + + + +
ValidationException
ApiException
+ + + +
+
+ +
+
+

+ + Generator|array + closeWriteAndReadAll() + +

+
+ + + +
+

Call closeWrite(), and read all responses from the server, until the streaming call is +completed. Throws an ApiException if the streaming call failed.

+
+
+ +

Return Value

+ + + + + + +
Generator|array
+ + +

Exceptions

+ + + + + + + + + + +
ValidationException
ApiException
+ + + +
+
+ +
+
+

+ + BidiStreamingCall|mixed + getBidiStreamingCall() + +

+
+ + + +
+

Return the underlying gRPC call object

+
+
+ +

Return Value

+ + + + + + +
BidiStreamingCall|mixed
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Call.html b/v1.34.1/Google/ApiCore/Call.html new file mode 100644 index 000000000..c6e03be72 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Call.html @@ -0,0 +1,515 @@ + + + + + + Google\ApiCore\Call | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Call (View source) +

+ + + + + +
+

Contains information necessary to manage a network request.

+ + +

Constants

+ + + + + + + + + + + + + + + + + + + + + + + + +
+ UNARY_CALL + +

+

+
+ BIDI_STREAMING_CALL + +

+

+
+ CLIENT_STREAMING_CALL + +

+

+
+ SERVER_STREAMING_CALL + +

+

+
+ LONGRUNNING_CALL + +

+

+
+ PAGINATED_CALL + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(string $method, string $decodeType = null, mixed|Message $message = null, array|null $descriptor = [], int $callType = Call::UNARY_CALL) + +

No description

+
+
+
+
+
+ string +
+
+ getMethod() + +

No description

+
+
+
+
+
+ int +
+
+ getCallType() + +

No description

+
+
+
+
+
+ string +
+
+ getDecodeType() + +

No description

+
+
+
+
+
+ mixed|Message +
+
+ getMessage() + +

No description

+
+
+
+
+
+ array|null +
+
+ getDescriptor() + +

No description

+
+
+
+
+
+ Call +
+
+ withMessage(mixed|Message $message) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(string $method, string $decodeType = null, mixed|Message $message = null, array|null $descriptor = [], int $callType = Call::UNARY_CALL) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method
string$decodeType
mixed|Message$message
array|null$descriptor
int$callType
+ + + + + +
+
+ +
+
+

+ + string + getMethod() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + int + getCallType() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+

+ + string + getDecodeType() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + mixed|Message + getMessage() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed|Message
+ + + + +
+
+ +
+
+

+ + array|null + getDescriptor() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array|null
+ + + + +
+
+ +
+
+

+ + Call + withMessage(mixed|Message $message) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
mixed|Message$message
+ + +

Return Value

+ + + + + + +
Call
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ClientOptionsTrait.html b/v1.34.1/Google/ApiCore/ClientOptionsTrait.html new file mode 100644 index 000000000..82caa02d0 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ClientOptionsTrait.html @@ -0,0 +1,125 @@ + + + + + + Google\ApiCore\ClientOptionsTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + ClientOptionsTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Common functions used to work with various clients.

+ +

Traits

+ + +
+
+ +

Provides basic array helper methods.

+
+
+ + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ClientStream.html b/v1.34.1/Google/ApiCore/ClientStream.html new file mode 100644 index 000000000..4160c2fe9 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ClientStream.html @@ -0,0 +1,357 @@ + + + + + + Google\ApiCore\ClientStream | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ClientStream (View source) +

+ + + + + +
+

ClientStream is the response object from a gRPC client streaming API call.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(ClientStreamingCall $clientStreamingCall, array $streamingDescriptor = []) + +

ClientStream constructor.

+
+
+
+
+ +
+
+ write(mixed $request) + +

Write request to the server.

+
+
+
+
+ mixed +
+
+ readResponse() + +

Read the response from the server, completing the streaming call.

+
+
+
+
+ mixed +
+
+ writeAllAndReadResponse(array $requests) + +

Write all data in $dataArray and read the response from the server, completing the streaming +call.

+
+
+
+
+ ClientStreamingCall|mixed +
+
+ getClientStreamingCall() + +

Return the underlying gRPC call object

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(ClientStreamingCall $clientStreamingCall, array $streamingDescriptor = []) + +

+
+ + + +
+

ClientStream constructor.

+
+
+

Parameters

+ + + + + + + + + + + + +
ClientStreamingCall$clientStreamingCall

The gRPC client streaming call object

array$streamingDescriptor
+ + + + + +
+
+ +
+
+

+ + + write(mixed $request) + +

+
+ + + +
+

Write request to the server.

+
+
+

Parameters

+ + + + + + + +
mixed$request

The request to write

+ + + + + +
+
+ +
+
+

+ + mixed + readResponse() + +

+
+ + + +
+

Read the response from the server, completing the streaming call.

+
+
+ +

Return Value

+ + + + + + +
mixed

The response object from the server

+ + +

Exceptions

+ + + + + + +
ApiException
+ + + +
+
+ +
+
+

+ + mixed + writeAllAndReadResponse(array $requests) + +

+
+ + + +
+

Write all data in $dataArray and read the response from the server, completing the streaming +call.

+
+
+

Parameters

+ + + + + + + +
array$requests

An iterator of request objects to write to the server

+ + +

Return Value

+ + + + + + +
mixed

The response object from the server

+ + + + +
+
+ +
+
+

+ + ClientStreamingCall|mixed + getClientStreamingCall() + +

+
+ + + +
+

Return the underlying gRPC call object

+
+
+ +

Return Value

+ + + + + + +
ClientStreamingCall|mixed
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/CredentialsWrapper.html b/v1.34.1/Google/ApiCore/CredentialsWrapper.html new file mode 100644 index 000000000..2a6d564ab --- /dev/null +++ b/v1.34.1/Google/ApiCore/CredentialsWrapper.html @@ -0,0 +1,645 @@ + + + + + + Google\ApiCore\CredentialsWrapper | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + CredentialsWrapper implements ProjectIdProviderInterface (View source) +

+ + + + + +
+

The CredentialsWrapper object provides a wrapper around a FetchAuthTokenInterface.

+ +

Traits

+ + +
+
+ +
+
+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ +
+
+ __construct(FetchAuthTokenInterface $credentialsFetcher, callable $authHttpHandler = null, string $universeDomain = GetUniverseDomainInterface::DEFAULT_UNIVERSE_DOMAIN) + +

CredentialsWrapper constructor.

+
+
+
+
+ static CredentialsWrapper +
+
+ build(array $args = [], string $universeDomain = GetUniverseDomainInterface::DEFAULT_UNIVERSE_DOMAIN) + +

Factory method to create a CredentialsWrapper from an array of options.

+
+
+
+
+ string|null +
+
+ getQuotaProject() + +

No description

+
+
+
+
+
+ string|null +
+
+ getProjectId(callable $httpHandler = null) + +

No description

+
+
+
+
+
+ string +
+
+ getBearerString() + deprecated +

No description

+
+
+
+
+
+ callable +
+
+ getAuthorizationHeaderCallback(string $audience = null) + +

No description

+
+
+
+
+
+ +
+
+ checkUniverseDomain() + +

Verify that the expected universe domain matches the universe domain from the credentials.

+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + + __construct(FetchAuthTokenInterface $credentialsFetcher, callable $authHttpHandler = null, string $universeDomain = GetUniverseDomainInterface::DEFAULT_UNIVERSE_DOMAIN) + +

+
+ + + +
+

CredentialsWrapper constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
FetchAuthTokenInterface$credentialsFetcher

A credentials loader +used to fetch access tokens.

callable$authHttpHandler

A handler used to deliver PSR-7 requests +specifically for authentication. Should match a signature of +function (RequestInterface $request, array $options) : ResponseInterface.

string$universeDomain
+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + static CredentialsWrapper + build(array $args = [], string $universeDomain = GetUniverseDomainInterface::DEFAULT_UNIVERSE_DOMAIN) + +

+
+ + + +
+

Factory method to create a CredentialsWrapper from an array of options.

+
+
+

Parameters

+ + + + + + + + + + + + +
array$args

{ +An array of optional arguments.

+
@type string|array $keyFile
+      Credentials to be used. Accepts either a path to a credentials file, or a decoded
+      credentials file as a PHP array. If this is not specified, application default
+      credentials will be used.
+@type string[] $scopes
+      A string array of scopes to use when acquiring credentials.
+@type callable $authHttpHandler
+      A handler used to deliver PSR-7 requests specifically
+      for authentication. Should match a signature of
+      `function (RequestInterface $request, array $options) : ResponseInterface`.
+@type bool $enableCaching
+      Enable caching of access tokens. Defaults to true.
+@type CacheItemPoolInterface $authCache
+      A cache for storing access tokens. Defaults to a simple in memory implementation.
+@type array $authCacheOptions
+      Cache configuration options.
+@type string $quotaProject
+      Specifies a user project to bill for access charges associated with the request.
+@type string[] $defaultScopes
+      A string array of default scopes to use when acquiring
+      credentials.
+@type bool $useJwtAccessWithScope
+      Ensures service account credentials use JWT Access (also known as self-signed
+      JWTs), even when user-defined scopes are supplied.
+

}

string$universeDomain

The expected universe of the credentials. Defaults to +"googleapis.com"

+ + +

Return Value

+ + + + + + +
CredentialsWrapper
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + string|null + getQuotaProject() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string|null

The quota project associated with the credentials.

+ + + + +
+
+ +
+
+

+ + string|null + getProjectId(callable $httpHandler = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable$httpHandler
+ + +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + string + getBearerString() + deprecated +

+
+

+ deprecated + + + + +

+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

Bearer string containing access token.

+ + + + +
+
+ +
+
+

+ + callable + getAuthorizationHeaderCallback(string $audience = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$audience

optional audience for self-signed JWTs.

+ + +

Return Value

+ + + + + + +
callable

Callable function that returns an authorization header.

+ + + + +
+
+ +
+
+

+ + + checkUniverseDomain() + +

+
+ + + +
+

Verify that the expected universe domain matches the universe domain from the credentials.

+
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/FixedSizeCollection.html b/v1.34.1/Google/ApiCore/FixedSizeCollection.html new file mode 100644 index 000000000..6de075893 --- /dev/null +++ b/v1.34.1/Google/ApiCore/FixedSizeCollection.html @@ -0,0 +1,434 @@ + + + + + + Google\ApiCore\FixedSizeCollection | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + FixedSizeCollection implements IteratorAggregate (View source) +

+ + + + + +
+

A collection of elements retrieved using one or more API calls. The +collection will attempt to retrieve a fixed number of elements, and +will make API calls until that fixed number is reached, or there +are no more elements to retrieve.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(Page $initialPage, int $collectionSize) + +

FixedSizeCollection constructor.

+
+
+
+
+ int +
+
+ getCollectionSize() + +

Returns the number of elements in the collection. This will be +equal to the collectionSize parameter used at construction +unless there are no elements remaining to be retrieved.

+
+
+
+
+ bool +
+
+ hasNextCollection() + +

Returns true if there are more elements that can be retrieved +from the API.

+
+
+
+
+ string +
+
+ getNextPageToken() + +

Returns a page token that can be passed into the API list +method to retrieve additional elements.

+
+
+
+ +
+ getNextCollection() + +

Retrieves the next FixedSizeCollection using one or more API calls.

+
+
+
+
+ Generator +
+
+ getIterator() + +

Returns an iterator over the elements of the collection.

+
+
+
+ +
+ iterateCollections() + +

Returns an iterator over FixedSizeCollections, starting with this +and making API calls as required until all of the elements have +been retrieved.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(Page $initialPage, int $collectionSize) + +

+
+ + + +
+

FixedSizeCollection constructor.

+
+
+

Parameters

+ + + + + + + + + + + + +
Page$initialPage
int$collectionSize
+ + + + + +
+
+ +
+
+

+ + int + getCollectionSize() + +

+
+ + + +
+

Returns the number of elements in the collection. This will be +equal to the collectionSize parameter used at construction +unless there are no elements remaining to be retrieved.

+
+
+ +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+

+ + bool + hasNextCollection() + +

+
+ + + +
+

Returns true if there are more elements that can be retrieved +from the API.

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + string + getNextPageToken() + +

+
+ + + +
+

Returns a page token that can be passed into the API list +method to retrieve additional elements.

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + FixedSizeCollection + getNextCollection() + +

+
+ + + +
+

Retrieves the next FixedSizeCollection using one or more API calls.

+
+
+ +

Return Value

+ + + + + + +
FixedSizeCollection
+ + + + +
+
+ +
+
+

+ + Generator + getIterator() + +

+
+ + + +
+

Returns an iterator over the elements of the collection.

+
+
+ +

Return Value

+ + + + + + +
Generator
+ + + + +
+
+ +
+
+

+ + Generator|FixedSizeCollection[] + iterateCollections() + +

+
+ + + +
+

Returns an iterator over FixedSizeCollections, starting with this +and making API calls as required until all of the elements have +been retrieved.

+
+
+ +

Return Value

+ + + + + + +
Generator|FixedSizeCollection[]
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/GPBLabel.html b/v1.34.1/Google/ApiCore/GPBLabel.html new file mode 100644 index 000000000..4d334dfa4 --- /dev/null +++ b/v1.34.1/Google/ApiCore/GPBLabel.html @@ -0,0 +1,139 @@ + + + + + + Google\ApiCore\GPBLabel | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + GPBLabel (View source) +

+ + + + + +
+

Container class for Protobuf label constants. See FieldDescriptorProto.Label in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

+ + +

Constants

+ + + + + + + + + + + + +
+ OPTIONAL + +

+

+
+ REQUIRED + +

+

+
+ REPEATED + +

+

+
+ + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/GPBType.html b/v1.34.1/Google/ApiCore/GPBType.html new file mode 100644 index 000000000..aa6572316 --- /dev/null +++ b/v1.34.1/Google/ApiCore/GPBType.html @@ -0,0 +1,274 @@ + + + + + + Google\ApiCore\GPBType | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + GPBType (View source) +

+ + + + + +
+

Container class for Protobuf type constants. See FieldDescriptorProto.Type in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

+ + +

Constants

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ DOUBLE + +

+

+
+ FLOAT + +

+

+
+ INT64 + +

+

+
+ UINT64 + +

+

+
+ INT32 + +

+

+
+ FIXED64 + +

+

+
+ FIXED32 + +

+

+
+ BOOL + +

+

+
+ STRING + +

+

+
+ GROUP + +

+

+
+ MESSAGE + +

+

+
+ BYTES + +

+

+
+ UINT32 + +

+

+
+ ENUM + +

+

+
+ SFIXED32 + +

+

+
+ SFIXED64 + +

+

+
+ SINT32 + +

+

+
+ SINT64 + +

+

+
+ + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/GapicClientTrait.html b/v1.34.1/Google/ApiCore/GapicClientTrait.html new file mode 100644 index 000000000..8f40c89f6 --- /dev/null +++ b/v1.34.1/Google/ApiCore/GapicClientTrait.html @@ -0,0 +1,381 @@ + + + + + + Google\ApiCore\GapicClientTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + GapicClientTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Common functions used to work with various clients.

+ +

Traits

+ + +
+
+ +

Common functions used to work with various clients.

+
+
+ +
+
+
+ +

Provides helper methods for gRPC support.

+
+
+ +

Provides basic array helper methods.

+
+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ void +
+
+ addMiddleware(callable $middlewareCallable) + +

Add a middleware to the call stack by providing a callable which will be +invoked at the start of each call, and will return an instance of +{MiddlewareInterface} when invoked.

+
+
+
+
+ +
+
+ close() + +

Initiates an orderly shutdown in which preexisting calls continue but new +calls are immediately cancelled.

+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + void + addMiddleware(callable $middlewareCallable) + +

+
+ + + +
+

Add a middleware to the call stack by providing a callable which will be +invoked at the start of each call, and will return an instance of +{MiddlewareInterface} when invoked.

The callable must have the following method signature:

+
callable(MiddlewareInterface): MiddlewareInterface
+

An implementation may look something like this:

+
$client->addMiddleware(function (MiddlewareInterface $handler) {
+    return new class ($handler) implements MiddlewareInterface {
+        public function __construct(private MiddlewareInterface $handler) {
+        }
+
+        public function __invoke(Call $call, array $options) {
+            // modify call and options (pre-request)
+            $response = ($this->handler)($call, $options);
+            // modify the response (post-request)
+            return $response;
+        }
+    };
+});

+
+
+

Parameters

+ + + + + + + +
callable$middlewareCallable

A callable which returns an instance +of {\Google\ApiCore\MiddlewareInterface} when invoked with a +MiddlewareInterface instance as its first argument.

+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + + close() + +

+
+ + + +
+

Initiates an orderly shutdown in which preexisting calls continue but new +calls are immediately cancelled.

+
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/GrpcSupportTrait.html b/v1.34.1/Google/ApiCore/GrpcSupportTrait.html new file mode 100644 index 000000000..26ab01d26 --- /dev/null +++ b/v1.34.1/Google/ApiCore/GrpcSupportTrait.html @@ -0,0 +1,115 @@ + + + + + + Google\ApiCore\GrpcSupportTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + GrpcSupportTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Provides helper methods for gRPC support.

+ + + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/InsecureCredentialsWrapper.html b/v1.34.1/Google/ApiCore/InsecureCredentialsWrapper.html new file mode 100644 index 000000000..bd2c7b70b --- /dev/null +++ b/v1.34.1/Google/ApiCore/InsecureCredentialsWrapper.html @@ -0,0 +1,630 @@ + + + + + + Google\ApiCore\InsecureCredentialsWrapper | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + InsecureCredentialsWrapper extends CredentialsWrapper (View source) +

+ + + + + +
+

For connect to emulator.

+ +

Traits

+ + +
+
+ +
+
+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ +
+
+ __construct() + +

CredentialsWrapper constructor.

+
+
+
+
+ static CredentialsWrapper +
+
+ build(array $args = [], string $universeDomain = GetUniverseDomainInterface::DEFAULT_UNIVERSE_DOMAIN) + +

Factory method to create a CredentialsWrapper from an array of options.

+ +
+
+
+ string|null +
+
+ getQuotaProject() + +

No description

+
+ +
+
+
+ string|null +
+
+ getProjectId(callable $httpHandler = null) + +

No description

+
+ +
+
+
+ string +
+
+ getBearerString() + deprecated +

No description

+
+ +
+
+
+ callable +
+
+ getAuthorizationHeaderCallback(string $audience = null) + +

No description

+
+
+
+
+
+ +
+
+ checkUniverseDomain() + +

Verify that the expected universe domain matches the universe domain from the credentials.

+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + + __construct() + +

+
+ + + +
+

CredentialsWrapper constructor.

+
+
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + static CredentialsWrapper + build(array $args = [], string $universeDomain = GetUniverseDomainInterface::DEFAULT_UNIVERSE_DOMAIN) + +

+
+ + + +
+

Factory method to create a CredentialsWrapper from an array of options.

+
+
+

Parameters

+ + + + + + + + + + + + +
array$args

{ +An array of optional arguments.

+
@type string|array $keyFile
+      Credentials to be used. Accepts either a path to a credentials file, or a decoded
+      credentials file as a PHP array. If this is not specified, application default
+      credentials will be used.
+@type string[] $scopes
+      A string array of scopes to use when acquiring credentials.
+@type callable $authHttpHandler
+      A handler used to deliver PSR-7 requests specifically
+      for authentication. Should match a signature of
+      `function (RequestInterface $request, array $options) : ResponseInterface`.
+@type bool $enableCaching
+      Enable caching of access tokens. Defaults to true.
+@type CacheItemPoolInterface $authCache
+      A cache for storing access tokens. Defaults to a simple in memory implementation.
+@type array $authCacheOptions
+      Cache configuration options.
+@type string $quotaProject
+      Specifies a user project to bill for access charges associated with the request.
+@type string[] $defaultScopes
+      A string array of default scopes to use when acquiring
+      credentials.
+@type bool $useJwtAccessWithScope
+      Ensures service account credentials use JWT Access (also known as self-signed
+      JWTs), even when user-defined scopes are supplied.
+

}

string$universeDomain

The expected universe of the credentials. Defaults to +"googleapis.com"

+ + +

Return Value

+ + + + + + +
CredentialsWrapper
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + string|null + getQuotaProject() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string|null

The quota project associated with the credentials.

+ + + + +
+
+ +
+
+

+ + string|null + getProjectId(callable $httpHandler = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable$httpHandler
+ + +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + string + getBearerString() + deprecated +

+
+

+ deprecated + + + + +

+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

Bearer string containing access token.

+ + + + +
+
+ +
+
+

+ + callable + getAuthorizationHeaderCallback(string $audience = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$audience

optional audience for self-signed JWTs.

+ + +

Return Value

+ + + + + + +
callable

Callable function that returns an authorization header.

+ + + + +
+
+ +
+
+

+ + + checkUniverseDomain() + +

+
+ + + +
+

Verify that the expected universe domain matches the universe domain from the credentials.

+
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware.html b/v1.34.1/Google/ApiCore/Middleware.html new file mode 100644 index 000000000..92f9c72af --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware.html @@ -0,0 +1,152 @@ + + + + + + Google\ApiCore\Middleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+ +

Middleware which adds a CredentialsWrapper object to the call options.

+
+
+ +

Middleware to add fixed headers to an API call.

+
+
+ +

Middleware which wraps the response in an OperationResponse object.

+
+
+ +

Middleware which filters the $options array.

+
+
+ +

Middleware which wraps the response in an PagedListResponses object.

+
+
+ +

Middleware that adds autopopulation functionality. This middlware is +added iff auto population settings are present in the resource +descriptor config for the rpc method in context.

+
+
+ +

Middleware which transforms $response into [$response, $metadata]

+
+
+ +

Middleware that adds retry functionality.

+
+
+

Interfaces

+
+
+ +

Middlewares must take a MiddlewareInterface as their first constructor +argument {Google\ApiCore\Middleware\ResponseMetadataMiddleware}, which +represents the next middleware in the chain. This next middleware MUST be +invoked by this MiddlewareInterface, and the result must be returned as part +of the __invoke method implementation.

+
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/CredentialsWrapperMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/CredentialsWrapperMiddleware.html new file mode 100644 index 000000000..69cf40cb2 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/CredentialsWrapperMiddleware.html @@ -0,0 +1,227 @@ + + + + + + Google\ApiCore\Middleware\CredentialsWrapperMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + CredentialsWrapperMiddleware implements MiddlewareInterface (View source) +

+ + + + + +
+

Middleware which adds a CredentialsWrapper object to the call options.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler, CredentialsWrapper $credentialsWrapper) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

Modify or observe the API call request and response.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler, CredentialsWrapper $credentialsWrapper) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
callable$nextHandler
CredentialsWrapper$credentialsWrapper
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

Modify or observe the API call request and response.

The returned value must include the result of the next MiddlewareInterface invocation in the +chain.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/FixedHeaderMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/FixedHeaderMiddleware.html new file mode 100644 index 000000000..833e4daa4 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/FixedHeaderMiddleware.html @@ -0,0 +1,232 @@ + + + + + + Google\ApiCore\Middleware\FixedHeaderMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + FixedHeaderMiddleware implements MiddlewareInterface (View source) +

+ + + + + +
+

Middleware to add fixed headers to an API call.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler, array $headers, bool $overrideUserHeaders = false) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

Modify or observe the API call request and response.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler, array $headers, bool $overrideUserHeaders = false) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
callable$nextHandler
array$headers
bool$overrideUserHeaders
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

Modify or observe the API call request and response.

The returned value must include the result of the next MiddlewareInterface invocation in the +chain.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/MiddlewareInterface.html b/v1.34.1/Google/ApiCore/Middleware/MiddlewareInterface.html new file mode 100644 index 000000000..47c798114 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/MiddlewareInterface.html @@ -0,0 +1,203 @@ + + + + + + Google\ApiCore\Middleware\MiddlewareInterface | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

interface + MiddlewareInterface (View source) +

+ + + + + +
+

Middlewares must take a MiddlewareInterface as their first constructor +argument {Google\ApiCore\Middleware\ResponseMetadataMiddleware}, which +represents the next middleware in the chain. This next middleware MUST be +invoked by this MiddlewareInterface, and the result must be returned as part +of the __invoke method implementation.

To create your own middleware, first implement the interface, as well as pass the handler +in through the constructor:

+
use Google\ApiCore\Call;
+use Google\ApiCore\Middleware\MiddlewareInterface;
+
+class MyTestMiddleware implements MiddlewareInterface
+{
+    public function __construct(MiddlewareInterface $handler)
+     {
+.         $this->handler = $handler;
+     }
+     public function __invoke(Call $call, array $options)
+     {
+         echo "Logging info about the call: " . $call->getMethod();
+         return ($this->handler)($call, $options);
+     }
+}
+

Next, add the middleware to any class implementing GapicClientTrait by passing in a +callable which returns the new middleware:

+
$client = new ExampleGoogleApiServiceClient();
+$client->addMiddleware(function (MiddlewareInterface $handler) {
+    return new MyTestMiddleware($handler);
+});

+ + + + +

Methods

+ +
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

Modify or observe the API call request and response.

+
+
+
+ + +

Details

+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

Modify or observe the API call request and response.

The returned value must include the result of the next MiddlewareInterface invocation in the +chain.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/OperationsMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/OperationsMiddleware.html new file mode 100644 index 000000000..610020c18 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/OperationsMiddleware.html @@ -0,0 +1,232 @@ + + + + + + Google\ApiCore\Middleware\OperationsMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + OperationsMiddleware implements MiddlewareInterface (View source) +

+ + + + + +
+

Middleware which wraps the response in an OperationResponse object.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler, $operationsClient, array $descriptor) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

Modify or observe the API call request and response.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler, $operationsClient, array $descriptor) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
callable$nextHandler
$operationsClient
array$descriptor
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

Modify or observe the API call request and response.

The returned value must include the result of the next MiddlewareInterface invocation in the +chain.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/OptionsFilterMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/OptionsFilterMiddleware.html new file mode 100644 index 000000000..5a052f509 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/OptionsFilterMiddleware.html @@ -0,0 +1,237 @@ + + + + + + Google\ApiCore\Middleware\OptionsFilterMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + OptionsFilterMiddleware implements MiddlewareInterface (View source) +

+ + + + + +
+

Middleware which filters the $options array.

+ +

Traits

+ + +
+
+ +

Provides basic array helper methods.

+
+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler, array $permittedOptions) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

Modify or observe the API call request and response.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler, array $permittedOptions) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
callable$nextHandler
array$permittedOptions
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

Modify or observe the API call request and response.

The returned value must include the result of the next MiddlewareInterface invocation in the +chain.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/PagedMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/PagedMiddleware.html new file mode 100644 index 000000000..25ef62f06 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/PagedMiddleware.html @@ -0,0 +1,227 @@ + + + + + + Google\ApiCore\Middleware\PagedMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + PagedMiddleware implements MiddlewareInterface (View source) +

+ + + + + +
+

Middleware which wraps the response in an PagedListResponses object.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler, PageStreamingDescriptor $descriptor) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

Modify or observe the API call request and response.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler, PageStreamingDescriptor $descriptor) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
callable$nextHandler
PageStreamingDescriptor$descriptor
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

Modify or observe the API call request and response.

The returned value must include the result of the next MiddlewareInterface invocation in the +chain.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/RequestAutoPopulationMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/RequestAutoPopulationMiddleware.html new file mode 100644 index 000000000..0fd671f09 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/RequestAutoPopulationMiddleware.html @@ -0,0 +1,237 @@ + + + + + + Google\ApiCore\Middleware\RequestAutoPopulationMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RequestAutoPopulationMiddleware implements MiddlewareInterface (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Middleware that adds autopopulation functionality. This middlware is +added iff auto population settings are present in the resource +descriptor config for the rpc method in context.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler, array $autoPopulationSettings) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler, array $autoPopulationSettings) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
callable$nextHandler
array$autoPopulationSettings
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/ResponseMetadataMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/ResponseMetadataMiddleware.html new file mode 100644 index 000000000..30dfbb795 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/ResponseMetadataMiddleware.html @@ -0,0 +1,222 @@ + + + + + + Google\ApiCore\Middleware\ResponseMetadataMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ResponseMetadataMiddleware implements MiddlewareInterface (View source) +

+ + + + + +
+

Middleware which transforms $response into [$response, $metadata]

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

Modify or observe the API call request and response.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable$nextHandler
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

Modify or observe the API call request and response.

The returned value must include the result of the next MiddlewareInterface invocation in the +chain.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Middleware/RetryMiddleware.html b/v1.34.1/Google/ApiCore/Middleware/RetryMiddleware.html new file mode 100644 index 000000000..a50f1b4c0 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Middleware/RetryMiddleware.html @@ -0,0 +1,273 @@ + + + + + + Google\ApiCore\Middleware\RetryMiddleware | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RetryMiddleware implements MiddlewareInterface (View source) +

+ + + + + +
+

Middleware that adds retry functionality.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $nextHandler, RetrySettings $retrySettings, $deadlineMs = null, $retryAttempts = 0) + +

No description

+
+
+
+
+
+ PromiseInterface|ClientStream|ServerStream|BidiStream +
+
+ __invoke(Call $call, array $options) + +

No description

+
+
+
+
+
+ +
+
+ getCurrentTimeMs() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $nextHandler, RetrySettings $retrySettings, $deadlineMs = null, $retryAttempts = 0) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
callable$nextHandler
RetrySettings$retrySettings
$deadlineMs
$retryAttempts
+ + + + + +
+
+ +
+
+

+ + PromiseInterface|ClientStream|ServerStream|BidiStream + __invoke(Call $call, array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface|ClientStream|ServerStream|BidiStream
+ + + + +
+
+ +
+
+

+ + protected + getCurrentTimeMs() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/OperationResponse.html b/v1.34.1/Google/ApiCore/OperationResponse.html new file mode 100644 index 000000000..e124f8401 --- /dev/null +++ b/v1.34.1/Google/ApiCore/OperationResponse.html @@ -0,0 +1,1009 @@ + + + + + + Google\ApiCore\OperationResponse | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + OperationResponse (View source) +

+ + + + + +
+

Response object from a long running API method.

The OperationResponse object is returned by API methods that perform +a long running operation. It provides methods that can be used to +poll the status of the operation, retrieve the results, and cancel +the operation.

+

To support a long running operation, the server must implement the +Operations API, which is used by the OperationResponse object. If +more control is required, it is possible to make calls against the +Operations API directly instead of via the OperationResponse object +using an Operations Client instance.

+ +

Traits

+ + +
+
+ +
+
+
+ +

Constants

+ + + + + + + + + + + + + + + + + + + + +
+ DEFAULT_POLLING_INTERVAL + +

+

+
+ DEFAULT_POLLING_MULTIPLIER + +

+

+
+ DEFAULT_MAX_POLLING_INTERVAL + +

+

+
+ DEFAULT_MAX_POLLING_DURATION + +

+

+
+ private + NEW_CLIENT_NAMESPACE + +

+

+
+ + + +

Methods

+ +
+
+
+ float +
+
+ getCurrentTimeMillis() + +

Protected to allow overriding for tests

+ +
+
+
+ +
+
+ sleepMillis(int $millis) + +

Protected to allow overriding for tests

+ +
+
+
+ +
+
+ __construct(string $operationName, object $operationsClient, array $options = []) + +

OperationResponse constructor.

+
+
+
+
+ bool +
+
+ isDone() + +

Check whether the operation has completed.

+
+
+
+
+ bool +
+
+ operationSucceeded() + +

Check whether the operation completed successfully. If the operation is not complete, or if the operation +failed, return false.

+
+
+
+
+ bool +
+
+ operationFailed() + +

Check whether the operation failed. If the operation is not complete, or if the operation +succeeded, return false.

+
+
+
+
+ string +
+
+ getName() + +

Get the formatted name of the operation

+
+
+
+
+ bool +
+
+ pollUntilComplete(array $options = []) + +

Poll the server in a loop until the operation is complete.

+
+
+
+
+ +
+
+ reload() + +

Reload the status of the operation with a request to the service.

+
+
+
+
+ mixed|null +
+
+ getResult() + +

Return the result of the operation. If operationSucceeded() is false, return null.

+
+
+
+
+ Status|null +
+
+ getError() + +

If the operation failed, return the status. If operationFailed() is false, return null.

+
+
+
+
+ array +
+
+ getDescriptorOptions() + +

Get an array containing the values of 'operationReturnType', 'metadataReturnType', and +the polling options initialPollDelayMillis, pollDelayMultiplier, maxPollDelayMillis, +and totalPollTimeoutMillis. The array can be passed as the $options argument to the +constructor when creating another OperationResponse object.

+
+
+
+
+ Operation|mixed|null +
+
+ getLastProtoResponse() + +

No description

+
+
+
+
+
+ object +
+
+ getOperationsClient() + +

No description

+
+
+
+
+
+ +
+
+ cancel() + +

Cancel the long-running operation.

+
+
+
+
+ +
+
+ delete() + +

Delete the long-running operation.

+
+
+
+
+ mixed +
+
+ getMetadata() + +

Get the metadata returned with the last proto response. If a metadata type was provided, then +the return value will be of that type - otherwise, the return value will be of type Any. If +no metadata object is available, returns null.

+
+
+
+ + +

Details

+ +
+
+

+ + protected float + getCurrentTimeMillis() + +

+
+ + + +
+

Protected to allow overriding for tests

+
+
+ +

Return Value

+ + + + + + +
float

Current time in milliseconds

+ + + + +
+
+ +
+
+

+ + protected + sleepMillis(int $millis) + +

+
+ + + +
+

Protected to allow overriding for tests

+
+
+

Parameters

+ + + + + + + +
int$millis
+ + + + + +
+
+ +
+
+

+ + + __construct(string $operationName, object $operationsClient, array $options = []) + +

+
+ + + +
+

OperationResponse constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
string$operationName
object$operationsClient
array$options

{ +Optional. Options for configuring the operation response object.

+
@type string $operationReturnType The return type of the longrunning operation.
+@type string $metadataReturnType The type of the metadata returned in the operation response.
+@type int $initialPollDelayMillis    The initial polling interval to use, in milliseconds.
+@type int $pollDelayMultiplier Multiplier applied to the polling interval on each retry.
+@type int $maxPollDelayMillis The maximum polling interval to use, in milliseconds.
+@type int $totalPollTimeoutMillis The maximum amount of time to continue polling.
+@type object $lastProtoResponse A response already received from the server.
+@type string $getOperationMethod The method on $operationsClient to get the operation.
+@type string $cancelOperationMethod The method on $operationsClient to cancel the operation.
+@type string $deleteOperationMethod The method on $operationsClient to delete the operation.
+@type string $operationStatusMethod The method on the operation to get the status.
+@type string $operationStatusDoneValue The method on the operation to determine if the status is done.
+@type array $additionalOperationArguments Additional arguments to pass to $operationsClient methods.
+@type string $operationErrorCodeMethod The method on the operation to get the error code
+@type string $operationErrorMessageMethod The method on the operation to get the error status
+

}

+ + + + + +
+
+ +
+
+

+ + bool + isDone() + +

+
+ + + +
+

Check whether the operation has completed.

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + bool + operationSucceeded() + +

+
+ + + +
+

Check whether the operation completed successfully. If the operation is not complete, or if the operation +failed, return false.

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + bool + operationFailed() + +

+
+ + + +
+

Check whether the operation failed. If the operation is not complete, or if the operation +succeeded, return false.

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + string + getName() + +

+
+ + + +
+

Get the formatted name of the operation

+
+
+ +

Return Value

+ + + + + + +
string

The formatted name of the operation

+ + + + +
+
+ +
+
+

+ + bool + pollUntilComplete(array $options = []) + +

+
+ + + +
+

Poll the server in a loop until the operation is complete.

Return true if the operation completed, otherwise return false. If the +$options['totalPollTimeoutMillis'] setting is not set (or set <= 0) then +pollUntilComplete will continue polling until the operation completes, +and therefore will always return true.

+
+
+

Parameters

+ + + + + + + +
array$options

{ +Options for configuring the polling behaviour.

+
@type int $initialPollDelayMillis The initial polling interval to use, in milliseconds.
+@type int $pollDelayMultiplier    Multiplier applied to the polling interval on each retry.
+@type int $maxPollDelayMillis     The maximum polling interval to use, in milliseconds.
+@type int $totalPollTimeoutMillis The maximum amount of time to continue polling, in milliseconds.
+

}

+ + +

Return Value

+ + + + + + +
bool

Indicates if the operation completed.

+ + +

Exceptions

+ + + + + + + + + + +
ApiException
ValidationException
+ + + +
+
+ +
+
+

+ + + reload() + +

+
+ + + +
+

Reload the status of the operation with a request to the service.

+
+
+ + +

Exceptions

+ + + + + + + + + + +
ApiException
ValidationException
+ + + +
+
+ +
+
+

+ + mixed|null + getResult() + +

+
+ + + +
+

Return the result of the operation. If operationSucceeded() is false, return null.

+
+
+ +

Return Value

+ + + + + + +
mixed|null

The result of the operation, or null if operationSucceeded() is false

+ + + + +
+
+ +
+
+

+ + Status|null + getError() + +

+
+ + + +
+

If the operation failed, return the status. If operationFailed() is false, return null.

+
+
+ +

Return Value

+ + + + + + +
Status|null

The status of the operation in case of failure, or null if +operationFailed() is false.

+ + + + +
+
+ +
+
+

+ + array + getDescriptorOptions() + +

+
+ + + +
+

Get an array containing the values of 'operationReturnType', 'metadataReturnType', and +the polling options initialPollDelayMillis, pollDelayMultiplier, maxPollDelayMillis, +and totalPollTimeoutMillis. The array can be passed as the $options argument to the +constructor when creating another OperationResponse object.

+
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + Operation|mixed|null + getLastProtoResponse() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
Operation|mixed|null

The last Operation object received from the server.

+ + + + +
+
+ +
+
+

+ + object + getOperationsClient() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
object

The OperationsClient object used to make +requests to the operations API.

+ + + + +
+
+ +
+
+

+ + + cancel() + +

+
+ + + +
+

Cancel the long-running operation.

For operations of type Google\LongRunning\Operation, this method starts +asynchronous cancellation on a long-running operation. The server +makes a best effort to cancel the operation, but success is not +guaranteed. If the server doesn't support this method, it will throw an +ApiException with code \Google\Rpc\Code::UNIMPLEMENTED. Clients can continue +to use reload and pollUntilComplete methods to check whether the cancellation +succeeded or whether the operation completed despite cancellation. +On successful cancellation, the operation is not deleted; instead, it becomes +an operation with a getError() value with a \Google\Rpc\Status code of 1, +corresponding to \Google\Rpc\Code::CANCELLED.

+
+
+ + +

Exceptions

+ + + + + + + + + + +
ApiException
LogicException
+ + + +
+
+ +
+
+

+ + + delete() + +

+
+ + + +
+

Delete the long-running operation.

For operations of type Google\LongRunning\Operation, this method +indicates that the client is no longer interested in the operation result. +It does not cancel the operation. If the server doesn't support this method, +it will throw an ApiException with code \Google\Rpc\Code::UNIMPLEMENTED.

+
+
+ + +

Exceptions

+ + + + + + + + + + +
ApiException
LogicException
+ + + +
+
+ +
+
+

+ + mixed + getMetadata() + +

+
+ + + +
+

Get the metadata returned with the last proto response. If a metadata type was provided, then +the return value will be of that type - otherwise, the return value will be of type Any. If +no metadata object is available, returns null.

+
+
+ +

Return Value

+ + + + + + +
mixed

The metadata returned from the server in the last response.

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options.html b/v1.34.1/Google/ApiCore/Options.html new file mode 100644 index 000000000..a20c0966a --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options.html @@ -0,0 +1,127 @@ + + + + + + Google\ApiCore\Options | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + +

Namespaces

+ + +

Classes

+
+
+ +

The CallOptions class provides typing to the associative array of options +passed to transport RPC methods. See {TransportInterface::startUnaryCall()}, +{@see TransportInterface::startBidiStreamingCall()}, +{TransportInterface::startClientStreamingCall()}, and +{TransportInterface::startServerStreamingCall()}.

+
+
+ +

The ClientOptions class adds typing to the associative array of options +passed into each API client constructor. To use this class directly, pass +the result of {ClientOptions::toArray} to the client constructor:

+
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+ +
+ + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options/CallOptions.html b/v1.34.1/Google/ApiCore/Options/CallOptions.html new file mode 100644 index 000000000..6c631a41c --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options/CallOptions.html @@ -0,0 +1,722 @@ + + + + + + Google\ApiCore\Options\CallOptions | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + CallOptions implements ArrayAccess (View source) +

+ + + + + +
+

The CallOptions class provides typing to the associative array of options +passed to transport RPC methods. See {TransportInterface::startUnaryCall()}, +{@see TransportInterface::startBidiStreamingCall()}, +{TransportInterface::startClientStreamingCall()}, and +{TransportInterface::startServerStreamingCall()}.

+ +

Traits

+ + +
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+
+ + + +

Methods

+ +
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+ +
+
+
+ +
+
+ offsetGet($offset) + +

No description

+
+ +
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+ +
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+ +
+
+
+ array +
+
+ toArray() + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $options) + +

No description

+
+
+
+
+
+ +
+
+ setHeaders(array $headers) + +

No description

+
+
+
+
+
+ +
+
+ setTimeoutMillis(int|null $timeoutMillis) + +

No description

+
+
+
+
+
+ +
+
+ setTransportOptions(array $transportOptions) + +

No description

+
+
+
+
+
+ +
+
+ setTransportSpecificOptions(array $transportSpecificOptions) + deprecated +

No description

+
+
+
+
+
+ +
+
+ setRetrySettings(RetrySettings|array|null $retrySettings) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + array + toArray() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + + __construct(array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$options

{ +Call options

+
@type array<string, array<string>> $headers
+      Key-value array containing headers.
+@type int $timeoutMillis
+      The timeout in milliseconds for the call.
+@type array $transportOptions
+      Transport-specific call options. See {[\Google\ApiCore\Options\CallOptions::setTransportOptions}.
+

](../../../Google/ApiCore/Options/CallOptions.html) @type RetrySettings|array $retrySettings +A retry settings override for the call. If $retrySettings is an +array, the settings will be merged with the method's default +retry settings. If $retrySettings is a RetrySettings object, +that object will be used instead of the method defaults. +}

+ + + + + +
+
+ +
+
+

+ + + setHeaders(array $headers) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$headers
+ + + + + +
+
+ +
+
+

+ + + setTimeoutMillis(int|null $timeoutMillis) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
int|null$timeoutMillis
+ + + + + +
+
+ +
+
+

+ + + setTransportOptions(array $transportOptions) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$transportOptions

{ +Transport-specific call-time options.

+
@type array $grpcOptions
+      Key-value pairs for gRPC-specific options passed as the `$options` argument to {\Grpc\BaseStub}
+      request methods. Current options are `call_credentials_callback` and `timeout`.
+      **NOTE**: This library sets `call_credentials_callback` using {\Google\ApiCore\CredentialsWrapper}, and `timeout`
+      using the `timeoutMillis` call option, so these options are not very useful.
+@type array $grpcFallbackOptions
+      Key-value pairs for gRPC fallback specific options passed as the `$options` argument to the
+      `$httpHandler` callable. By default these are passed to {\GuzzleHttp\Client} as request options.
+      See https://docs.guzzlephp.org/en/stable/request-options.html.
+@type array $restOptions
+      Key-value pairs for REST-specific options passed as the `$options` argument to the `$httpHandler`
+      callable. By default these are passed to {\GuzzleHttp\Client} as request options.
+      See https://docs.guzzlephp.org/en/stable/request-options.html.
+

}

+ + + + + +
+
+ +
+
+

+ + + setTransportSpecificOptions(array $transportSpecificOptions) + deprecated +

+
+

+ deprecated + + use + CallOptions::setTransportOptions + +

+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$transportSpecificOptions
+ + + + + +
+
+ +
+
+

+ + + setRetrySettings(RetrySettings|array|null $retrySettings) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
RetrySettings|array|null$retrySettings
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options/ClientOptions.html b/v1.34.1/Google/ApiCore/Options/ClientOptions.html new file mode 100644 index 000000000..c185e9fda --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options/ClientOptions.html @@ -0,0 +1,1272 @@ + + + + + + Google\ApiCore\Options\ClientOptions | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ClientOptions implements ArrayAccess (View source) +

+ + + + + +
+

The ClientOptions class adds typing to the associative array of options +passed into each API client constructor. To use this class directly, pass +the result of {ClientOptions::toArray} to the client constructor:

use Google\ApiCore\ClientOptions;
+use Google\Cloud\SecretManager\Client\SecretManagerClient;
+
+$options = new ClientOptions([
+    'credentials' => '/path/to/my/credentials.json'
+]);
+$secretManager = new SecretManagerClient($options->toArray());
+

Note: It's possible to pass an associative array to the API clients as well, +as ClientOptions will still be used internally for validation.

+ +

Traits

+ + +
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+
+ + + +

Methods

+ +
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+ +
+
+
+ +
+
+ offsetGet($offset) + +

No description

+
+ +
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+ +
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+ +
+
+
+ array +
+
+ toArray() + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $options) + +

No description

+
+
+
+
+
+ void +
+
+ setApiEndpoint(string|null $apiEndpoint) + +

No description

+
+
+
+
+
+ void +
+
+ setDisableRetries(bool $disableRetries) + +

No description

+
+
+
+
+
+ void +
+
+ setClientConfig(string|array $clientConfig) + +

No description

+
+
+
+
+
+ void +
+
+ setCredentials(string|array|FetchAuthTokenInterface|CredentialsWrapper|null $credentials) + +

No description

+
+
+
+
+
+ void +
+
+ setCredentialsConfig(array $credentialsConfig) + +

No description

+
+
+
+
+
+ void +
+
+ setTransport(string|TransportInterface|null $transport) + +

No description

+
+
+
+
+
+ void +
+
+ setTransportConfig(TransportOptions $transportConfig) + +

No description

+
+
+
+
+
+ void +
+
+ setVersionFile(string|null $versionFile) + +

No description

+
+
+
+
+
+ void +
+
+ setServiceName(string|null $serviceName) + +

No description

+
+
+
+
+
+ void +
+
+ setLibName(string|null $libName) + +

No description

+
+
+
+
+
+ void +
+
+ setLibVersion(string|null $libVersion) + +

No description

+
+
+
+
+
+ void +
+
+ setGapicVersion(string|null $gapicVersion) + +

No description

+
+
+
+
+
+ +
+
+ setClientCertSource(callable|null $clientCertSource) + +

No description

+
+
+
+
+
+ +
+
+ setUniverseDomain(string|null $universeDomain) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + array + toArray() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + + __construct(array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$options

{ +@type string $apiEndpoint +The address of the API remote host, for example "example.googleapis.com. May also +include the port, for example "example.googleapis.com:443" +@type bool $disableRetries +Determines whether or not retries defined by the client configuration should be +disabled. Defaults to false. +@type string|array $clientConfig +Client method configuration, including retry settings. This option can be either a +path to a JSON file, or a PHP array containing the decoded JSON data. +By default this settings points to the default client config file, which is provided +in the resources folder. +@type string|array|FetchAuthTokenInterface|CredentialsWrapper $credentials +The credentials to be used by the client to authorize API calls. This option +accepts either a path to a credentials file, or a decoded credentials file as a +PHP array. +Advanced usage: In addition, this option can also accept a pre-constructed +\Google\Auth\FetchAuthTokenInterface object or \Google\ApiCore\CredentialsWrapper +object. Note that when one of these objects are provided, any settings in +$authConfig will be ignored. +@type array $credentialsConfig +Options used to configure credentials, including auth token caching, for the client. +For a full list of supporting configuration options, see +\Google\ApiCore\CredentialsWrapper::build. +@type string|TransportInterface|null $transport +The transport used for executing network requests. May be either the string rest, +grpc, or 'grpc-fallback'. Defaults to grpc if gRPC support is detected on the system. +Advanced usage: Additionally, it is possible to pass in an already instantiated +TransportInterface object. Note that when this objects is provided, any settings in +$transportConfig, and any $apiEndpoint setting, will be ignored. +@type array $transportConfig +Configuration options that will be used to construct the transport. Options for +each supported transport type should be passed in a key for that transport. For +example: +$transportConfig = [ +'grpc' => [...], +'rest' => [...], +'grpc-fallback' => [...], +]; +See the GrpcTransport::build and RestTransport::build +methods for the supported options. +@type string $versionFile +The path to a file which contains the current version of the client. +@type string $descriptorsConfigPath +The path to a descriptor configuration file. +@type string $serviceName +The name of the service. +@type string $libName +The name of the client application. +@type string $libVersion +The version of the client application. +@type string $gapicVersion +The code generator version of the GAPIC library. +@type callable $clientCertSource +A callable which returns the client cert as a string. +@type string $universeDomain +The default service domain for a given Cloud universe. +}

+ + + + + +
+
+ +
+
+

+ + void + setApiEndpoint(string|null $apiEndpoint) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$apiEndpoint
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setDisableRetries(bool $disableRetries) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
bool$disableRetries
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setClientConfig(string|array $clientConfig) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|array$clientConfig
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
InvalidArgumentException
+ + + +
+
+ +
+
+

+ + void + setCredentials(string|array|FetchAuthTokenInterface|CredentialsWrapper|null $credentials) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|array|FetchAuthTokenInterface|CredentialsWrapper|null$credentials
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setCredentialsConfig(array $credentialsConfig) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$credentialsConfig
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setTransport(string|TransportInterface|null $transport) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|TransportInterface|null$transport
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setTransportConfig(TransportOptions $transportConfig) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
TransportOptions$transportConfig
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setVersionFile(string|null $versionFile) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$versionFile
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setServiceName(string|null $serviceName) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$serviceName
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setLibName(string|null $libName) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$libName
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setLibVersion(string|null $libVersion) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$libVersion
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setGapicVersion(string|null $gapicVersion) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$gapicVersion
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + + setClientCertSource(callable|null $clientCertSource) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable|null$clientCertSource
+ + + + + +
+
+ +
+
+

+ + + setUniverseDomain(string|null $universeDomain) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$universeDomain
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options/OptionsTrait.html b/v1.34.1/Google/ApiCore/Options/OptionsTrait.html new file mode 100644 index 000000000..8ac7d8f95 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options/OptionsTrait.html @@ -0,0 +1,393 @@ + + + + + + Google\ApiCore\Options\OptionsTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + OptionsTrait (View source) +

+ + + + + +
+

Trait implemented by any class representing an associative array of PHP options.

This provides validation and typehinting to loosely typed associative arrays.

+ + + + +

Methods

+ +
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+
+
+
+
+ +
+
+ offsetGet($offset) + +

No description

+
+
+
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+
+
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+
+
+
+
+ array +
+
+ toArray() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + array + toArray() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options/TransportOptions.html b/v1.34.1/Google/ApiCore/Options/TransportOptions.html new file mode 100644 index 000000000..8b71e35b8 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options/TransportOptions.html @@ -0,0 +1,623 @@ + + + + + + Google\ApiCore\Options\TransportOptions | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + TransportOptions implements ArrayAccess (View source) +

+ + + + + + +

Traits

+ + +
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+
+ + + +

Methods

+ +
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+ +
+
+
+ +
+
+ offsetGet($offset) + +

No description

+
+ +
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+ +
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+ +
+
+
+ array +
+
+ toArray() + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $options) + +

No description

+
+
+
+
+
+ void +
+
+ setGrpc(GrpcTransportOptions $grpc) + +

No description

+
+
+
+
+
+ void +
+
+ setGrpcFallback(GrpcFallbackTransportOptions $grpcFallback) + +

No description

+
+
+
+
+
+ void +
+
+ setRest(RestTransportOptions $rest) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + array + toArray() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + + __construct(array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$options

{ +Config options used to construct the transport.

+

@type array $grpc +@type array $grpcFallback +@type array $rest +}

+ + + + + +
+
+ +
+
+

+ + void + setGrpc(GrpcTransportOptions $grpc) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
GrpcTransportOptions$grpc
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setGrpcFallback(GrpcFallbackTransportOptions $grpcFallback) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
GrpcFallbackTransportOptions$grpcFallback
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setRest(RestTransportOptions $rest) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
RestTransportOptions$rest
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions.html b/v1.34.1/Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions.html new file mode 100644 index 000000000..ff7f1b5c7 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions.html @@ -0,0 +1,555 @@ + + + + + + Google\ApiCore\Options\TransportOptions\GrpcFallbackTransportOptions | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + GrpcFallbackTransportOptions implements ArrayAccess (View source) +

+ + + + + +
+

The GrpcFallbackTransportOptions class provides typing to the associative array of options used +to configure {\Google\ApiCore\Transport\GrpcFallbackTransport}.

+ +

Traits

+ + +
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+
+ + + +

Methods

+ +
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+ +
+
+
+ +
+
+ offsetGet($offset) + +

No description

+
+ +
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+ +
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+ +
+
+
+ array +
+
+ toArray() + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $options) + +

No description

+
+
+
+
+
+ +
+
+ setHttpHandler(callable|null $httpHandler) + +

No description

+
+
+
+
+
+ +
+
+ setClientCertSource(callable|null $clientCertSource) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + array + toArray() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + + __construct(array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$options

{ +Config options used to construct the gRPC Fallback transport.

+

@type callable $clientCertSource +A callable which returns the client cert as a string. +@type callable $httpHandler +A handler used to deliver PSR-7 requests. +}

+ + + + + +
+
+ +
+
+

+ + + setHttpHandler(callable|null $httpHandler) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable|null$httpHandler
+ + + + + +
+
+ +
+
+

+ + + setClientCertSource(callable|null $clientCertSource) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable|null$clientCertSource
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html b/v1.34.1/Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html new file mode 100644 index 000000000..bc161b2dd --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html @@ -0,0 +1,653 @@ + + + + + + Google\ApiCore\Options\TransportOptions\GrpcTransportOptions | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + GrpcTransportOptions implements ArrayAccess (View source) +

+ + + + + +
+

The GrpcTransportOptions class provides typing to the associative array of options used to +configure {\Google\ApiCore\Transport\GrpcTransport}.

+ +

Traits

+ + +
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+
+ + + +

Methods

+ +
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+ +
+
+
+ +
+
+ offsetGet($offset) + +

No description

+
+ +
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+ +
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+ +
+
+
+ array +
+
+ toArray() + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $options) + +

No description

+
+
+
+
+
+ +
+
+ setStubOpts(array $stubOpts) + +

No description

+
+
+
+
+
+ +
+
+ setChannel(Channel|null $channel) + +

No description

+
+
+
+
+
+ +
+
+ setInterceptors(array $interceptors) + +

No description

+
+
+
+
+
+ +
+
+ setClientCertSource(callable|null $clientCertSource) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + array + toArray() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + + __construct(array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$options

{ +Config options used to construct the gRPC transport.

+

@type array $stubOpts Options used to construct the gRPC stub (see +https://grpc.github.io/grpc/core/group__grpc__arg__keys.html). +@type Channel $channel Grpc channel to be used. +@type Interceptor[]|UnaryInterceptorInterface[] $interceptors EXPERIMENTAL +Interceptors used to intercept RPC invocations before a call starts. +Please note that implementations of +{\Google\ApiCore\Transport\Grpc\UnaryInterceptorInterface} are +considered deprecated and support will be removed in a future +release. To prepare for this, please take the time to convert +UnaryInterceptorInterface implementations over to a class which +extends {\Google\ApiCore\Options\TransportOptions\Grpc\Interceptor}. +@type callable $clientCertSource A callable which returns the client cert as a string. +}

+ + + + + +
+
+ +
+
+

+ + + setStubOpts(array $stubOpts) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$stubOpts
+ + + + + +
+
+ +
+
+

+ + + setChannel(Channel|null $channel) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
Channel|null$channel
+ + + + + +
+
+ +
+
+

+ + + setInterceptors(array $interceptors) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$interceptors
+ + + + + +
+
+ +
+
+

+ + + setClientCertSource(callable|null $clientCertSource) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable|null$clientCertSource
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Options/TransportOptions/RestTransportOptions.html b/v1.34.1/Google/ApiCore/Options/TransportOptions/RestTransportOptions.html new file mode 100644 index 000000000..a6ebacf6e --- /dev/null +++ b/v1.34.1/Google/ApiCore/Options/TransportOptions/RestTransportOptions.html @@ -0,0 +1,602 @@ + + + + + + Google\ApiCore\Options\TransportOptions\RestTransportOptions | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RestTransportOptions implements ArrayAccess (View source) +

+ + + + + +
+

The RestTransportOptions class provides typing to the associative array of options used to +configure {\Google\ApiCore\Transport\RestTransport}.

+ +

Traits

+ + +
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+
+ + + +

Methods

+ +
+
+
+ bool +
+
+ offsetExists($offset) + +

No description

+
+ +
+
+
+ +
+
+ offsetGet($offset) + +

No description

+
+ +
+
+
+ void +
+
+ offsetSet($offset, $value) + +

No description

+
+ +
+
+
+ void +
+
+ offsetUnset($offset) + +

No description

+
+ +
+
+
+ array +
+
+ toArray() + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $options) + +

No description

+
+
+
+
+
+ +
+
+ setHttpHandler(callable|null $httpHandler) + +

No description

+
+
+
+
+
+ +
+
+ setClientCertSource(callable|null $clientCertSource) + +

No description

+
+
+
+
+
+ +
+
+ setRestClientConfigPath(string|null $restClientConfigPath) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + bool + offsetExists($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + offsetGet($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + + + + +
+
+ +
+
+

+ + void + offsetSet($offset, $value) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
$offset
$value
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + void + offsetUnset($offset) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$offset
+ + +

Return Value

+ + + + + + +
void
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + array + toArray() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + + __construct(array $options) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$options

{ +Config options used to construct the REST transport.

+

@type callable $httpHandler +A handler used to deliver PSR-7 requests. +@type callable $clientCertSource +A callable which returns the client cert as a string. +@type string $restClientConfigPath +The path to the REST client config file. +}

+ + + + + +
+
+ +
+
+

+ + + setHttpHandler(callable|null $httpHandler) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable|null$httpHandler
+ + + + + +
+
+ +
+
+

+ + + setClientCertSource(callable|null $clientCertSource) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable|null$clientCertSource
+ + + + + +
+
+ +
+
+

+ + + setRestClientConfigPath(string|null $restClientConfigPath) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string|null$restClientConfigPath
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Page.html b/v1.34.1/Google/ApiCore/Page.html new file mode 100644 index 000000000..d1417f08f --- /dev/null +++ b/v1.34.1/Google/ApiCore/Page.html @@ -0,0 +1,641 @@ + + + + + + Google\ApiCore\Page | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Page implements IteratorAggregate (View source) +

+ + + + + +
+

A Page object wraps an API list method response and provides methods +to retrieve additional pages using the page token.

+ + +

Constants

+ + + + +
+ FINAL_PAGE_TOKEN + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(Call $call, array $options, callable $callable, PageStreamingDescriptor $pageStreamingDescriptor, Message $response) + +

Page constructor.

+
+
+
+
+ bool +
+
+ hasNextPage() + +

Returns true if there are more pages that can be retrieved from the +API.

+
+
+
+
+ string +
+
+ getNextPageToken() + +

Returns the next page token from the response.

+
+
+
+
+ Page +
+
+ getNextPage(int $pageSize = null) + +

Retrieves the next Page object using the next page token.

+
+
+
+
+ int +
+
+ getPageElementCount() + +

Return the number of elements in the response.

+
+
+
+
+ Generator +
+
+ getIterator() + +

Return an iterator over the elements in the response.

+
+
+
+
+ Generator|Page[] +
+
+ iteratePages() + +

Return an iterator over Page objects, beginning with this object.

+
+
+
+
+ mixed|Message +
+
+ getRequestObject() + +

Gets the request object used to generate the Page.

+
+
+
+
+ mixed|Message +
+
+ getResponseObject() + +

Gets the API response object.

+
+
+
+ +
+ expandToFixedSizeCollection(int $collectionSize) + +

Returns a collection of elements with a fixed size set by +the collectionSize parameter. The collection will only contain +fewer than collectionSize elements if there are no more +pages to be retrieved from the server.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(Call $call, array $options, callable $callable, PageStreamingDescriptor $pageStreamingDescriptor, Message $response) + +

+
+ + + +
+

Page constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Call$call
array$options
callable$callable
PageStreamingDescriptor$pageStreamingDescriptor
Message$response
+ + + + + +
+
+ +
+
+

+ + bool + hasNextPage() + +

+
+ + + +
+

Returns true if there are more pages that can be retrieved from the +API.

+
+
+ +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + string + getNextPageToken() + +

+
+ + + +
+

Returns the next page token from the response.

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + Page + getNextPage(int $pageSize = null) + +

+
+ + + +
+

Retrieves the next Page object using the next page token.

+
+
+

Parameters

+ + + + + + + +
int$pageSize
+ + +

Return Value

+ + + + + + +
Page
+ + +

Exceptions

+ + + + + + + + + + +
ValidationException
ApiException
+ + + +
+
+ +
+
+

+ + int + getPageElementCount() + +

+
+ + + +
+

Return the number of elements in the response.

+
+
+ +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+

+ + Generator + getIterator() + +

+
+ + + +
+

Return an iterator over the elements in the response.

+
+
+ +

Return Value

+ + + + + + +
Generator
+ + + + +
+
+ +
+
+

+ + Generator|Page[] + iteratePages() + +

+
+ + + +
+

Return an iterator over Page objects, beginning with this object.

Additional Page objects are retrieved lazily via API calls until +all elements have been retrieved.

+
+
+ +

Return Value

+ + + + + + +
Generator|Page[]
+ + +

Exceptions

+ + + + + + + + + + +
ValidationException
ApiException
+ + + +
+
+ +
+
+

+ + mixed|Message + getRequestObject() + +

+
+ + + +
+

Gets the request object used to generate the Page.

+
+
+ +

Return Value

+ + + + + + +
mixed|Message
+ + + + +
+
+ +
+
+

+ + mixed|Message + getResponseObject() + +

+
+ + + +
+

Gets the API response object.

+
+
+ +

Return Value

+ + + + + + +
mixed|Message
+ + + + +
+
+ +
+
+

+ + FixedSizeCollection + expandToFixedSizeCollection(int $collectionSize) + +

+
+ + + +
+

Returns a collection of elements with a fixed size set by +the collectionSize parameter. The collection will only contain +fewer than collectionSize elements if there are no more +pages to be retrieved from the server.

NOTE: it is an error to call this method if an optional parameter +to set the page size is not supported or has not been set in the +API call that was used to create this page. It is also an error +if the collectionSize parameter is less than the page size that +has been set.

+
+
+

Parameters

+ + + + + + + +
int$collectionSize
+ + +

Return Value

+ + + + + + +
FixedSizeCollection
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/PageStreamingDescriptor.html b/v1.34.1/Google/ApiCore/PageStreamingDescriptor.html new file mode 100644 index 000000000..3da341c84 --- /dev/null +++ b/v1.34.1/Google/ApiCore/PageStreamingDescriptor.html @@ -0,0 +1,542 @@ + + + + + + Google\ApiCore\PageStreamingDescriptor | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + PageStreamingDescriptor (View source) +

+ + + + + +
+

Holds the description information used for page streaming.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(array $descriptor) + +

No description

+
+
+
+
+ +
+ createFromFields(array $fields) + +

No description

+
+
+
+
+
+ string +
+
+ getRequestPageTokenGetMethod() + +

No description

+
+
+
+
+
+ string +
+
+ getRequestPageSizeGetMethod() + +

No description

+
+
+
+
+
+ bool +
+
+ requestHasPageSizeField() + +

No description

+
+
+
+
+
+ string +
+
+ getResponsePageTokenGetMethod() + +

No description

+
+
+
+
+
+ string +
+
+ getResourcesGetMethod() + +

No description

+
+
+
+
+
+ string +
+
+ getRequestPageTokenSetMethod() + +

No description

+
+
+
+
+
+ string +
+
+ getRequestPageSizeSetMethod() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $descriptor) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$descriptor

{ +Required. +@type string $requestPageTokenGetMethod the get method for the page token in the request object. +@type string $requestPageTokenSetMethod the set method for the page token in the request object. +@type string $responsePageTokenGetMethod the get method for the page token in the response object. +@type string resourcesGetMethod the get method for the resources in the response object.

+
Optional.
+@type string $requestPageSizeGetMethod the get method for the page size in the request object.
+

}

+ + + + + +
+
+ +
+
+

+ + static PageStreamingDescriptor + createFromFields(array $fields) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$fields

{ +Required.

+
@type string $requestPageTokenField the page token field in the request object.
+@type string $responsePageTokenField the page token field in the response object.
+@type string $resourceField the resource field in the response object.
+
+Optional.
+@type string $requestPageSizeField the page size field in the request object.
+

}

+ + +

Return Value

+ + + + + + +
PageStreamingDescriptor
+ + + + +
+
+ +
+
+

+ + string + getRequestPageTokenGetMethod() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The page token get method on the request object

+ + + + +
+
+ +
+
+

+ + string + getRequestPageSizeGetMethod() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The page size get method on the request object

+ + + + +
+
+ +
+
+

+ + bool + requestHasPageSizeField() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
bool

True if the request object has a page size field

+ + + + +
+
+ +
+
+

+ + string + getResponsePageTokenGetMethod() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The page token get method on the response object

+ + + + +
+
+ +
+
+

+ + string + getResourcesGetMethod() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The resources get method on the response object

+ + + + +
+
+ +
+
+

+ + string + getRequestPageTokenSetMethod() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The page token set method on the request object

+ + + + +
+
+ +
+
+

+ + string + getRequestPageSizeSetMethod() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The page size set method on the request object

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/PagedListResponse.html b/v1.34.1/Google/ApiCore/PagedListResponse.html new file mode 100644 index 000000000..4d55dd16c --- /dev/null +++ b/v1.34.1/Google/ApiCore/PagedListResponse.html @@ -0,0 +1,543 @@ + + + + + + Google\ApiCore\PagedListResponse | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + PagedListResponse implements IteratorAggregate (View source) +

+ + + + + +
+

Response object for paged results from a list API method

The PagedListResponse object is returned by API methods that implement +pagination, and makes it easier to access multiple pages of results +without having to manually manipulate page tokens. Pages are retrieved +lazily, with additional API calls being made as additional results +are required.

+

The list elements can be accessed in the following ways:

+
    +
  • As a single iterable used in a foreach loop or via the getIterator method
  • +
  • As pages of elements, using the getPage and iteratePages methods
  • +
  • As fixed size collections of elements, using the +getFixedSizeCollection and iterateFixedSizeCollections methods
  • +
+

Example of using PagedListResponse as an iterator:

+
$pagedListResponse = $client->getList(...);
+foreach ($pagedListResponse as $element) {
+    // doSomethingWith($element);
+}
+

Example of iterating over each page of elements:

+
$pagedListResponse = $client->getList(...);
+foreach ($pagedListResponse->iteratePages() as $page) {
+    foreach ($page as $element) {
+        // doSomethingWith($element);
+    }
+}
+

Example of accessing the current page, and manually iterating +over pages:

+
$pagedListResponse = $client->getList(...);
+$page = $pagedListResponse->getPage();
+// doSomethingWith($page);
+while ($page->hasNextPage()) {
+    $page = $page->getNextPage();
+    // doSomethingWith($page);
+}

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(Page $firstPage) + +

PagedListResponse constructor.

+
+
+
+
+ Generator +
+
+ iterateAllElements() + +

Returns an iterator over the full list of elements. If the +API response contains a (non-empty) next page token, then +the PagedListResponse object will make calls to the underlying +API to retrieve additional elements as required.

+
+
+
+
+ Generator +
+
+ getIterator() + +

Returns an iterator over the full list of elements. If the +API response contains a (non-empty) next page token, then +the PagedListResponse object will make calls to the underlying +API to retrieve additional elements as required.

+
+
+
+
+ Page +
+
+ getPage() + +

Return the current page of results.

+
+
+
+
+ Page[] +
+
+ iteratePages() + +

Returns an iterator over pages of results. The pages are +retrieved lazily from the underlying API.

+
+
+
+ +
+ expandToFixedSizeCollection(int $collectionSize) + +

Returns a collection of elements with a fixed size set by +the collectionSize parameter. The collection will only contain +fewer than collectionSize elements if there are no more +pages to be retrieved from the server.

+
+
+
+ +
+ iterateFixedSizeCollections(int $collectionSize) + +

Returns an iterator over fixed size collections of results.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(Page $firstPage) + +

+
+ + + +
+

PagedListResponse constructor.

+
+
+

Parameters

+ + + + + + + +
Page$firstPage

A page containing response details.

+ + + + + +
+
+ +
+
+

+ + Generator + iterateAllElements() + +

+
+ + + +
+

Returns an iterator over the full list of elements. If the +API response contains a (non-empty) next page token, then +the PagedListResponse object will make calls to the underlying +API to retrieve additional elements as required.

NOTE: The result of this method is the same as getIterator(). +Prefer using getIterator(), or iterate directly on the +PagedListResponse object.

+
+
+ +

Return Value

+ + + + + + +
Generator
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + Generator + getIterator() + +

+
+ + + +
+

Returns an iterator over the full list of elements. If the +API response contains a (non-empty) next page token, then +the PagedListResponse object will make calls to the underlying +API to retrieve additional elements as required.

+
+
+ +

Return Value

+ + + + + + +
Generator
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + Page + getPage() + +

+
+ + + +
+

Return the current page of results.

+
+
+ +

Return Value

+ + + + + + +
Page
+ + + + +
+
+ +
+
+

+ + Page[] + iteratePages() + +

+
+ + + +
+

Returns an iterator over pages of results. The pages are +retrieved lazily from the underlying API.

+
+
+ +

Return Value

+ + + + + + +
Page[]
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + FixedSizeCollection + expandToFixedSizeCollection(int $collectionSize) + +

+
+ + + +
+

Returns a collection of elements with a fixed size set by +the collectionSize parameter. The collection will only contain +fewer than collectionSize elements if there are no more +pages to be retrieved from the server.

NOTE: it is an error to call this method if an optional parameter +to set the page size is not supported or has not been set in the +original API call. It is also an error if the collectionSize parameter +is less than the page size that has been set.

+
+
+

Parameters

+ + + + + + + +
int$collectionSize
+ + +

Return Value

+ + + + + + +
FixedSizeCollection
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + Generator|FixedSizeCollection[] + iterateFixedSizeCollections(int $collectionSize) + +

+
+ + + +
+

Returns an iterator over fixed size collections of results.

The collections are retrieved lazily from the underlying API.

+

Each collection will have collectionSize elements, with the +exception of the final collection which may contain fewer +elements.

+

NOTE: it is an error to call this method if an optional parameter +to set the page size is not supported or has not been set in the +original API call. It is also an error if the collectionSize parameter +is less than the page size that has been set.

+
+
+

Parameters

+ + + + + + + +
int$collectionSize
+ + +

Return Value

+ + + + + + +
Generator|FixedSizeCollection[]
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/PathTemplate.html b/v1.34.1/Google/ApiCore/PathTemplate.html new file mode 100644 index 000000000..c47d56339 --- /dev/null +++ b/v1.34.1/Google/ApiCore/PathTemplate.html @@ -0,0 +1,392 @@ + + + + + + Google\ApiCore\PathTemplate | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + PathTemplate implements ResourceTemplateInterface (View source) +

+ + + + + +
+

Represents a path template.

Templates use the syntax of the API platform; see the protobuf of HttpRule for +details. A template consists of a sequence of literals, wildcards, and variable bindings, +where each binding can have a sub-path. A string representation can be parsed into an +instance of PathTemplate, which can then be used to perform matching and instantiation.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(string $path = null) + +

PathTemplate constructor.

+
+
+
+
+ string +
+
+ __toString() + +

No description

+
+
+
+
+
+ string +
+
+ render(array $bindings) + +

Renders a path template using the provided bindings.

+
+
+
+
+ bool +
+
+ matches(string $path) + +

Check if $path matches a resource string.

+
+
+
+
+ array +
+
+ match(string $path) + +

Matches a fully qualified path template string.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(string $path = null) + +

+
+ + + +
+

PathTemplate constructor.

+
+
+

Parameters

+ + + + + + + +
string$path

A path template string

+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + string + __toString() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

A string representation of the resource template

+ + + + +
+
+ +
+
+

+ + string + render(array $bindings) + +

+
+ + + +
+

Renders a path template using the provided bindings.

+
+
+

Parameters

+ + + + + + + +
array$bindings

An array matching var names to binding strings.

+ + +

Return Value

+ + + + + + +
string

A rendered representation of this resource template.

+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + bool + matches(string $path) + +

+
+ + + +
+

Check if $path matches a resource string.

+
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + array + match(string $path) + +

+
+ + + +
+

Matches a fully qualified path template string.

+
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
array

Array matching var names to binding values.

+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/PollingTrait.html b/v1.34.1/Google/ApiCore/PollingTrait.html new file mode 100644 index 000000000..3df699901 --- /dev/null +++ b/v1.34.1/Google/ApiCore/PollingTrait.html @@ -0,0 +1,209 @@ + + + + + + Google\ApiCore\PollingTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + PollingTrait (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ float +
+
+ getCurrentTimeMillis() + +

Protected to allow overriding for tests

+
+
+
+
+ +
+
+ sleepMillis(int $millis) + +

Protected to allow overriding for tests

+
+
+
+ + +

Details

+ +
+
+

+ + protected float + getCurrentTimeMillis() + +

+
+ + + +
+

Protected to allow overriding for tests

+
+
+ +

Return Value

+ + + + + + +
float

Current time in milliseconds

+ + + + +
+
+ +
+
+

+ + protected + sleepMillis(int $millis) + +

+
+ + + +
+

Protected to allow overriding for tests

+
+
+

Parameters

+ + + + + + + +
int$millis
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/RequestBuilder.html b/v1.34.1/Google/ApiCore/RequestBuilder.html new file mode 100644 index 000000000..33fba3abb --- /dev/null +++ b/v1.34.1/Google/ApiCore/RequestBuilder.html @@ -0,0 +1,515 @@ + + + + + + Google\ApiCore\RequestBuilder | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RequestBuilder (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Builds a PSR-7 request from a set of request information.

+ +

Traits

+ + +
+
+ +

Provides basic array helper methods.

+
+
+ +

Provides a light wrapper around often used URI related functions.

+
+
+ +
+
+
+ + + +

Methods

+ +
+
+
+ UriInterface +
+
+ buildUriWithQuery(string|UriInterface $uri, array $query) + +

No description

+
+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ +
+
+ __construct(string $baseUri, string $restConfigPath) + +

No description

+
+
+
+
+
+ bool +
+
+ pathExists(string $path) + +

No description

+
+
+
+
+
+ RequestInterface +
+
+ build(string $path, Message $message, array $headers = []) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + UriInterface + buildUriWithQuery(string|UriInterface $uri, array $query) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
string|UriInterface$uri
array$query
+ + +

Return Value

+ + + + + + +
UriInterface
+ + + + +
+
+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + + __construct(string $baseUri, string $restConfigPath) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
string$baseUri
string$restConfigPath
+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + bool + pathExists(string $path) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$path
+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + RequestInterface + build(string $path, Message $message, array $headers = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
string$path
Message$message
array$headers
+ + +

Return Value

+ + + + + + +
RequestInterface
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/RequestParamsHeaderDescriptor.html b/v1.34.1/Google/ApiCore/RequestParamsHeaderDescriptor.html new file mode 100644 index 000000000..60dcc3a13 --- /dev/null +++ b/v1.34.1/Google/ApiCore/RequestParamsHeaderDescriptor.html @@ -0,0 +1,217 @@ + + + + + + Google\ApiCore\RequestParamsHeaderDescriptor | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RequestParamsHeaderDescriptor (View source) +

+ + + + + +
+

Encapsulates request params header metadata.

+ + +

Constants

+ + + + +
+ HEADER_KEY + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(array $requestParams) + +

RequestParamsHeaderDescriptor constructor.

+
+
+
+
+ array +
+
+ getHeader() + +

Returns an associative array that contains request params header metadata.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $requestParams) + +

+
+ + + +
+

RequestParamsHeaderDescriptor constructor.

+
+
+

Parameters

+ + + + + + + +
array$requestParams

An associative array which contains request params header data in +a form ['field_name.subfield_name' => value].

+ + + + + +
+
+ +
+
+

+ + array + getHeader() + +

+
+ + + +
+

Returns an associative array that contains request params header metadata.

+
+
+ +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ResourceHelperTrait.html b/v1.34.1/Google/ApiCore/ResourceHelperTrait.html new file mode 100644 index 000000000..06c0e8e44 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ResourceHelperTrait.html @@ -0,0 +1,116 @@ + + + + + + Google\ApiCore\ResourceHelperTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + ResourceHelperTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Provides functionality for loading a resource name template map from a descriptor config, +retrieving a PathTemplate, and parsing values using registered templates.

+ + + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ResourceTemplate.html b/v1.34.1/Google/ApiCore/ResourceTemplate.html new file mode 100644 index 000000000..6284232b3 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ResourceTemplate.html @@ -0,0 +1,131 @@ + + + + + + Google\ApiCore\ResourceTemplate | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+ +

Represents an absolute resource template, meaning that it will always contain a leading slash, +and may contain a trailing verb (":").

+
+
+
+ Parser
+

Collection of methods for parsing Segments.

+
+
+ +

Represents a relative resource template, meaning that it will never contain a leading slash or +trailing verb (":").

+
+
+ +

Represents a segment in a resource template. This is used internally by RelativeResourceTemplate, +but is not intended for public use and may change without notice.

+
+
+

Interfaces

+
+
+ +

Represents a resource template that may or may not contain a leading slash, and if a leading +slash is present may contain a trailing verb (":"). (Note that a trailing verb without a +leading slash is not permitted).

+
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html b/v1.34.1/Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html new file mode 100644 index 000000000..a15060a06 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html @@ -0,0 +1,393 @@ + + + + + + Google\ApiCore\ResourceTemplate\AbsoluteResourceTemplate | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + AbsoluteResourceTemplate implements ResourceTemplateInterface (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Represents an absolute resource template, meaning that it will always contain a leading slash, +and may contain a trailing verb (":").

Examples: +/projects +/projects/{project} +/foo/{bar=*}/fizz/:action

+

Templates use the syntax of the API platform; see +https://github.com/googleapis/api-common-protos/blob/master/google/api/http.proto +for details. A template consists of a sequence of literals, wildcards, and variable bindings, +where each binding can have a sub-path. A string representation can be parsed into an +instance of AbsoluteResourceTemplate, which can then be used to perform matching and instantiation.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(string $path) + +

AbsoluteResourceTemplate constructor.

+
+
+
+
+ string +
+
+ __toString() + +

No description

+
+
+
+
+
+ string +
+
+ render(array $bindings) + +

No description

+
+
+
+
+
+ bool +
+
+ matches(string $path) + +

No description

+
+
+
+
+
+ array +
+
+ match(string $path) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(string $path) + +

+
+ + + +
+

AbsoluteResourceTemplate constructor.

+
+
+

Parameters

+ + + + + + + +
string$path
+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + string + __toString() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

A string representation of the resource template

+ + + + +
+
+ +
+
+

+ + string + render(array $bindings) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$bindings

An array matching var names to binding strings.

+ + +

Return Value

+ + + + + + +
string

A rendered representation of this resource template.

+ + + + +
+
+ +
+
+

+ + bool + matches(string $path) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + array + match(string $path) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
array

Array matching var names to binding values.

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ResourceTemplate/Parser.html b/v1.34.1/Google/ApiCore/ResourceTemplate/Parser.html new file mode 100644 index 000000000..914d2bd14 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ResourceTemplate/Parser.html @@ -0,0 +1,187 @@ + + + + + + Google\ApiCore\ResourceTemplate\Parser | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Parser (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Collection of methods for parsing Segments.

+ + + + +

Methods

+ +
+
+
+ static array +
+
+ parseSegments(string $path = null) + +

Parses a path into an array of segments.

+
+
+
+ + +

Details

+ +
+
+

+ + static array + parseSegments(string $path = null) + +

+
+ + + +
+

Parses a path into an array of segments.

+
+
+

Parameters

+ + + + + + + +
string$path
+ + +

Return Value

+ + + + + + +
array
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html b/v1.34.1/Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html new file mode 100644 index 000000000..955231765 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html @@ -0,0 +1,393 @@ + + + + + + Google\ApiCore\ResourceTemplate\RelativeResourceTemplate | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RelativeResourceTemplate implements ResourceTemplateInterface (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Represents a relative resource template, meaning that it will never contain a leading slash or +trailing verb (":").

Examples: +projects +projects/{project} +foo/{bar=*}/fizz/

+

Templates use the syntax of the API platform; see +https://github.com/googleapis/api-common-protos/blob/master/google/api/http.proto +for details. A template consists of a sequence of literals, wildcards, and variable bindings, +where each binding can have a sub-path. A string representation can be parsed into an +instance of AbsoluteResourceTemplate, which can then be used to perform matching and instantiation.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(string $path) + +

RelativeResourceTemplate constructor.

+
+
+
+
+ string +
+
+ __toString() + +

No description

+
+
+
+
+
+ string +
+
+ render(array $bindings) + +

No description

+
+
+
+
+
+ bool +
+
+ matches(string $path) + +

No description

+
+
+
+
+
+ array +
+
+ match(string $path) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(string $path) + +

+
+ + + +
+

RelativeResourceTemplate constructor.

+
+
+

Parameters

+ + + + + + + +
string$path
+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + string + __toString() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

A string representation of the resource template

+ + + + +
+
+ +
+
+

+ + string + render(array $bindings) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
array$bindings

An array matching var names to binding strings.

+ + +

Return Value

+ + + + + + +
string

A rendered representation of this resource template.

+ + + + +
+
+ +
+
+

+ + bool + matches(string $path) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + array + match(string $path) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
array

Array matching var names to binding values.

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html b/v1.34.1/Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html new file mode 100644 index 000000000..488eecbb8 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html @@ -0,0 +1,359 @@ + + + + + + Google\ApiCore\ResourceTemplate\ResourceTemplateInterface | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

interface + ResourceTemplateInterface (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Represents a resource template that may or may not contain a leading slash, and if a leading +slash is present may contain a trailing verb (":"). (Note that a trailing verb without a +leading slash is not permitted).

Examples: +projects +/projects +foo/{bar=*}/fizz/ +/foo/{bar=*}/fizz/:action

+

Templates use the syntax of the API platform; see +https://github.com/googleapis/api-common-protos/blob/master/google/api/http.proto +for details. A template consists of a sequence of literals, wildcards, and variable bindings, +where each binding can have a sub-path. A string representation can be parsed into an +instance of AbsoluteResourceTemplate, which can then be used to perform matching and instantiation.

+ + + + +

Methods

+ +
+
+
+ string +
+
+ __toString() + +

No description

+
+
+
+
+
+ string +
+
+ render(array $bindings) + +

Renders a resource template using the provided bindings.

+
+
+
+
+ bool +
+
+ matches(string $path) + +

Check if $path matches a resource string.

+
+
+
+
+ array +
+
+ match(string $path) + +

Matches a given $path to a resource template, and returns an array of bindings between +wildcards / variables in the template and values in the path. If $path does not match the +template, then a ValidationException is thrown.

+
+
+
+ + +

Details

+ +
+
+

+ + string + __toString() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

A string representation of the resource template

+ + + + +
+
+ +
+
+

+ + string + render(array $bindings) + +

+
+ + + +
+

Renders a resource template using the provided bindings.

+
+
+

Parameters

+ + + + + + + +
array$bindings

An array matching var names to binding strings.

+ + +

Return Value

+ + + + + + +
string

A rendered representation of this resource template.

+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + bool + matches(string $path) + +

+
+ + + +
+

Check if $path matches a resource string.

+
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + array + match(string $path) + +

+
+ + + +
+

Matches a given $path to a resource template, and returns an array of bindings between +wildcards / variables in the template and values in the path. If $path does not match the +template, then a ValidationException is thrown.

+
+
+

Parameters

+ + + + + + + +
string$path

A resource string.

+ + +

Return Value

+ + + + + + +
array

Array matching var names to binding values.

+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ResourceTemplate/Segment.html b/v1.34.1/Google/ApiCore/ResourceTemplate/Segment.html new file mode 100644 index 000000000..b4eff7a49 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ResourceTemplate/Segment.html @@ -0,0 +1,563 @@ + + + + + + Google\ApiCore\ResourceTemplate\Segment | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Segment (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Represents a segment in a resource template. This is used internally by RelativeResourceTemplate, +but is not intended for public use and may change without notice.

+ + +

Constants

+ + + + + + + + + + + + + + + + +
+ LITERAL_SEGMENT + +

+

+
+ WILDCARD_SEGMENT + +

+

+
+ DOUBLE_WILDCARD_SEGMENT + +

+

+
+ VARIABLE_SEGMENT + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(int $segmentType, string $value = null, string $key = null, RelativeResourceTemplate $template = null, string $separator = '/') + +

Segment constructor.

+
+
+
+
+ string +
+
+ __toString() + +

No description

+
+
+
+
+
+ bool +
+
+ matches(string $value) + +

Checks if $value matches this Segment.

+
+
+
+
+ int +
+
+ getSegmentType() + +

No description

+
+
+
+
+
+ string|null +
+
+ getKey() + +

No description

+
+
+
+
+
+ string|null +
+
+ getValue() + +

No description

+
+
+
+
+ +
+ getTemplate() + +

No description

+
+
+
+
+
+ string +
+
+ getSeparator() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(int $segmentType, string $value = null, string $key = null, RelativeResourceTemplate $template = null, string $separator = '/') + +

+
+ + + +
+

Segment constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
int$segmentType
string$value
string$key
RelativeResourceTemplate$template
string$separator

The separator that belongs at the end of a segment. Ending segments should use '/'.

+ + + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + string + __toString() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

A string representation of the segment.

+ + + + +
+
+ +
+
+

+ + bool + matches(string $value) + +

+
+ + + +
+

Checks if $value matches this Segment.

+
+
+

Parameters

+ + + + + + + +
string$value
+ + +

Return Value

+ + + + + + +
bool
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + int + getSegmentType() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int
+ + + + +
+
+ +
+
+

+ + string|null + getKey() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + string|null + getValue() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + RelativeResourceTemplate|null + getTemplate() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
RelativeResourceTemplate|null
+ + + + +
+
+ +
+
+

+ + string + getSeparator() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/RetrySettings.html b/v1.34.1/Google/ApiCore/RetrySettings.html new file mode 100644 index 000000000..86764444e --- /dev/null +++ b/v1.34.1/Google/ApiCore/RetrySettings.html @@ -0,0 +1,1200 @@ + + + + + + Google\ApiCore\RetrySettings | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RetrySettings (View source) +

+ + + + + +
+

The RetrySettings class is used to configure retrying and timeouts for RPCs.

This class can be passed as an optional parameter to RPC methods, or as part +of an optional array in the constructor of a client object. In addition, +many RPCs and API clients accept a PHP array in place of a RetrySettings +object. This can be used to change particular retry parameters without +needing to construct a complete RetrySettings object.

+

Constructing a RetrySettings object

+

See the RetrySettings constructor for documentation about parameters that +can be passed to RetrySettings.

+

Example of creating a RetrySettings object using the constructor:

+
$retrySettings = new RetrySettings([
+    'initialRetryDelayMillis' => 100,
+    'retryDelayMultiplier' => 1.3,
+    'maxRetryDelayMillis' => 60000,
+    'initialRpcTimeoutMillis' => 20000,
+    'rpcTimeoutMultiplier' => 1.0,
+    'maxRpcTimeoutMillis' => 20000,
+    'totalTimeoutMillis' => 600000,
+    'retryableCodes' => [ApiStatus::DEADLINE_EXCEEDED, ApiStatus::UNAVAILABLE],
+]);
+

It is also possible to create a new RetrySettings object from an existing +object using the {\Google\ApiCore\RetrySettings::with()} method.

+

Example modifying an existing RetrySettings object using with():

+
$newRetrySettings = $retrySettings->with([
+    'totalTimeoutMillis' => 700000,
+]);
+

Modifying the retry behavior of an RPC method

+

RetrySettings objects can be used to control retries for many RPC methods in +google-cloud-php. +The examples below make use of the +GroupServiceClient +from the Monitoring V3 API, +but they can be applied to other APIs in the +google-cloud-php repository.

+

It is possible to specify the retry behavior to be used by an RPC via the +retrySettings field in the optionalArgs parameter. The retrySettings +field can contain either a RetrySettings object, or a PHP array containing +the particular retry parameters to be updated.

+

Example of disabling retries for a single call to the +listGroups +method, and setting a custom timeout:

+
$result = $client->listGroups($name, [
+    'retrySettings' => [
+        'retriesEnabled' => false,
+        'noRetriesRpcTimeoutMillis' => 5000,
+    ]
+]);
+

Example of creating a new RetrySettings object and using it to override +the retry settings for a call to the +listGroups +method:

+
$customRetrySettings = new RetrySettings([
+    'initialRetryDelayMillis' => 100,
+    'retryDelayMultiplier' => 1.3,
+    'maxRetryDelayMillis' => 60000,
+    'initialRpcTimeoutMillis' => 20000,
+    'rpcTimeoutMultiplier' => 1.0,
+    'maxRpcTimeoutMillis' => 20000,
+    'totalTimeoutMillis' => 600000,
+    'retryableCodes' => [ApiStatus::DEADLINE_EXCEEDED, ApiStatus::UNAVAILABLE],
+]);
+
+$result = $client->listGroups($name, [
+    'retrySettings' => $customRetrySettings
+]);
+

Modifying the default retry behavior for RPC methods on a Client object

+

It is also possible to specify the retry behavior for RPC methods when +constructing a client object using the 'retrySettingsArray'. The examples +below again make use of the +GroupServiceClient +from the Monitoring V3 API, +but they can be applied to other APIs in the +google-cloud-php repository.

+

The GroupServiceClient object accepts an optional retrySettingsArray +parameter, which can be used to specify retry behavior for RPC methods +on the client. The retrySettingsArray accepts a PHP array in which keys +are the names of RPC methods on the client, and values are either a +RetrySettings object or a PHP array containing the particular retry +parameters to be updated.

+

Example updating the retry settings for four methods of GroupServiceClient:

+
use Google\Cloud\Monitoring\V3\GroupServiceClient;
+
+$customRetrySettings = new RetrySettings([
+    'initialRetryDelayMillis' => 100,
+    'retryDelayMultiplier' => 1.3,
+    'maxRetryDelayMillis' => 60000,
+    'initialRpcTimeoutMillis' => 20000,
+    'rpcTimeoutMultiplier' => 1.0,
+    'maxRpcTimeoutMillis' => 20000,
+    'totalTimeoutMillis' => 600000,
+    'retryableCodes' => [ApiStatus::DEADLINE_EXCEEDED, ApiStatus::UNAVAILABLE],
+]);
+
+$updatedCustomRetrySettings = $customRetrySettings->with([
+    'totalTimeoutMillis' => 700000
+]);
+
+$client = new GroupServiceClient([
+    'retrySettingsArray' => [
+        'listGroups' => ['retriesEnabled' => false],
+        'getGroup' => [
+            'initialRpcTimeoutMillis' => 10000,
+            'maxRpcTimeoutMillis' => 30000,
+            'totalTimeoutMillis' => 60000,
+        ],
+        'deleteGroup' => $customRetrySettings,
+        'updateGroup' => $updatedCustomRetrySettings
+    ],
+]);
+

Configure the use of logical timeout

+

To configure the use of a logical timeout, where a logical timeout is the +duration a method is given to complete one or more RPC attempts, with each +attempt using only the time remaining in the logical timeout, use +{\Google\ApiCore\RetrySettings::logicalTimeout()} combined with +{[\Google\ApiCore\RetrySettings::with()}.

+
$timeoutSettings](../../Google/ApiCore/RetrySettings.html) = RetrySettings::logicalTimeout(30000);
+
+$customRetrySettings = $customRetrySettings->with($timeoutSettings);
+
+$result = $client->listGroups($name, [
+    'retrySettings' => $customRetrySettings
+]);
+

{\Google\ApiCore\RetrySettings::logicalTimeout()} can also be used on a +method call independent of a RetrySettings instance.

+
$timeoutSettings = RetrySettings::logicalTimeout(30000);
+
+$result = $client->listGroups($name, [
+    'retrySettings' => $timeoutSettings
+]);

+ +

Traits

+ + +
+
+ +
+
+
+ +

Constants

+ + + + +
+ DEFAULT_MAX_RETRIES + +

+

+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $settings) + +

Constructs an instance.

+
+
+
+
+ static RetrySettings[] +
+
+ load(string $serviceName, array $clientConfig, bool $disableRetries = false) + +

Constructs an array mapping method names to CallSettings.

+
+
+
+
+ static  +
+
+ constructDefault() + +

No description

+
+
+
+
+ +
+ with(array $settings) + +

Creates a new instance of RetrySettings that updates the settings in the existing instance +with the settings specified in the $settings parameter.

+
+
+
+
+ static array +
+
+ logicalTimeout(int $timeout) + +

Creates an associative array of the {\Google\ApiCore\RetrySettings} timeout fields configured +with the given timeout specified in the $timeout parameter interpreted as a logical timeout.

+
+
+
+
+ bool +
+
+ retriesEnabled() + +

No description

+
+
+
+
+
+ int +
+
+ getNoRetriesRpcTimeoutMillis() + +

No description

+
+
+
+
+
+ int[] +
+
+ getRetryableCodes() + +

No description

+
+
+
+
+
+ int +
+
+ getInitialRetryDelayMillis() + +

No description

+
+
+
+
+
+ float +
+
+ getRetryDelayMultiplier() + +

No description

+
+
+
+
+
+ int +
+
+ getMaxRetryDelayMillis() + +

No description

+
+
+
+
+
+ int +
+
+ getInitialRpcTimeoutMillis() + +

No description

+
+
+
+
+
+ float +
+
+ getRpcTimeoutMultiplier() + +

No description

+
+
+
+
+
+ int +
+
+ getMaxRpcTimeoutMillis() + +

No description

+
+
+
+
+
+ int +
+
+ getTotalTimeoutMillis() + +

No description

+
+
+
+
+
+ +
+
+ getMaxRetries() + +

No description

+
+
+
+
+
+ +
+
+ getRetryFunction() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + + __construct(array $settings) + +

+
+ + + +
+

Constructs an instance.

+
+
+

Parameters

+ + + + + + + +
array$settings

{ +Required. Settings for configuring the retry behavior. All parameters are required except +$retriesEnabled and $noRetriesRpcTimeoutMillis, which are optional and have defaults +determined based on the other settings provided.

+
@type bool     $retriesEnabled Optional. Enables retries. If not specified, the value is
+               determined using the $retryableCodes setting. If $retryableCodes is empty,
+               then $retriesEnabled is set to false; otherwise, it is set to true.
+@type int      $noRetriesRpcTimeoutMillis Optional. The timeout of the rpc call to be used
+               if $retriesEnabled is false, in milliseconds. It not specified, the value
+               of $initialRpcTimeoutMillis is used.
+@type array    $retryableCodes The Status codes that are retryable. Each status should be
+               either one of the string constants defined on {\Google\ApiCore\ApiStatus}
+               or an integer constant defined on {\Google\Rpc\Code}.
+@type int      $initialRetryDelayMillis The initial delay of retry in milliseconds.
+@type int      $retryDelayMultiplier The exponential multiplier of retry delay.
+@type int      $maxRetryDelayMillis The max delay of retry in milliseconds.
+@type int      $initialRpcTimeoutMillis The initial timeout of rpc call in milliseconds.
+@type int      $rpcTimeoutMultiplier The exponential multiplier of rpc timeout.
+@type int      $maxRpcTimeoutMillis The max timeout of rpc call in milliseconds.
+@type int      $totalTimeoutMillis The max accumulative timeout in total.
+@type int      $maxRetries The max retries allowed for an operation.
+               Defaults to the value of the DEFAULT_MAX_RETRIES constant.
+               This option is experimental.
+@type callable $retryFunction This function will be used to decide if we should retry or not.
+               Callable signature: `function (Exception $e, array $options): bool`
+               This option is experimental.
+

}

+ + + + + +
+
+ +
+
+

+ + static RetrySettings[] + load(string $serviceName, array $clientConfig, bool $disableRetries = false) + +

+
+ + + +
+

Constructs an array mapping method names to CallSettings.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
string$serviceName

The fully-qualified name of this service, used as a key into +the client config file.

array$clientConfig

An array parsed from the standard API client config file.

bool$disableRetries

Disable retries in all loaded RetrySettings objects. Defaults to false.

+ + +

Return Value

+ + + + + + +
RetrySettings[]$retrySettings
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + static + constructDefault() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + RetrySettings + with(array $settings) + +

+
+ + + +
+

Creates a new instance of RetrySettings that updates the settings in the existing instance +with the settings specified in the $settings parameter.

+
+
+

Parameters

+ + + + + + + +
array$settings

{ +Settings for configuring the retry behavior. Supports all of the options supported by +the constructor; see {\Google\ApiCore\RetrySettings::__construct()}. All parameters +are optional - all unset parameters will default to the value in the existing instance. +}

+ + +

Return Value

+ + + + + + +
RetrySettings
+ + + + +
+
+ +
+
+

+ + static array + logicalTimeout(int $timeout) + +

+
+ + + +
+

Creates an associative array of the {\Google\ApiCore\RetrySettings} timeout fields configured +with the given timeout specified in the $timeout parameter interpreted as a logical timeout.

+
+
+

Parameters

+ + + + + + + +
int$timeout

The timeout in milliseconds to be used as a logical call timeout.

+ + +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + bool + retriesEnabled() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
bool

Returns true if retries are enabled, otherwise returns false.

+ + + + +
+
+ +
+
+

+ + int + getNoRetriesRpcTimeoutMillis() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The timeout of the rpc call to be used if $retriesEnabled is false, +in milliseconds.

+ + + + +
+
+ +
+
+

+ + int[] + getRetryableCodes() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int[]

Status codes to retry

+ + + + +
+
+ +
+
+

+ + int + getInitialRetryDelayMillis() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The initial retry delay in milliseconds. If $this->retriesEnabled() +is false, this setting is unused.

+ + + + +
+
+ +
+
+

+ + float + getRetryDelayMultiplier() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
float

The retry delay multiplier. If $this->retriesEnabled() +is false, this setting is unused.

+ + + + +
+
+ +
+
+

+ + int + getMaxRetryDelayMillis() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The maximum retry delay in milliseconds. If $this->retriesEnabled() +is false, this setting is unused.

+ + + + +
+
+ +
+
+

+ + int + getInitialRpcTimeoutMillis() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The initial rpc timeout in milliseconds. If $this->retriesEnabled() +is false, this setting is unused - use noRetriesRpcTimeoutMillis to +set the timeout in that case.

+ + + + +
+
+ +
+
+

+ + float + getRpcTimeoutMultiplier() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
float

The rpc timeout multiplier. If $this->retriesEnabled() +is false, this setting is unused.

+ + + + +
+
+ +
+
+

+ + int + getMaxRpcTimeoutMillis() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The maximum rpc timeout in milliseconds. If $this->retriesEnabled() +is false, this setting is unused - use noRetriesRpcTimeoutMillis to +set the timeout in that case.

+ + + + +
+
+ +
+
+

+ + int + getTotalTimeoutMillis() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The total time in milliseconds to spend on the call, including all +retry attempts and delays between attempts. If $this->retriesEnabled() +is false, this setting is unused - use noRetriesRpcTimeoutMillis to +set the timeout in that case.

+ + + + +
+
+ +
+
+

+ + + getMaxRetries() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + getRetryFunction() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Serializer.html b/v1.34.1/Google/ApiCore/Serializer.html new file mode 100644 index 000000000..1cfefe114 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Serializer.html @@ -0,0 +1,807 @@ + + + + + + Google\ApiCore\Serializer | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Serializer (View source) +

+ + + + + +
+

Collection of methods to help with serialization of protobuf objects

+ + +

Constants

+ + + + + + + + +
+ MAP_KEY_FIELD_NAME + +

+

+
+ MAP_VALUE_FIELD_NAME + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(array $fieldTransformers = [], array $messageTypeTransformers = [], array $decodeFieldTransformers = [], array $decodeMessageTypeTransformers = [], $customEncoders = []) + +

Serializer constructor.

+
+
+
+
+ array +
+
+ encodeMessage(mixed $message) + +

Encode protobuf message as a PHP array

+
+
+
+
+ mixed +
+
+ decodeMessage(mixed $message, array $data) + +

Decode PHP array into the specified protobuf message

+
+
+
+
+ static string +
+
+ serializeToJson(Message $message) + +

No description

+
+
+
+
+
+ static array +
+
+ serializeToPhpArray(Message $message) + +

No description

+
+
+
+
+
+ static array +
+
+ decodeMetadata(array $metadata) + +

Decode metadata received from gRPC status object

+
+
+
+
+ static array +
+
+ decodeAnyMessages(iterable $anyArray) + +

Decode an array of Any messages into a printable PHP array.

+
+
+
+
+ static string +
+
+ getGetter(string $name) + +

No description

+
+
+
+
+
+ static string +
+
+ getSetter(string $name) + +

No description

+
+
+
+
+
+ static string +
+
+ toSnakeCase(string $key) + +

Convert string from camelCase to snake_case

+
+
+
+
+ static string +
+
+ toCamelCase(string $key) + +

Convert string from snake_case to camelCase

+
+
+
+
+ static  +
+
+ loadKnownMetadataTypes() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $fieldTransformers = [], array $messageTypeTransformers = [], array $decodeFieldTransformers = [], array $decodeMessageTypeTransformers = [], $customEncoders = []) + +

+
+ + + +
+

Serializer constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
array$fieldTransformers

An array mapping field names to transformation functions

array$messageTypeTransformers

An array mapping message names to transformation functions

array$decodeFieldTransformers

An array mapping field names to transformation functions

array$decodeMessageTypeTransformers

An array mapping message names to transformation functions

$customEncoders
+ + + + + +
+
+ +
+
+

+ + array + encodeMessage(mixed $message) + +

+
+ + + +
+

Encode protobuf message as a PHP array

+
+
+

Parameters

+ + + + + + + +
mixed$message
+ + +

Return Value

+ + + + + + +
array
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + mixed + decodeMessage(mixed $message, array $data) + +

+
+ + + +
+

Decode PHP array into the specified protobuf message

+
+
+

Parameters

+ + + + + + + + + + + + +
mixed$message
array$data
+ + +

Return Value

+ + + + + + +
mixed
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + static string + serializeToJson(Message $message) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
Message$message
+ + +

Return Value

+ + + + + + +
string

Json representation of $message

+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + static array + serializeToPhpArray(Message $message) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
Message$message
+ + +

Return Value

+ + + + + + +
array

PHP array representation of $message

+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + static array + decodeMetadata(array $metadata) + +

+
+ + + +
+

Decode metadata received from gRPC status object

+
+
+

Parameters

+ + + + + + + +
array$metadata
+ + +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + static array + decodeAnyMessages(iterable $anyArray) + +

+
+ + + +
+

Decode an array of Any messages into a printable PHP array.

+
+
+

Parameters

+ + + + + + + +
iterable$anyArray
+ + +

Return Value

+ + + + + + +
array
+ + + + +
+
+ +
+
+

+ + static string + getGetter(string $name) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$name
+ + +

Return Value

+ + + + + + +
string

Getter function

+ + + + +
+
+ +
+
+

+ + static string + getSetter(string $name) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
string$name
+ + +

Return Value

+ + + + + + +
string

Setter function

+ + + + +
+
+ +
+
+

+ + static string + toSnakeCase(string $key) + +

+
+ + + +
+

Convert string from camelCase to snake_case

+
+
+

Parameters

+ + + + + + + +
string$key
+ + +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + static string + toCamelCase(string $key) + +

+
+ + + +
+

Convert string from snake_case to camelCase

+
+
+

Parameters

+ + + + + + + +
string$key
+ + +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + static + loadKnownMetadataTypes() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ServerStream.html b/v1.34.1/Google/ApiCore/ServerStream.html new file mode 100644 index 000000000..78929a0d4 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ServerStream.html @@ -0,0 +1,262 @@ + + + + + + Google\ApiCore\ServerStream | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ServerStream (View source) +

+ + + + + +
+

ServerStream is the response object from a server streaming API call.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(ServerStreamingCallInterface $serverStreamingCall, array $streamingDescriptor = []) + +

ServerStream constructor.

+
+
+
+
+ Generator|mixed +
+
+ readAll() + +

A generator which yields results from the server until the streaming call +completes. Throws an ApiException if the streaming call failed.

+
+
+
+ +
+ getServerStreamingCall() + +

Return the underlying call object.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(ServerStreamingCallInterface $serverStreamingCall, array $streamingDescriptor = []) + +

+
+ + + +
+

ServerStream constructor.

+
+
+

Parameters

+ + + + + + + + + + + + +
ServerStreamingCallInterface$serverStreamingCall

The server streaming call object

array$streamingDescriptor
+ + + + + +
+
+ +
+
+

+ + Generator|mixed + readAll() + +

+
+ + + +
+

A generator which yields results from the server until the streaming call +completes. Throws an ApiException if the streaming call failed.

+
+
+ +

Return Value

+ + + + + + +
Generator|mixed
+ + +

Exceptions

+ + + + + + +
ApiException
+ + + +
+
+ +
+
+

+ + ServerStreamingCallInterface + getServerStreamingCall() + +

+
+ + + +
+

Return the underlying call object.

+
+
+ +

Return Value

+ + + + + + +
ServerStreamingCallInterface
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ServerStreamingCallInterface.html b/v1.34.1/Google/ApiCore/ServerStreamingCallInterface.html new file mode 100644 index 000000000..885c95e49 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ServerStreamingCallInterface.html @@ -0,0 +1,500 @@ + + + + + + Google\ApiCore\ServerStreamingCallInterface | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

interface + ServerStreamingCallInterface (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ void +
+
+ start(mixed $data, array $metadata = [], array $options = []) + +

Start the call.

+
+
+
+
+ mixed +
+
+ responses() + +

No description

+
+
+
+
+
+ stdClass +
+
+ getStatus() + +

Return the status of the server stream.

+
+
+
+
+ mixed +
+
+ getMetadata() + +

No description

+
+
+
+
+
+ mixed +
+
+ getTrailingMetadata() + +

No description

+
+
+
+
+
+ string +
+
+ getPeer() + +

No description

+
+
+
+
+
+ void +
+
+ cancel() + +

Cancels the call.

+
+
+
+
+ void +
+
+ setCallCredentials(mixed $call_credentials) + +

Set the CallCredentials for the underlying Call.

+
+
+
+ + +

Details

+ +
+
+

+ + void + start(mixed $data, array $metadata = [], array $options = []) + +

+
+ + + +
+

Start the call.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
mixed$data

The data to send

array$metadata

Metadata to send with the call, if applicable +(optional)

array$options

An array of options, possible keys: +'flags' => a number (optional)

+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + mixed + responses() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

An iterator of response values.

+ + + + +
+
+ +
+
+

+ + stdClass + getStatus() + +

+
+ + + +
+

Return the status of the server stream.

+
+
+ +

Return Value

+ + + + + + +
stdClass

The API status.

+ + + + +
+
+ +
+
+

+ + mixed + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The metadata sent by the server.

+ + + + +
+
+ +
+
+

+ + mixed + getTrailingMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The trailing metadata sent by the server.

+ + + + +
+
+ +
+
+

+ + string + getPeer() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The URI of the endpoint.

+ + + + +
+
+ +
+
+

+ + void + cancel() + +

+
+ + + +
+

Cancels the call.

+
+
+ +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setCallCredentials(mixed $call_credentials) + +

+
+ + + +
+

Set the CallCredentials for the underlying Call.

+
+
+

Parameters

+ + + + + + + +
mixed$call_credentials

The CallCredentials object

+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ServiceAddressTrait.html b/v1.34.1/Google/ApiCore/ServiceAddressTrait.html new file mode 100644 index 000000000..206a57dab --- /dev/null +++ b/v1.34.1/Google/ApiCore/ServiceAddressTrait.html @@ -0,0 +1,123 @@ + + + + + + Google\ApiCore\ServiceAddressTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + ServiceAddressTrait (View source) +

+ + +

+ deprecated + + + + +

+ + + +
+

Provides helper methods for service address handling.

+ +

+ + + (dwsupplee) + serviceAddress is deprecated now in favor of +apiEndpoint. Rename the trait/method in our next major release. + +

+ + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing.html b/v1.34.1/Google/ApiCore/Testing.html new file mode 100644 index 000000000..f1274a1c8 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing.html @@ -0,0 +1,196 @@ + + + + + + Google\ApiCore\Testing | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+ +
+
+ + +
+ +

The MockBidiStreamingCall class is used to mock out the \Grpc\BidiStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BidiStreamingCall.php)

+
+
+ +

The MockClientStreamingCall class is used to mock out the \Grpc\ClientStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ClientStreamingCall.php)

+
+ +
+ +

Generated from protobuf message google.apicore.testing.MockRequest

+
+
+ +

Generated from protobuf message google.apicore.testing.MockRequestBody

+
+
+ +

Generated from protobuf message google.apicore.testing.MockResponse

+
+
+ +

The MockServerStreamingCall class is used to mock out the \Grpc\ServerStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ServerStreamingCall.php)

+
+
+ +
+
+
+ +

The MockStubTrait is used by generated mock stub classes which extent \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +It provides functionality to add responses, get received calls, and overrides the _simpleRequest +method so that the elements of $responses are returned instead of making a call to the API.

+
+
+ +
+
+
+ +

The MockUnaryCall class is used to mock out the \Grpc\UnaryCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/UnaryCall.php)

+
+ + +
+ +

Class ReceivedRequest used to hold the function name and request object of a call +make to a mock gRPC stub.

+
+ +
+ + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/GeneratedTest.html b/v1.34.1/Google/ApiCore/Testing/GeneratedTest.html new file mode 100644 index 000000000..80853ba12 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/GeneratedTest.html @@ -0,0 +1,174 @@ + + + + + + Google\ApiCore\Testing\GeneratedTest | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

abstract class + GeneratedTest extends TestCase (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ +
+
+ assertProtobufEquals(mixed $expected, mixed $actual) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + assertProtobufEquals(mixed $expected, mixed $actual) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
mixed$expected
mixed$actual
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MessageAwareArrayComparator.html b/v1.34.1/Google/ApiCore/Testing/MessageAwareArrayComparator.html new file mode 100644 index 000000000..4e93b81e0 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MessageAwareArrayComparator.html @@ -0,0 +1,159 @@ + + + + + + Google\ApiCore\Testing\MessageAwareArrayComparator | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MessageAwareArrayComparator extends ArrayComparator (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ +
+
+ __construct() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MessageAwareExporter.html b/v1.34.1/Google/ApiCore/Testing/MessageAwareExporter.html new file mode 100644 index 000000000..aad78fbec --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MessageAwareExporter.html @@ -0,0 +1,187 @@ + + + + + + Google\ApiCore\Testing\MessageAwareExporter | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MessageAwareExporter extends Exporter (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ string +
+
+ shortenedExport(mixed $value) + +

Exports a value into a single-line string

+
+
+
+ + +

Details

+ +
+
+

+ + string + shortenedExport(mixed $value) + +

+
+ + + +
+

Exports a value into a single-line string

+
+
+

Parameters

+ + + + + + + +
mixed$value
+ + +

Return Value

+ + + + + + +
string
+ + + +

See also

+ + + + + + +
+ Exporter::export +
+ + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockBidiStreamingCall.html b/v1.34.1/Google/ApiCore/Testing/MockBidiStreamingCall.html new file mode 100644 index 000000000..a42a1f8c4 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockBidiStreamingCall.html @@ -0,0 +1,480 @@ + + + + + + Google\ApiCore\Testing\MockBidiStreamingCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockBidiStreamingCall extends BidiStreamingCall (View source) +

+ + + + + + + + +
internal 
+   + + +
+

The MockBidiStreamingCall class is used to mock out the \Grpc\BidiStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BidiStreamingCall.php)

+ +

Traits

+ + +
+ +
+ + + +

Methods

+ +
+
+
+ +
+
+ deserializeMessage(mixed $message, mixed $deserialize) + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $responses, mixed|null $deserialize = null, stdClass $status = null) + +

MockBidiStreamingCall constructor.

+
+
+
+
+ mixed|null +
+
+ read() + +

No description

+
+
+
+
+
+ stdClass|null +
+
+ getStatus() + +

No description

+
+
+
+
+
+ +
+
+ write(Message|mixed $request, array $options = []) + +

Save the request object, to be retrieved via getReceivedCalls()

+
+
+
+
+ +
+
+ writesDone() + +

Set writesDone to true

+
+
+
+
+ array +
+
+ popReceivedCalls() + +

Return a list of calls made to write(), and clear $receivedFuncCalls.

+
+
+
+ + +

Details

+ +
+
+

+ + protected + deserializeMessage(mixed $message, mixed $deserialize) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
mixed$message
mixed$deserialize
+ + + + + +
+
+ +
+
+

+ + + __construct(array $responses, mixed|null $deserialize = null, stdClass $status = null) + +

+
+ + + +
+

MockBidiStreamingCall constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
array$responses

A list of response objects.

mixed|null$deserialize

An optional deserialize method for the response object.

stdClass$status

An optional status object. If set to null, a status of OK is used.

+ + + + + +
+
+ +
+
+

+ + mixed|null + read() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed|null
+ + +

Exceptions

+ + + + + + +
ApiException
+ + + +
+
+ +
+
+

+ + stdClass|null + getStatus() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
stdClass|null
+ + +

Exceptions

+ + + + + + +
ApiException
+ + + +
+
+ +
+
+

+ + + write(Message|mixed $request, array $options = []) + +

+
+ + + +
+

Save the request object, to be retrieved via getReceivedCalls()

+
+
+

Parameters

+ + + + + + + + + + + + +
Message|mixed$request

The request object

array$options

An array of options.

+ + + +

Exceptions

+ + + + + + +
ApiException
+ + + +
+
+ +
+
+

+ + + writesDone() + +

+
+ + + +
+

Set writesDone to true

+
+
+ + + + +
+
+ +
+
+

+ + array + popReceivedCalls() + +

+
+ + + +
+

Return a list of calls made to write(), and clear $receivedFuncCalls.

+
+
+ +

Return Value

+ + + + + + +
array

An array of received requests

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockClientStreamingCall.html b/v1.34.1/Google/ApiCore/Testing/MockClientStreamingCall.html new file mode 100644 index 000000000..9893d8414 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockClientStreamingCall.html @@ -0,0 +1,324 @@ + + + + + + Google\ApiCore\Testing\MockClientStreamingCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockClientStreamingCall extends ClientStreamingCall (View source) +

+ + + + + + + + +
internal 
+   + + +
+

The MockClientStreamingCall class is used to mock out the \Grpc\ClientStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ClientStreamingCall.php)

The MockClientStreamingCall object is constructed with a response object, an optional deserialize +method, and an optional status. The response object and status are returned immediately from the +wait() method. It also provides a write() method that accepts request objects, and a +getAllRequests() method that returns all request objects passed to write(), and clears them.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(Message|string $response, callable|array|null $deserialize = null, stdClass $status = null) + +

MockClientStreamingCall constructor.

+
+
+
+
+ array +
+
+ wait() + +

Immediately return the preset response object and status.

+
+
+
+
+ +
+
+ write(Message|mixed $request, array $options = []) + +

Save the request object, to be retrieved via getReceivedCalls()

+
+
+
+
+ array +
+
+ popReceivedCalls() + +

Return a list of calls made to write(), and clear $receivedFuncCalls.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(Message|string $response, callable|array|null $deserialize = null, stdClass $status = null) + +

+
+ + + +
+

MockClientStreamingCall constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
Message|string$response

The response object.

callable|array|null$deserialize

An optional deserialize method for the response object.

stdClass$status

An optional status object. If set to null, a status of OK is used.

+ + + + + +
+
+ +
+
+

+ + array + wait() + +

+
+ + + +
+

Immediately return the preset response object and status.

+
+
+ +

Return Value

+ + + + + + +
array

The response object and status.

+ + + + +
+
+ +
+
+

+ + + write(Message|mixed $request, array $options = []) + +

+
+ + + +
+

Save the request object, to be retrieved via getReceivedCalls()

+
+
+

Parameters

+ + + + + + + + + + + + +
Message|mixed$request

The request object

array$options

An array of options

+ + + +

Exceptions

+ + + + + + +
ApiException
+ + + +
+
+ +
+
+

+ + array + popReceivedCalls() + +

+
+ + + +
+

Return a list of calls made to write(), and clear $receivedFuncCalls.

+
+
+ +

Return Value

+ + + + + + +
array

An array of received requests

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockGrpcTransport.html b/v1.34.1/Google/ApiCore/Testing/MockGrpcTransport.html new file mode 100644 index 000000000..225372b2d --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockGrpcTransport.html @@ -0,0 +1,924 @@ + + + + + + Google\ApiCore\Testing\MockGrpcTransport | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockGrpcTransport extends GrpcTransport (View source) +

+ + + + + + + + +
internal 
+   + + + +

Traits

+ + +
+
+ +
+
+
+ +

Provides helper methods for gRPC support.

+
+
+
+ ServiceAddressTrait deprecated
+

Provides helper methods for service address handling.

+
+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ +
+
+ __construct(mixed $mockCall = null) + +

No description

+
+
+
+
+
+ static GrpcTransport +
+
+ build(string $apiEndpoint, array $config = []) + +

Builds a GrpcTransport.

+ +
+
+ +
+ startBidiStreamingCall(Call $call, array $options) + +

Starts a bidi streaming call.

+ +
+
+ +
+ startClientStreamingCall(Call $call, array $options) + +

Starts a client streaming call.

+ +
+
+ +
+ startServerStreamingCall(Call $call, array $options) + +

Starts a server streaming call.

+ +
+
+
+ PromiseInterface +
+
+ startUnaryCall(Call $call, array $options) + +

Returns a promise used to execute network requests.

+ +
+
+
+ +
+
+ _simpleRequest(string $method, array $arguments, callable $deserialize, array $metadata = [], array $options = []) + +

No description

+
+
+
+
+
+ +
+
+ _clientStreamRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

No description

+
+
+
+
+
+ +
+
+ _serverStreamRequest(string $method, array $arguments, callable $deserialize, array $metadata = [], array $options = []) + +

No description

+
+
+
+
+
+ +
+
+ _bidiRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

No description

+
+
+
+
+
+ +
+
+ getRequestArguments() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + + __construct(mixed $mockCall = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
mixed$mockCall
+ + + + + +
+
+ +
+
+

+ + static GrpcTransport + build(string $apiEndpoint, array $config = []) + +

+
+ + + +
+

Builds a GrpcTransport.

+
+
+

Parameters

+ + + + + + + + + + + + +
string$apiEndpoint

The address of the API remote host, for example "example.googleapis.com. May also +include the port, for example "example.googleapis.com:443"

array$config

{ +Config options used to construct the gRPC transport.

+

@type array $stubOpts Options used to construct the gRPC stub (see +https://grpc.github.io/grpc/core/group__grpc__arg__keys.html). +@type Channel $channel Grpc channel to be used. +@type Interceptor[]|UnaryInterceptorInterface[] $interceptors EXPERIMENTAL +Interceptors used to intercept RPC invocations before a call starts. +Please note that implementations of +{\Google\ApiCore\Transport\Grpc\UnaryInterceptorInterface} are +considered deprecated and support will be removed in a future +release. To prepare for this, please take the time to convert +UnaryInterceptorInterface implementations over to a class which +extends {\Google\ApiCore\Transport\Grpc\Interceptor}. +@type callable $clientCertSource A callable which returns the client cert as a string. +}

+ + +

Return Value

+ + + + + + +
GrpcTransport
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + BidiStream + startBidiStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a bidi streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
BidiStream
+ + + + +
+
+ +
+
+

+ + ClientStream + startClientStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a client streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ClientStream
+ + + + +
+
+ +
+
+

+ + ServerStream + startServerStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a server streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ServerStream
+ + + + +
+
+ +
+
+

+ + PromiseInterface + startUnaryCall(Call $call, array $options) + +

+
+ + + +
+

Returns a promise used to execute network requests.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + protected + _simpleRequest(string $method, array $arguments, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method
array$arguments
callable$deserialize
array$metadata
array$options
+ + + + + +
+
+ +
+
+

+ + protected + _clientStreamRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$method
callable$deserialize
array$metadata
array$options
+ + + + + +
+
+ +
+
+

+ + protected + _serverStreamRequest(string $method, array $arguments, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method
array$arguments
callable$deserialize
array$metadata
array$options
+ + + + + +
+
+ +
+
+

+ + protected + _bidiRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$method
callable$deserialize
array$metadata
array$options
+ + + + + +
+
+ +
+
+

+ + + getRequestArguments() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockRequest.html b/v1.34.1/Google/ApiCore/Testing/MockRequest.html new file mode 100644 index 000000000..76a787b5c --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockRequest.html @@ -0,0 +1,384 @@ + + + + + + Google\ApiCore\Testing\MockRequest | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockRequest extends Message (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Generated from protobuf message google.apicore.testing.MockRequest

+ + + +

Properties

+ + + + + + + + + + + + + + +
+ protected + + $page_token

Generated from protobuf field string page_token = 1;

+ protected + + $page_size

Generated from protobuf field uint64 page_size = 2;

+ + +

Methods

+ +
+
+
+ +
+
+ __construct(array $data = NULL) + +

Constructor.

+
+
+
+
+ string +
+
+ getPageToken() + +

Generated from protobuf field string page_token = 1;

+
+
+
+
+ $this +
+
+ setPageToken(string $var) + +

Generated from protobuf field string page_token = 1;

+
+
+
+
+ int|string +
+
+ getPageSize() + +

Generated from protobuf field uint64 page_size = 2;

+
+
+
+
+ $this +
+
+ setPageSize(int|string $var) + +

Generated from protobuf field uint64 page_size = 2;

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $data = NULL) + +

+
+ + + +
+

Constructor.

+
+
+

Parameters

+ + + + + + + +
array$data

{ +Optional. Data for populating the Message object.

+
@type string $page_token
+@type int|string $page_size
+

}

+ + + + + +
+
+ +
+
+

+ + string + getPageToken() + +

+
+ + + +
+

Generated from protobuf field string page_token = 1;

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + $this + setPageToken(string $var) + +

+
+ + + +
+

Generated from protobuf field string page_token = 1;

+
+
+

Parameters

+ + + + + + + +
string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + int|string + getPageSize() + +

+
+ + + +
+

Generated from protobuf field uint64 page_size = 2;

+
+
+ +

Return Value

+ + + + + + +
int|string
+ + + + +
+
+ +
+
+

+ + $this + setPageSize(int|string $var) + +

+
+ + + +
+

Generated from protobuf field uint64 page_size = 2;

+
+
+

Parameters

+ + + + + + + +
int|string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockRequestBody.html b/v1.34.1/Google/ApiCore/Testing/MockRequestBody.html new file mode 100644 index 000000000..c8901fb81 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockRequestBody.html @@ -0,0 +1,2944 @@ + + + + + + Google\ApiCore\Testing\MockRequestBody | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockRequestBody extends Message (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Generated from protobuf message google.apicore.testing.MockRequestBody

+ + + +

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ protected + + $name

Generated from protobuf field string name = 1;

+ protected + + $number

Generated from protobuf field uint64 number = 2;

+ protected + + $nested_message

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

+ protected + + $bytes_value

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+ protected + + $duration_value

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

+ protected + + $field_mask

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

+ protected + + $int64_value

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+ protected + + $list_value

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

+ protected + + $string_value

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+ protected + + $struct_value

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+ protected + + $timestamp_value

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

+ protected + + $value_value

Generated from protobuf field .google.protobuf.Value value_value = 13;

+ protected + + $oneof_field
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(array $data = NULL) + +

Constructor.

+
+
+
+
+ string +
+
+ getName() + +

Generated from protobuf field string name = 1;

+
+
+
+
+ $this +
+
+ setName(string $var) + +

Generated from protobuf field string name = 1;

+
+
+
+
+ int|string +
+
+ getNumber() + +

Generated from protobuf field uint64 number = 2;

+
+
+
+
+ $this +
+
+ setNumber(int|string $var) + +

Generated from protobuf field uint64 number = 2;

+
+
+
+
+ RepeatedField +
+
+ getRepeatedField() + +

Generated from protobuf field repeated string repeated_field = 3;

+
+
+
+
+ $this +
+
+ setRepeatedField(string[]|RepeatedField $var) + +

Generated from protobuf field repeated string repeated_field = 3;

+
+
+
+ +
+ getNestedMessage() + +

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

+
+
+
+
+ +
+
+ hasNestedMessage() + +

No description

+
+
+
+
+
+ +
+
+ clearNestedMessage() + +

No description

+
+
+
+
+
+ $this +
+
+ setNestedMessage(MockRequestBody $var) + +

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

+
+
+
+
+ BytesValue +
+
+ getBytesValue() + +

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+
+
+
+
+ +
+
+ hasBytesValue() + +

No description

+
+
+
+
+
+ +
+
+ clearBytesValue() + +

No description

+
+
+
+
+
+ string|null +
+
+ getBytesValueUnwrapped() + +

Returns the unboxed value from getBytesValue()

+
+
+
+
+ $this +
+
+ setBytesValue(BytesValue $var) + +

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+
+
+
+
+ $this +
+
+ setBytesValueUnwrapped(string|null $var) + +

Sets the field by wrapping a primitive type in a Google\Protobuf\BytesValue object.

+
+
+
+
+ Duration +
+
+ getDurationValue() + +

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

+
+
+
+
+ +
+
+ hasDurationValue() + +

No description

+
+
+
+
+
+ +
+
+ clearDurationValue() + +

No description

+
+
+
+
+
+ $this +
+
+ setDurationValue(Duration $var) + +

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

+
+
+
+
+ FieldMask +
+
+ getFieldMask() + +

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

+
+
+
+
+ +
+
+ hasFieldMask() + +

No description

+
+
+
+
+
+ +
+
+ clearFieldMask() + +

No description

+
+
+
+
+
+ $this +
+
+ setFieldMask(FieldMask $var) + +

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

+
+
+
+
+ Int64Value +
+
+ getInt64Value() + +

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+
+
+
+
+ +
+
+ hasInt64Value() + +

No description

+
+
+
+
+
+ +
+
+ clearInt64Value() + +

No description

+
+
+
+
+
+ int|string|null +
+
+ getInt64ValueUnwrapped() + +

Returns the unboxed value from getInt64Value()

+
+
+
+
+ $this +
+
+ setInt64Value(Int64Value $var) + +

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+
+
+
+
+ $this +
+
+ setInt64ValueUnwrapped(int|string|null $var) + +

Sets the field by wrapping a primitive type in a Google\Protobuf\Int64Value object.

+
+
+
+
+ ListValue +
+
+ getListValue() + +

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

+
+
+
+
+ +
+
+ hasListValue() + +

No description

+
+
+
+
+
+ +
+
+ clearListValue() + +

No description

+
+
+
+
+
+ $this +
+
+ setListValue(ListValue $var) + +

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

+
+
+
+
+ StringValue +
+
+ getStringValue() + +

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+
+
+
+
+ +
+
+ hasStringValue() + +

No description

+
+
+
+
+
+ +
+
+ clearStringValue() + +

No description

+
+
+
+
+
+ string|null +
+
+ getStringValueUnwrapped() + +

Returns the unboxed value from getStringValue()

+
+
+
+
+ $this +
+
+ setStringValue(StringValue $var) + +

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+
+
+
+
+ $this +
+
+ setStringValueUnwrapped(string|null $var) + +

Sets the field by wrapping a primitive type in a Google\Protobuf\StringValue object.

+
+
+
+
+ Struct +
+
+ getStructValue() + +

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+
+
+
+
+ +
+
+ hasStructValue() + +

No description

+
+
+
+
+
+ +
+
+ clearStructValue() + +

No description

+
+
+
+
+
+ $this +
+
+ setStructValue(Struct $var) + +

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+
+
+
+
+ Timestamp +
+
+ getTimestampValue() + +

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

+
+
+
+
+ +
+
+ hasTimestampValue() + +

No description

+
+
+
+
+
+ +
+
+ clearTimestampValue() + +

No description

+
+
+
+
+
+ $this +
+
+ setTimestampValue(Timestamp $var) + +

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

+
+
+
+
+ Value +
+
+ getValueValue() + +

Generated from protobuf field .google.protobuf.Value value_value = 13;

+
+
+
+
+ +
+
+ hasValueValue() + +

No description

+
+
+
+
+
+ +
+
+ clearValueValue() + +

No description

+
+
+
+
+
+ $this +
+
+ setValueValue(Value $var) + +

Generated from protobuf field .google.protobuf.Value value_value = 13;

+
+
+
+
+ string +
+
+ getField1() + +

Generated from protobuf field string field_1 = 14;

+
+
+
+
+ +
+
+ hasField1() + +

No description

+
+
+
+
+
+ $this +
+
+ setField1(string $var) + +

Generated from protobuf field string field_1 = 14;

+
+
+
+
+ string +
+
+ getField2() + +

Generated from protobuf field string field_2 = 15;

+
+
+
+
+ +
+
+ hasField2() + +

No description

+
+
+
+
+
+ $this +
+
+ setField2(string $var) + +

Generated from protobuf field string field_2 = 15;

+
+
+
+
+ string +
+
+ getField3() + +

Generated from protobuf field string field_3 = 16;

+
+
+
+
+ +
+
+ hasField3() + +

No description

+
+
+
+
+
+ $this +
+
+ setField3(string $var) + +

Generated from protobuf field string field_3 = 16;

+
+
+
+
+ string +
+
+ getOneofField() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $data = NULL) + +

+
+ + + +
+

Constructor.

+
+
+

Parameters

+ + + + + + + +
array$data

{ +Optional. Data for populating the Message object.

+
@type string $name
+@type int|string $number
+@type string[]|\Google\Protobuf\Internal\RepeatedField $repeated_field
+@type \Google\ApiCore\Testing\MockRequestBody $nested_message
+@type \Google\Protobuf\BytesValue $bytes_value
+@type \Google\Protobuf\Duration $duration_value
+@type \Google\Protobuf\FieldMask $field_mask
+@type \Google\Protobuf\Int64Value $int64_value
+@type \Google\Protobuf\ListValue $list_value
+@type \Google\Protobuf\StringValue $string_value
+@type \Google\Protobuf\Struct $struct_value
+@type \Google\Protobuf\Timestamp $timestamp_value
+@type \Google\Protobuf\Value $value_value
+@type string $field_1
+@type string $field_2
+@type string $field_3
+

}

+ + + + + +
+
+ +
+
+

+ + string + getName() + +

+
+ + + +
+

Generated from protobuf field string name = 1;

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + $this + setName(string $var) + +

+
+ + + +
+

Generated from protobuf field string name = 1;

+
+
+

Parameters

+ + + + + + + +
string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + int|string + getNumber() + +

+
+ + + +
+

Generated from protobuf field uint64 number = 2;

+
+
+ +

Return Value

+ + + + + + +
int|string
+ + + + +
+
+ +
+
+

+ + $this + setNumber(int|string $var) + +

+
+ + + +
+

Generated from protobuf field uint64 number = 2;

+
+
+

Parameters

+ + + + + + + +
int|string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + RepeatedField + getRepeatedField() + +

+
+ + + +
+

Generated from protobuf field repeated string repeated_field = 3;

+
+
+ +

Return Value

+ + + + + + +
RepeatedField
+ + + + +
+
+ +
+
+

+ + $this + setRepeatedField(string[]|RepeatedField $var) + +

+
+ + + +
+

Generated from protobuf field repeated string repeated_field = 3;

+
+
+

Parameters

+ + + + + + + +
string[]|RepeatedField$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + MockRequestBody + getNestedMessage() + +

+
+ + + +
+

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

+
+
+ +

Return Value

+ + + + + + +
MockRequestBody
+ + + + +
+
+ +
+
+

+ + + hasNestedMessage() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearNestedMessage() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setNestedMessage(MockRequestBody $var) + +

+
+ + + +
+

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

+
+
+

Parameters

+ + + + + + + +
MockRequestBody$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + BytesValue + getBytesValue() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+
+
+ +

Return Value

+ + + + + + +
BytesValue
+ + + + +
+
+ +
+
+

+ + + hasBytesValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearBytesValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + string|null + getBytesValueUnwrapped() + +

+
+ + + +
+

Returns the unboxed value from getBytesValue()

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+
+
+ +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + $this + setBytesValue(BytesValue $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+
+
+

Parameters

+ + + + + + + +
BytesValue$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + $this + setBytesValueUnwrapped(string|null $var) + +

+
+ + + +
+

Sets the field by wrapping a primitive type in a Google\Protobuf\BytesValue object.

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+
+
+

Parameters

+ + + + + + + +
string|null$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + Duration + getDurationValue() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

+
+
+ +

Return Value

+ + + + + + +
Duration
+ + + + +
+
+ +
+
+

+ + + hasDurationValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearDurationValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setDurationValue(Duration $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

+
+
+

Parameters

+ + + + + + + +
Duration$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + FieldMask + getFieldMask() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

+
+
+ +

Return Value

+ + + + + + +
FieldMask
+ + + + +
+
+ +
+
+

+ + + hasFieldMask() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearFieldMask() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setFieldMask(FieldMask $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

+
+
+

Parameters

+ + + + + + + +
FieldMask$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + Int64Value + getInt64Value() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+
+
+ +

Return Value

+ + + + + + +
Int64Value
+ + + + +
+
+ +
+
+

+ + + hasInt64Value() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearInt64Value() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + int|string|null + getInt64ValueUnwrapped() + +

+
+ + + +
+

Returns the unboxed value from getInt64Value()

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+
+
+ +

Return Value

+ + + + + + +
int|string|null
+ + + + +
+
+ +
+
+

+ + $this + setInt64Value(Int64Value $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+
+
+

Parameters

+ + + + + + + +
Int64Value$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + $this + setInt64ValueUnwrapped(int|string|null $var) + +

+
+ + + +
+

Sets the field by wrapping a primitive type in a Google\Protobuf\Int64Value object.

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+
+
+

Parameters

+ + + + + + + +
int|string|null$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + ListValue + getListValue() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

+
+
+ +

Return Value

+ + + + + + +
ListValue
+ + + + +
+
+ +
+
+

+ + + hasListValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearListValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setListValue(ListValue $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

+
+
+

Parameters

+ + + + + + + +
ListValue$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + StringValue + getStringValue() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+
+
+ +

Return Value

+ + + + + + +
StringValue
+ + + + +
+
+ +
+
+

+ + + hasStringValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearStringValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + string|null + getStringValueUnwrapped() + +

+
+ + + +
+

Returns the unboxed value from getStringValue()

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+
+
+ +

Return Value

+ + + + + + +
string|null
+ + + + +
+
+ +
+
+

+ + $this + setStringValue(StringValue $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+
+
+

Parameters

+ + + + + + + +
StringValue$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + $this + setStringValueUnwrapped(string|null $var) + +

+
+ + + +
+

Sets the field by wrapping a primitive type in a Google\Protobuf\StringValue object.

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+
+
+

Parameters

+ + + + + + + +
string|null$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + Struct + getStructValue() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+
+
+ +

Return Value

+ + + + + + +
Struct
+ + + + +
+
+ +
+
+

+ + + hasStructValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearStructValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setStructValue(Struct $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+
+
+

Parameters

+ + + + + + + +
Struct$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + Timestamp + getTimestampValue() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

+
+
+ +

Return Value

+ + + + + + +
Timestamp
+ + + + +
+
+ +
+
+

+ + + hasTimestampValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearTimestampValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setTimestampValue(Timestamp $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

+
+
+

Parameters

+ + + + + + + +
Timestamp$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + Value + getValueValue() + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Value value_value = 13;

+
+
+ +

Return Value

+ + + + + + +
Value
+ + + + +
+
+ +
+
+

+ + + hasValueValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + clearValueValue() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setValueValue(Value $var) + +

+
+ + + +
+

Generated from protobuf field .google.protobuf.Value value_value = 13;

+
+
+

Parameters

+ + + + + + + +
Value$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + string + getField1() + +

+
+ + + +
+

Generated from protobuf field string field_1 = 14;

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + + hasField1() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setField1(string $var) + +

+
+ + + +
+

Generated from protobuf field string field_1 = 14;

+
+
+

Parameters

+ + + + + + + +
string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + string + getField2() + +

+
+ + + +
+

Generated from protobuf field string field_2 = 15;

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + + hasField2() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setField2(string $var) + +

+
+ + + +
+

Generated from protobuf field string field_2 = 15;

+
+
+

Parameters

+ + + + + + + +
string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + string + getField3() + +

+
+ + + +
+

Generated from protobuf field string field_3 = 16;

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + + hasField3() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + $this + setField3(string $var) + +

+
+ + + +
+

Generated from protobuf field string field_3 = 16;

+
+
+

Parameters

+ + + + + + + +
string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + string + getOneofField() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockResponse.html b/v1.34.1/Google/ApiCore/Testing/MockResponse.html new file mode 100644 index 000000000..50fdd056c --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockResponse.html @@ -0,0 +1,678 @@ + + + + + + Google\ApiCore\Testing\MockResponse | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockResponse extends Message (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Generated from protobuf message google.apicore.testing.MockResponse

+ + + +

Properties

+ + + + + + + + + + + + + + + + + + + + +
+ protected + + $name

Generated from protobuf field string name = 1;

+ protected + + $number

Generated from protobuf field uint64 number = 2;

+ protected + + $next_page_token

Generated from protobuf field string next_page_token = 4;

+ + +

Methods

+ +
+
+
+ +
+
+ __construct(array $data = NULL) + +

Constructor.

+
+
+
+
+ string +
+
+ getName() + +

Generated from protobuf field string name = 1;

+
+
+
+
+ $this +
+
+ setName(string $var) + +

Generated from protobuf field string name = 1;

+
+
+
+
+ int|string +
+
+ getNumber() + +

Generated from protobuf field uint64 number = 2;

+
+
+
+
+ $this +
+
+ setNumber(int|string $var) + +

Generated from protobuf field uint64 number = 2;

+
+
+
+
+ RepeatedField +
+
+ getResourcesList() + +

Generated from protobuf field repeated string resources_list = 3;

+
+
+
+
+ $this +
+
+ setResourcesList(string[]|RepeatedField $var) + +

Generated from protobuf field repeated string resources_list = 3;

+
+
+
+
+ string +
+
+ getNextPageToken() + +

Generated from protobuf field string next_page_token = 4;

+
+
+
+
+ $this +
+
+ setNextPageToken(string $var) + +

Generated from protobuf field string next_page_token = 4;

+
+
+
+
+ MapField +
+
+ getResourcesMap() + +

Generated from protobuf field map<string, string> resources_map = 5;

+
+
+
+
+ $this +
+
+ setResourcesMap(array|MapField $var) + +

Generated from protobuf field map<string, string> resources_map = 5;

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(array $data = NULL) + +

+
+ + + +
+

Constructor.

+
+
+

Parameters

+ + + + + + + +
array$data

{ +Optional. Data for populating the Message object.

+
@type string $name
+@type int|string $number
+@type string[]|\Google\Protobuf\Internal\RepeatedField $resources_list
+@type string $next_page_token
+@type array|\Google\Protobuf\Internal\MapField $resources_map
+

}

+ + + + + +
+
+ +
+
+

+ + string + getName() + +

+
+ + + +
+

Generated from protobuf field string name = 1;

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + $this + setName(string $var) + +

+
+ + + +
+

Generated from protobuf field string name = 1;

+
+
+

Parameters

+ + + + + + + +
string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + int|string + getNumber() + +

+
+ + + +
+

Generated from protobuf field uint64 number = 2;

+
+
+ +

Return Value

+ + + + + + +
int|string
+ + + + +
+
+ +
+
+

+ + $this + setNumber(int|string $var) + +

+
+ + + +
+

Generated from protobuf field uint64 number = 2;

+
+
+

Parameters

+ + + + + + + +
int|string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + RepeatedField + getResourcesList() + +

+
+ + + +
+

Generated from protobuf field repeated string resources_list = 3;

+
+
+ +

Return Value

+ + + + + + +
RepeatedField
+ + + + +
+
+ +
+
+

+ + $this + setResourcesList(string[]|RepeatedField $var) + +

+
+ + + +
+

Generated from protobuf field repeated string resources_list = 3;

+
+
+

Parameters

+ + + + + + + +
string[]|RepeatedField$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + string + getNextPageToken() + +

+
+ + + +
+

Generated from protobuf field string next_page_token = 4;

+
+
+ +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+

+ + $this + setNextPageToken(string $var) + +

+
+ + + +
+

Generated from protobuf field string next_page_token = 4;

+
+
+

Parameters

+ + + + + + + +
string$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+

+ + MapField + getResourcesMap() + +

+
+ + + +
+

Generated from protobuf field map<string, string> resources_map = 5;

+
+
+ +

Return Value

+ + + + + + +
MapField
+ + + + +
+
+ +
+
+

+ + $this + setResourcesMap(array|MapField $var) + +

+
+ + + +
+

Generated from protobuf field map<string, string> resources_map = 5;

+
+
+

Parameters

+ + + + + + + +
array|MapField$var
+ + +

Return Value

+ + + + + + +
$this
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockServerStreamingCall.html b/v1.34.1/Google/ApiCore/Testing/MockServerStreamingCall.html new file mode 100644 index 000000000..bf0b3c8d6 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockServerStreamingCall.html @@ -0,0 +1,339 @@ + + + + + + Google\ApiCore\Testing\MockServerStreamingCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockServerStreamingCall extends ServerStreamingCall implements ServerStreamingCallInterface (View source) +

+ + + + + + + + +
internal 
+   + + +
+

The MockServerStreamingCall class is used to mock out the \Grpc\ServerStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ServerStreamingCall.php)

+ +

Traits

+ + +
+ +
+ + + +

Methods

+ +
+
+
+ +
+
+ deserializeMessage(mixed $message, mixed $deserialize) + +

No description

+
+ +
+
+
+ +
+
+ __construct(array $responses, callable|array|null $deserialize = null, stdClass $status = null) + +

MockServerStreamingCall constructor.

+
+
+
+
+ mixed +
+
+ responses() + +

No description

+
+
+
+
+
+ stdClass +
+
+ getStatus() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + protected + deserializeMessage(mixed $message, mixed $deserialize) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
mixed$message
mixed$deserialize
+ + + + + +
+
+ +
+
+

+ + + __construct(array $responses, callable|array|null $deserialize = null, stdClass $status = null) + +

+
+ + + +
+

MockServerStreamingCall constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
array$responses

A list of response objects.

callable|array|null$deserialize

An optional deserialize method for the response object.

stdClass$status

An optional status object. If set to null, a status of OK is used.

+ + + + + +
+
+ +
+
+

+ + mixed + responses() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

An iterator of response values.

+ + + + +
+
+ +
+
+

+ + stdClass + getStatus() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
stdClass

The API status.

+ + +

Exceptions

+ + + + + + +
ApiException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockStatus.html b/v1.34.1/Google/ApiCore/Testing/MockStatus.html new file mode 100644 index 000000000..c010431e6 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockStatus.html @@ -0,0 +1,211 @@ + + + + + + Google\ApiCore\Testing\MockStatus | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockStatus extends stdClass (View source) +

+ + + + + + + + +
internal 
+   + + + + + +

Properties

+ + + + + + + + + + + + + + + + + + + + +
+ Code|int + + $code
+ + + $details
+ + + $metadata
+ + +

Methods

+ +
+
+
+ +
+
+ __construct($code, string $details = null, array $metadata = []) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct($code, string $details = null, array $metadata = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
$code
string$details
array$metadata
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockStubTrait.html b/v1.34.1/Google/ApiCore/Testing/MockStubTrait.html new file mode 100644 index 000000000..4ecd0d3e4 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockStubTrait.html @@ -0,0 +1,913 @@ + + + + + + Google\ApiCore\Testing\MockStubTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + MockStubTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

The MockStubTrait is used by generated mock stub classes which extent \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +It provides functionality to add responses, get received calls, and overrides the _simpleRequest +method so that the elements of $responses are returned instead of making a call to the API.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $deserialize = null) + +

No description

+
+
+
+
+ +
+ _simpleRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _simpleRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockUnaryCall object that will return the first item from $responses

+
+
+
+ +
+ _clientStreamRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _clientStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockClientStreamingCall object that will return the first item from $responses

+
+
+
+ +
+ _serverStreamRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _serverStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockServerStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+
+
+
+ +
+ _bidiRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _bidiRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockBidiStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+
+
+
+
+ static  +
+
+ stripStatusFromResponses($responses) + +

No description

+
+
+
+
+
+ +
+
+ addResponse(Message $response, stdClass $status = null) + +

Add a response object, and an optional status, to the list of responses to be returned via +_simpleRequest.

+
+
+
+
+ +
+
+ setStreamingStatus(stdClass $status) + +

Set the status object to be used when creating streaming calls.

+
+
+
+ +
+ popReceivedCalls() + +

Return a list of calls made to _simpleRequest, and clear $receivedFuncCalls.

+
+
+
+
+ int +
+
+ getReceivedCallCount() + +

No description

+
+
+
+
+
+ array +
+
+ popCallObjects() + +

No description

+
+
+
+
+
+ bool +
+
+ isExhausted() + +

No description

+
+
+
+
+
+ static MockStubTrait +
+
+ create(mixed $responseObject, stdClass $status = null, callable $deserialize = null) + +

No description

+
+
+
+
+
+ static MockStubTrait +
+
+ createWithResponseSequence(array $sequence, callable $deserialize = null, stdClass $finalStatus = null) + +

Creates a sequence such that the responses are returned in order.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $deserialize = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable$deserialize
+ + + + + +
+
+ +
+
+

+ + MockUnaryCall + _simpleRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _simpleRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockUnaryCall object that will return the first item from $responses

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method

The API method name to be called

Message$argument

The request object to the API method

callable$deserialize

A function to deserialize the response object

array$metadata
array$options
+ + +

Return Value

+ + + + + + +
MockUnaryCall
+ + + + +
+
+ +
+
+

+ + MockClientStreamingCall + _clientStreamRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _clientStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockClientStreamingCall object that will return the first item from $responses

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$method

The name of the method to call

callable$deserialize

A function that deserializes the responses

array$metadata

A metadata map to send to the server +(optional)

array$options

An array of options (optional)

+ + +

Return Value

+ + + + + + +
MockClientStreamingCall

The active call object

+ + + + +
+
+ +
+
+

+ + MockServerStreamingCall + _serverStreamRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _serverStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockServerStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method

The name of the method to call

Message$argument

The argument to the method

callable$deserialize

A function that deserializes the responses

array$metadata

A metadata map to send to the server +(optional)

array$options

An array of options (optional)

+ + +

Return Value

+ + + + + + +
MockServerStreamingCall

The active call object

+ + + + +
+
+ +
+
+

+ + MockBidiStreamingCall + _bidiRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _bidiRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockBidiStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$method

The name of the method to call

callable$deserialize

A function that deserializes the responses

array$metadata

A metadata map to send to the server +(optional)

array$options

An array of options (optional)

+ + +

Return Value

+ + + + + + +
MockBidiStreamingCall

The active call object

+ + + + +
+
+ +
+
+

+ + static + stripStatusFromResponses($responses) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$responses
+ + + + + +
+
+ +
+
+

+ + + addResponse(Message $response, stdClass $status = null) + +

+
+ + + +
+

Add a response object, and an optional status, to the list of responses to be returned via +_simpleRequest.

+
+
+

Parameters

+ + + + + + + + + + + + +
Message$response
stdClass$status
+ + + + + +
+
+ +
+
+

+ + + setStreamingStatus(stdClass $status) + +

+
+ + + +
+

Set the status object to be used when creating streaming calls.

+
+
+

Parameters

+ + + + + + + +
stdClass$status
+ + + + + +
+
+ +
+
+

+ + ReceivedRequest[] + popReceivedCalls() + +

+
+ + + +
+

Return a list of calls made to _simpleRequest, and clear $receivedFuncCalls.

+
+
+ +

Return Value

+ + + + + + +
ReceivedRequest[]

An array of received requests

+ + + + +
+
+ +
+
+

+ + int + getReceivedCallCount() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The number of calls received.

+ + + + +
+
+ +
+
+

+ + array + popCallObjects() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array

The call objects created by calls to the stub

+ + + + +
+
+ +
+
+

+ + bool + isExhausted() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
bool

True if $receivedFuncCalls and $response are empty.

+ + + + +
+
+ +
+
+

+ + static MockStubTrait + create(mixed $responseObject, stdClass $status = null, callable $deserialize = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
mixed$responseObject
stdClass$status
callable$deserialize
+ + +

Return Value

+ + + + + + +
MockStubTrait

An instance of the current class type.

+ + + + +
+
+ +
+
+

+ + static MockStubTrait + createWithResponseSequence(array $sequence, callable $deserialize = null, stdClass $finalStatus = null) + +

+
+ + + +
+

Creates a sequence such that the responses are returned in order.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
array$sequence
callable$deserialize
stdClass$finalStatus
+ + +

Return Value

+ + + + + + +
MockStubTrait

An instance of the current class type.

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockTransport.html b/v1.34.1/Google/ApiCore/Testing/MockTransport.html new file mode 100644 index 000000000..2e54e8aa8 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockTransport.html @@ -0,0 +1,1323 @@ + + + + + + Google\ApiCore\Testing\MockTransport | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockTransport implements TransportInterface (View source) +

+ + + + + + + + +
internal 
+   + + + +

Traits

+ + +
+
+ +

The MockStubTrait is used by generated mock stub classes which extent \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +It provides functionality to add responses, get received calls, and overrides the _simpleRequest +method so that the elements of $responses are returned instead of making a call to the API.

+
+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $deserialize = null) + +

No description

+
+ +
+
+ +
+ _simpleRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _simpleRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockUnaryCall object that will return the first item from $responses

+ +
+
+ +
+ _clientStreamRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _clientStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockClientStreamingCall object that will return the first item from $responses

+ +
+
+ +
+ _serverStreamRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _serverStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockServerStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+ +
+
+ +
+ _bidiRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

Overrides the _bidiRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockBidiStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+ +
+
+
+ static  +
+
+ stripStatusFromResponses($responses) + +

No description

+
+ +
+
+
+ +
+
+ addResponse(Message $response, stdClass $status = null) + +

Add a response object, and an optional status, to the list of responses to be returned via +_simpleRequest.

+ +
+
+
+ +
+
+ setStreamingStatus(stdClass $status) + +

Set the status object to be used when creating streaming calls.

+ +
+
+ +
+ popReceivedCalls() + +

Return a list of calls made to _simpleRequest, and clear $receivedFuncCalls.

+ +
+
+
+ int +
+
+ getReceivedCallCount() + +

No description

+
+ +
+
+
+ array +
+
+ popCallObjects() + +

No description

+
+ +
+
+
+ bool +
+
+ isExhausted() + +

No description

+
+ +
+
+
+ static MockStubTrait +
+
+ create(mixed $responseObject, stdClass $status = null, callable $deserialize = null) + +

No description

+
+ +
+
+
+ static MockStubTrait +
+
+ createWithResponseSequence(array $sequence, callable $deserialize = null, stdClass $finalStatus = null) + +

Creates a sequence such that the responses are returned in order.

+ +
+
+
+ +
+
+ setAgentHeaderDescriptor($agentHeaderDescriptor) + +

No description

+
+
+
+
+
+ PromiseInterface +
+
+ startUnaryCall(Call $call, array $options) + +

Returns a promise used to execute network requests.

+
+
+
+ +
+ startBidiStreamingCall(Call $call, array $options) + +

Starts a bidi streaming call.

+
+
+
+ +
+ startClientStreamingCall(Call $call, array $options) + +

Starts a client streaming call.

+
+
+
+ +
+ startServerStreamingCall(Call $call, array $options) + +

Starts a server streaming call.

+
+
+
+
+ +
+
+ __call(string $name, array $arguments) + +

No description

+
+
+
+
+
+ void +
+
+ close() + +

Closes the connection, if one exists.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $deserialize = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
callable$deserialize
+ + + + + +
+
+ +
+
+

+ + MockUnaryCall + _simpleRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _simpleRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockUnaryCall object that will return the first item from $responses

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method

The API method name to be called

Message$argument

The request object to the API method

callable$deserialize

A function to deserialize the response object

array$metadata
array$options
+ + +

Return Value

+ + + + + + +
MockUnaryCall
+ + + + +
+
+ +
+
+

+ + MockClientStreamingCall + _clientStreamRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _clientStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockClientStreamingCall object that will return the first item from $responses

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$method

The name of the method to call

callable$deserialize

A function that deserializes the responses

array$metadata

A metadata map to send to the server +(optional)

array$options

An array of options (optional)

+ + +

Return Value

+ + + + + + +
MockClientStreamingCall

The active call object

+ + + + +
+
+ +
+
+

+ + MockServerStreamingCall + _serverStreamRequest(string $method, Message $argument, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _serverStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockServerStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method

The name of the method to call

Message$argument

The argument to the method

callable$deserialize

A function that deserializes the responses

array$metadata

A metadata map to send to the server +(optional)

array$options

An array of options (optional)

+ + +

Return Value

+ + + + + + +
MockServerStreamingCall

The active call object

+ + + + +
+
+ +
+
+

+ + MockBidiStreamingCall + _bidiRequest(string $method, callable $deserialize, array $metadata = [], array $options = []) + +

+
+ + + +
+

Overrides the _bidiRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockBidiStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$method

The name of the method to call

callable$deserialize

A function that deserializes the responses

array$metadata

A metadata map to send to the server +(optional)

array$options

An array of options (optional)

+ + +

Return Value

+ + + + + + +
MockBidiStreamingCall

The active call object

+ + + + +
+
+ +
+
+

+ + static + stripStatusFromResponses($responses) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$responses
+ + + + + +
+
+ +
+
+

+ + + addResponse(Message $response, stdClass $status = null) + +

+
+ + + +
+

Add a response object, and an optional status, to the list of responses to be returned via +_simpleRequest.

+
+
+

Parameters

+ + + + + + + + + + + + +
Message$response
stdClass$status
+ + + + + +
+
+ +
+
+

+ + + setStreamingStatus(stdClass $status) + +

+
+ + + +
+

Set the status object to be used when creating streaming calls.

+
+
+

Parameters

+ + + + + + + +
stdClass$status
+ + + + + +
+
+ +
+
+

+ + ReceivedRequest[] + popReceivedCalls() + +

+
+ + + +
+

Return a list of calls made to _simpleRequest, and clear $receivedFuncCalls.

+
+
+ +

Return Value

+ + + + + + +
ReceivedRequest[]

An array of received requests

+ + + + +
+
+ +
+
+

+ + int + getReceivedCallCount() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
int

The number of calls received.

+ + + + +
+
+ +
+
+

+ + array + popCallObjects() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
array

The call objects created by calls to the stub

+ + + + +
+
+ +
+
+

+ + bool + isExhausted() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
bool

True if $receivedFuncCalls and $response are empty.

+ + + + +
+
+ +
+
+

+ + static MockStubTrait + create(mixed $responseObject, stdClass $status = null, callable $deserialize = null) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
mixed$responseObject
stdClass$status
callable$deserialize
+ + +

Return Value

+ + + + + + +
MockStubTrait

An instance of the current class type.

+ + + + +
+
+ +
+
+

+ + static MockStubTrait + createWithResponseSequence(array $sequence, callable $deserialize = null, stdClass $finalStatus = null) + +

+
+ + + +
+

Creates a sequence such that the responses are returned in order.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
array$sequence
callable$deserialize
stdClass$finalStatus
+ + +

Return Value

+ + + + + + +
MockStubTrait

An instance of the current class type.

+ + + + +
+
+ +
+
+

+ + + setAgentHeaderDescriptor($agentHeaderDescriptor) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
$agentHeaderDescriptor
+ + + + + +
+
+ +
+
+

+ + PromiseInterface + startUnaryCall(Call $call, array $options) + +

+
+ + + +
+

Returns a promise used to execute network requests.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + BidiStream + startBidiStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a bidi streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
BidiStream
+ + + + +
+
+ +
+
+

+ + ClientStream + startClientStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a client streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ClientStream
+ + + + +
+
+ +
+
+

+ + ServerStream + startServerStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a server streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ServerStream
+ + + + +
+
+ +
+
+

+ + + __call(string $name, array $arguments) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
string$name
array$arguments
+ + + + + +
+
+ +
+
+

+ + void + close() + +

+
+ + + +
+

Closes the connection, if one exists.

+
+
+ +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/MockUnaryCall.html b/v1.34.1/Google/ApiCore/Testing/MockUnaryCall.html new file mode 100644 index 000000000..20b4c1d9f --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/MockUnaryCall.html @@ -0,0 +1,286 @@ + + + + + + Google\ApiCore\Testing\MockUnaryCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + MockUnaryCall extends UnaryCall (View source) +

+ + + + + + + + +
internal 
+   + + +
+

The MockUnaryCall class is used to mock out the \Grpc\UnaryCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/UnaryCall.php)

The MockUnaryCall object is constructed with a response object, an optional deserialize +method, and an optional status. The response object and status are returned immediately from the +wait() method.

+ +

Traits

+ + +
+ +
+ + + +

Methods

+ +
+
+
+ +
+
+ deserializeMessage(mixed $message, mixed $deserialize) + +

No description

+
+ +
+
+
+ +
+
+ __construct(Message|string|null $response = null, callable|array|null $deserialize = null, stdClass $status = null) + +

MockUnaryCall constructor.

+
+
+
+
+ array +
+
+ wait() + +

Immediately return the preset response object and status.

+
+
+
+ + +

Details

+ +
+
+

+ + protected + deserializeMessage(mixed $message, mixed $deserialize) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
mixed$message
mixed$deserialize
+ + + + + +
+
+ +
+
+

+ + + __construct(Message|string|null $response = null, callable|array|null $deserialize = null, stdClass $status = null) + +

+
+ + + +
+

MockUnaryCall constructor.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
Message|string|null$response

The response object.

callable|array|null$deserialize

An optional deserialize method for the response object.

stdClass$status

An optional status object. If set to null, a status of OK is used.

+ + + + + +
+
+ +
+
+

+ + array + wait() + +

+
+ + + +
+

Immediately return the preset response object and status.

+
+
+ +

Return Value

+ + + + + + +
array

The response object and status.

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/ProtobufGPBEmptyComparator.html b/v1.34.1/Google/ApiCore/Testing/ProtobufGPBEmptyComparator.html new file mode 100644 index 000000000..e8cb3750a --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/ProtobufGPBEmptyComparator.html @@ -0,0 +1,256 @@ + + + + + + Google\ApiCore\Testing\ProtobufGPBEmptyComparator | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ProtobufGPBEmptyComparator extends Comparator (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ bool +
+
+ accepts(mixed $expected, mixed $actual) + +

Returns whether the comparator can compare two values.

+
+
+
+
+ +
+
+ assertEquals(Message $expected, Message $actual, float|int $delta = 0, bool $canonicalize = FALSE, bool $ignoreCase = FALSE) + +

Asserts that two values are equal.

+
+
+
+ + +

Details

+ +
+
+

+ + bool + accepts(mixed $expected, mixed $actual) + +

+
+ + + +
+

Returns whether the comparator can compare two values.

+
+
+

Parameters

+ + + + + + + + + + + + +
mixed$expected

The first value to compare

mixed$actual

The second value to compare

+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + assertEquals(Message $expected, Message $actual, float|int $delta = 0, bool $canonicalize = FALSE, bool $ignoreCase = FALSE) + +

+
+ + + +
+

Asserts that two values are equal.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Message$expected

The first value to compare

Message$actual

The second value to compare

float|int$delta

The allowed numerical distance between two values to +consider them equal

bool$canonicalize

If set to TRUE, arrays are sorted before +comparison

bool$ignoreCase

If set to TRUE, upper- and lowercasing is +ignored when comparing string values

+ + + +

Exceptions

+ + + + + + +
ComparisonFailure
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/ProtobufMessageComparator.html b/v1.34.1/Google/ApiCore/Testing/ProtobufMessageComparator.html new file mode 100644 index 000000000..baa0f3904 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/ProtobufMessageComparator.html @@ -0,0 +1,305 @@ + + + + + + Google\ApiCore\Testing\ProtobufMessageComparator | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ProtobufMessageComparator extends Comparator (View source) +

+ + + + + + + + +
internal 
+   + + + + + +

Properties

+ + + + + + + + +
+ protected Exporter + + $exporter
+ + +

Methods

+ +
+
+
+ +
+
+ __construct() + +

No description

+
+
+
+
+
+ bool +
+
+ accepts(mixed $expected, mixed $actual) + +

Returns whether the comparator can compare two values.

+
+
+
+
+ +
+
+ assertEquals(Message $expected, Message $actual, float|int $delta = 0, bool $canonicalize = FALSE, bool $ignoreCase = FALSE) + +

Asserts that two values are equal.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + bool + accepts(mixed $expected, mixed $actual) + +

+
+ + + +
+

Returns whether the comparator can compare two values.

+
+
+

Parameters

+ + + + + + + + + + + + +
mixed$expected

The first value to compare

mixed$actual

The second value to compare

+ + +

Return Value

+ + + + + + +
bool
+ + + + +
+
+ +
+
+

+ + + assertEquals(Message $expected, Message $actual, float|int $delta = 0, bool $canonicalize = FALSE, bool $ignoreCase = FALSE) + +

+
+ + + +
+

Asserts that two values are equal.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Message$expected

The first value to compare

Message$actual

The second value to compare

float|int$delta

The allowed numerical distance between two values to +consider them equal

bool$canonicalize

If set to TRUE, arrays are sorted before +comparison

bool$ignoreCase

If set to TRUE, upper- and lowercasing is +ignored when comparing string values

+ + + +

Exceptions

+ + + + + + +
ComparisonFailure
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/ReceivedRequest.html b/v1.34.1/Google/ApiCore/Testing/ReceivedRequest.html new file mode 100644 index 000000000..37f9cb523 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/ReceivedRequest.html @@ -0,0 +1,367 @@ + + + + + + Google\ApiCore\Testing\ReceivedRequest | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ReceivedRequest (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Class ReceivedRequest used to hold the function name and request object of a call +make to a mock gRPC stub.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct($funcCall, $requestObject, $deserialize = null, $metadata = [], $options = []) + +

No description

+
+
+
+
+
+ +
+
+ getArray() + +

No description

+
+
+
+
+
+ +
+
+ getFuncCall() + +

No description

+
+
+
+
+
+ +
+
+ getRequestObject() + +

No description

+
+
+
+
+
+ +
+
+ getMetadata() + +

No description

+
+
+
+
+
+ +
+
+ getOptions() + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + + __construct($funcCall, $requestObject, $deserialize = null, $metadata = [], $options = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
$funcCall
$requestObject
$deserialize
$metadata
$options
+ + + + + +
+
+ +
+
+

+ + + getArray() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + getFuncCall() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + getRequestObject() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+

+ + + getOptions() + +

+
+ + + +
+

No description

+ +
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Testing/SerializationTrait.html b/v1.34.1/Google/ApiCore/Testing/SerializationTrait.html new file mode 100644 index 000000000..f7dc94ba5 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Testing/SerializationTrait.html @@ -0,0 +1,174 @@ + + + + + + Google\ApiCore\Testing\SerializationTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + SerializationTrait (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ +
+
+ deserializeMessage(mixed $message, mixed $deserialize) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + protected + deserializeMessage(mixed $message, mixed $deserialize) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
mixed$message
mixed$deserialize
+ + + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport.html b/v1.34.1/Google/ApiCore/Transport.html new file mode 100644 index 000000000..033a4ab9e --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport.html @@ -0,0 +1,131 @@ + + + + + + Google\ApiCore\Transport | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + +

Namespaces

+ + +

Classes

+
+
+ +

A transport that sends protobuf over HTTP 1.1 that can be used when full gRPC support +is not available.

+
+
+ +

A gRPC based transport implementation.

+
+
+ +

A trait for shared functionality between transports that support only unary RPCs using simple +HTTP requests.

+
+
+ +

A REST based transport implementation.

+
+
+

Interfaces

+
+
+ +
+
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Grpc.html b/v1.34.1/Google/ApiCore/Transport/Grpc.html new file mode 100644 index 000000000..2609e4a6f --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Grpc.html @@ -0,0 +1,127 @@ + + + + + + Google\ApiCore\Transport\Grpc | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+
+ +

Class ForwardingCall wraps a \Grpc\AbstractCall.

+
+
+ +

Class ForwardingServerStreamingCall wraps a \Grpc\ServerStreamingCall.

+
+
+ +

Class ForwardingUnaryCall wraps a \Grpc\UnaryCall.

+
+
+ +

Class ServerStreamingCallWrapper implements \Google\ApiCore\ServerStreamingCallInterface.

+
+
+

Interfaces

+
+
+ +

Temporary class to support an interceptor-like interface until gRPC interceptor support is +available.

+
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingCall.html b/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingCall.html new file mode 100644 index 000000000..e22607e4d --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingCall.html @@ -0,0 +1,341 @@ + + + + + + Google\ApiCore\Transport\Grpc\ForwardingCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

abstract class + ForwardingCall (View source) +

+ + + + + +
+

Class ForwardingCall wraps a \Grpc\AbstractCall.

+ + + +

Properties

+ + + + + + + + +
+ protected AbstractCall|ForwardingCall + + $innerCall
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(AbstractCall|ForwardingCall $innerCall) + +

ForwardingCall constructor.

+
+
+
+
+ mixed +
+
+ getMetadata() + +

No description

+
+
+
+
+
+ mixed +
+
+ getTrailingMetadata() + +

No description

+
+
+
+
+
+ string +
+
+ getPeer() + +

No description

+
+
+
+
+
+ +
+
+ cancel() + +

Cancels the call.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(AbstractCall|ForwardingCall $innerCall) + +

+
+ + + +
+

ForwardingCall constructor.

+
+
+

Parameters

+ + + + + + + +
AbstractCall|ForwardingCall$innerCall
+ + + + + +
+
+ +
+
+

+ + mixed + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The metadata sent by the server

+ + + + +
+
+ +
+
+

+ + mixed + getTrailingMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The trailing metadata sent by the server

+ + + + +
+
+ +
+
+

+ + string + getPeer() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The URI of the endpoint

+ + + + +
+
+ +
+
+

+ + + cancel() + +

+
+ + + +
+

Cancels the call.

+
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingServerStreamingCall.html b/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingServerStreamingCall.html new file mode 100644 index 000000000..16988fdd7 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingServerStreamingCall.html @@ -0,0 +1,438 @@ + + + + + + Google\ApiCore\Transport\Grpc\ForwardingServerStreamingCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ForwardingServerStreamingCall extends ForwardingCall (View source) +

+ + + + + +
+

Class ForwardingServerStreamingCall wraps a \Grpc\ServerStreamingCall.

+ + + +

Properties

+ + + + + + + + +
+ protected ServerStreamingCall + + $innerCall
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(AbstractCall|ForwardingCall $innerCall) + +

ForwardingCall constructor.

+ +
+
+
+ mixed +
+
+ getMetadata() + +

No description

+
+ +
+
+
+ mixed +
+
+ getTrailingMetadata() + +

No description

+
+ +
+
+
+ string +
+
+ getPeer() + +

No description

+
+ +
+
+
+ +
+
+ cancel() + +

Cancels the call.

+ +
+
+
+ mixed +
+
+ responses() + +

No description

+
+
+
+
+
+ stdClass +
+
+ getStatus() + +

Wait for the server to send the status, and return it.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(AbstractCall|ForwardingCall $innerCall) + +

+
+ + + +
+

ForwardingCall constructor.

+
+
+

Parameters

+ + + + + + + +
AbstractCall|ForwardingCall$innerCall
+ + + + + +
+
+ +
+
+

+ + mixed + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The metadata sent by the server

+ + + + +
+
+ +
+
+

+ + mixed + getTrailingMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The trailing metadata sent by the server

+ + + + +
+
+ +
+
+

+ + string + getPeer() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The URI of the endpoint

+ + + + +
+
+ +
+
+

+ + + cancel() + +

+
+ + + +
+

Cancels the call.

+
+
+ + + + +
+
+ +
+
+

+ + mixed + responses() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

An iterator of response values

+ + + + +
+
+ +
+
+

+ + stdClass + getStatus() + +

+
+ + + +
+

Wait for the server to send the status, and return it.

+
+
+ +

Return Value

+ + + + + + +
stdClass

The status object, with integer $code, string +$details, and array $metadata members

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingUnaryCall.html b/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingUnaryCall.html new file mode 100644 index 000000000..1fe120248 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Grpc/ForwardingUnaryCall.html @@ -0,0 +1,393 @@ + + + + + + Google\ApiCore\Transport\Grpc\ForwardingUnaryCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ForwardingUnaryCall extends ForwardingCall (View source) +

+ + + + + +
+

Class ForwardingUnaryCall wraps a \Grpc\UnaryCall.

+ + + +

Properties

+ + + + + + + + +
+ protected UnaryCall + + $innerCall
+ + +

Methods

+ +
+
+
+ +
+
+ __construct(AbstractCall|ForwardingCall $innerCall) + +

ForwardingCall constructor.

+ +
+
+
+ mixed +
+
+ getMetadata() + +

No description

+
+ +
+
+
+ mixed +
+
+ getTrailingMetadata() + +

No description

+
+ +
+
+
+ string +
+
+ getPeer() + +

No description

+
+ +
+
+
+ +
+
+ cancel() + +

Cancels the call.

+ +
+
+
+ array +
+
+ wait() + +

Wait for the server to respond with data and a status.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(AbstractCall|ForwardingCall $innerCall) + +

+
+ + + +
+

ForwardingCall constructor.

+
+
+

Parameters

+ + + + + + + +
AbstractCall|ForwardingCall$innerCall
+ + + + + +
+
+ +
+
+

+ + mixed + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The metadata sent by the server

+ + + + +
+
+ +
+
+

+ + mixed + getTrailingMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The trailing metadata sent by the server

+ + + + +
+
+ +
+
+

+ + string + getPeer() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The URI of the endpoint

+ + + + +
+
+ +
+
+

+ + + cancel() + +

+
+ + + +
+

Cancels the call.

+
+
+ + + + +
+
+ +
+
+

+ + array + wait() + +

+
+ + + +
+

Wait for the server to respond with data and a status.

+
+
+ +

Return Value

+ + + + + + +
array

[response data, status]

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html b/v1.34.1/Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html new file mode 100644 index 000000000..e478d1160 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html @@ -0,0 +1,539 @@ + + + + + + Google\ApiCore\Transport\Grpc\ServerStreamingCallWrapper | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ServerStreamingCallWrapper implements ServerStreamingCallInterface (View source) +

+ + + + + +
+

Class ServerStreamingCallWrapper implements \Google\ApiCore\ServerStreamingCallInterface.

This is essentially a wrapper class around the \Grpc\ServerStreamingCall.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(ServerStreamingCall|GCPServerStreamCall $stream) + +

No description

+
+
+
+
+
+ void +
+
+ start(mixed $data, array $metadata = [], array $callOptions = []) + +

Start the call.

+
+
+
+
+ mixed +
+
+ responses() + +

No description

+
+
+
+
+
+ stdClass +
+
+ getStatus() + +

Return the status of the server stream.

+
+
+
+
+ mixed +
+
+ getMetadata() + +

No description

+
+
+
+
+
+ mixed +
+
+ getTrailingMetadata() + +

No description

+
+
+
+
+
+ string +
+
+ getPeer() + +

No description

+
+
+
+
+
+ void +
+
+ cancel() + +

Cancels the call.

+
+
+
+
+ void +
+
+ setCallCredentials(mixed $call_credentials) + +

Set the CallCredentials for the underlying Call.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(ServerStreamingCall|GCPServerStreamCall $stream) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + +
ServerStreamingCall|GCPServerStreamCall$stream
+ + + + + +
+
+ +
+
+

+ + void + start(mixed $data, array $metadata = [], array $callOptions = []) + +

+
+ + + +
+

Start the call.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
mixed$data

The data to send

array$metadata

Metadata to send with the call, if applicable +(optional)

array$callOptions
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + mixed + responses() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

An iterator of response values.

+ + + + +
+
+ +
+
+

+ + stdClass + getStatus() + +

+
+ + + +
+

Return the status of the server stream.

+
+
+ +

Return Value

+ + + + + + +
stdClass

The API status.

+ + + + +
+
+ +
+
+

+ + mixed + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The metadata sent by the server.

+ + + + +
+
+ +
+
+

+ + mixed + getTrailingMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The trailing metadata sent by the server.

+ + + + +
+
+ +
+
+

+ + string + getPeer() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The URI of the endpoint.

+ + + + +
+
+ +
+
+

+ + void + cancel() + +

+
+ + + +
+

Cancels the call.

+
+
+ +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setCallCredentials(mixed $call_credentials) + +

+
+ + + +
+

Set the CallCredentials for the underlying Call.

+
+
+

Parameters

+ + + + + + + +
mixed$call_credentials

The CallCredentials object

+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface.html b/v1.34.1/Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface.html new file mode 100644 index 000000000..51e9a103b --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface.html @@ -0,0 +1,206 @@ + + + + + + Google\ApiCore\Transport\Grpc\UnaryInterceptorInterface | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

interface + UnaryInterceptorInterface (View source) +

+ + +

+ deprecated + + Deprecated + in favor of implementations extending {@see \Grpc\Interceptor}. + +

+ + + +
+

Temporary class to support an interceptor-like interface until gRPC interceptor support is +available.

+ + + + +

Methods

+ +
+
+
+ mixed +
+
+ interceptUnaryUnary(string $method, Message $argument, callable $deserialize, array $metadata, array $options, callable $continuation) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + mixed + interceptUnaryUnary(string $method, Message $argument, callable $deserialize, array $metadata, array $options, callable $continuation) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
string$method
Message$argument
callable$deserialize
array$metadata
array$options
callable$continuation
+ + +

Return Value

+ + + + + + +
mixed
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/GrpcFallbackTransport.html b/v1.34.1/Google/ApiCore/Transport/GrpcFallbackTransport.html new file mode 100644 index 000000000..f5f9e0fdb --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/GrpcFallbackTransport.html @@ -0,0 +1,687 @@ + + + + + + Google\ApiCore\Transport\GrpcFallbackTransport | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + GrpcFallbackTransport implements TransportInterface (View source) +

+ + + + + +
+

A transport that sends protobuf over HTTP 1.1 that can be used when full gRPC support +is not available.

+ +

Traits

+ + +
+
+ +
+
+
+
+ ServiceAddressTrait deprecated
+

Provides helper methods for service address handling.

+
+
+ +

A trait for shared functionality between transports that support only unary RPCs using simple +HTTP requests.

+
+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ never +
+
+ startClientStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+ +
+
+
+ never +
+
+ startServerStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+ +
+
+
+ never +
+
+ startBidiStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+ +
+
+
+ +
+
+ close() + +

{@inheritdoc}

+ +
+
+
+ +
+
+ __construct(string $baseUri, callable $httpHandler) + +

No description

+
+
+
+
+
+ static GrpcFallbackTransport +
+
+ build(string $apiEndpoint, array $config = []) + +

Builds a GrpcFallbackTransport.

+
+
+
+
+ PromiseInterface +
+
+ startUnaryCall(Call $call, array $options) + +

Returns a promise used to execute network requests.

+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + never + startClientStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + never + startServerStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + never + startBidiStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + + close() + +

+
+ + + +
+

{@inheritdoc}

+
+
+ + + + +
+
+ +
+
+

+ + + __construct(string $baseUri, callable $httpHandler) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
string$baseUri
callable$httpHandler

A handler used to deliver PSR-7 requests.

+ + + + + +
+
+ +
+
+

+ + static GrpcFallbackTransport + build(string $apiEndpoint, array $config = []) + +

+
+ + + +
+

Builds a GrpcFallbackTransport.

+
+
+

Parameters

+ + + + + + + + + + + + +
string$apiEndpoint

The address of the API remote host, for example "example.googleapis.com".

array$config

{ +Config options used to construct the grpc-fallback transport.

+

@type callable $httpHandler A handler used to deliver PSR-7 requests. +}

+ + +

Return Value

+ + + + + + +
GrpcFallbackTransport
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + PromiseInterface + startUnaryCall(Call $call, array $options) + +

+
+ + + +
+

Returns a promise used to execute network requests.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/GrpcTransport.html b/v1.34.1/Google/ApiCore/Transport/GrpcTransport.html new file mode 100644 index 000000000..d9745833f --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/GrpcTransport.html @@ -0,0 +1,661 @@ + + + + + + Google\ApiCore\Transport\GrpcTransport | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + GrpcTransport extends BaseStub implements TransportInterface (View source) +

+ + + + + +
+

A gRPC based transport implementation.

+ +

Traits

+ + +
+
+ +
+
+
+ +

Provides helper methods for gRPC support.

+
+
+
+ ServiceAddressTrait deprecated
+

Provides helper methods for service address handling.

+
+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ +
+
+ __construct(string $hostname, array $opts, Channel $channel = null, array $interceptors = []) + +

No description

+
+
+
+
+
+ static GrpcTransport +
+
+ build(string $apiEndpoint, array $config = []) + +

Builds a GrpcTransport.

+
+
+
+ +
+ startBidiStreamingCall(Call $call, array $options) + +

Starts a bidi streaming call.

+
+
+
+ +
+ startClientStreamingCall(Call $call, array $options) + +

Starts a client streaming call.

+
+
+
+ +
+ startServerStreamingCall(Call $call, array $options) + +

Starts a server streaming call.

+
+
+
+
+ PromiseInterface +
+
+ startUnaryCall(Call $call, array $options) + +

Returns a promise used to execute network requests.

+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + + __construct(string $hostname, array $opts, Channel $channel = null, array $interceptors = []) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + + + + + + +
string$hostname
array$opts
    +
  • 'update_metadata': (optional) a callback function which takes in a +metadata array, and returns an updated metadata array +
      +
    • 'grpc.primary_user_agent': (optional) a user-agent string
    • +
  • +
Channel$channel

An already created Channel object (optional)

array$interceptors

EXPERIMENTAL +Interceptors used to intercept RPC invocations before a call starts. +Please note that implementations of +{\Google\ApiCore\Transport\Grpc\UnaryInterceptorInterface} are +considered deprecated and support will be removed in a future +release. To prepare for this, please take the time to convert +UnaryInterceptorInterface implementations over to a class which +extends {\Google\ApiCore\Transport\Grpc\Interceptor}.

+ + + +

Exceptions

+ + + + + + +
Exception
+ + + +
+
+ +
+
+

+ + static GrpcTransport + build(string $apiEndpoint, array $config = []) + +

+
+ + + +
+

Builds a GrpcTransport.

+
+
+

Parameters

+ + + + + + + + + + + + +
string$apiEndpoint

The address of the API remote host, for example "example.googleapis.com. May also +include the port, for example "example.googleapis.com:443"

array$config

{ +Config options used to construct the gRPC transport.

+

@type array $stubOpts Options used to construct the gRPC stub (see +https://grpc.github.io/grpc/core/group__grpc__arg__keys.html). +@type Channel $channel Grpc channel to be used. +@type Interceptor[]|UnaryInterceptorInterface[] $interceptors EXPERIMENTAL +Interceptors used to intercept RPC invocations before a call starts. +Please note that implementations of +{\Google\ApiCore\Transport\Grpc\UnaryInterceptorInterface} are +considered deprecated and support will be removed in a future +release. To prepare for this, please take the time to convert +UnaryInterceptorInterface implementations over to a class which +extends {\Google\ApiCore\Transport\Grpc\Interceptor}. +@type callable $clientCertSource A callable which returns the client cert as a string. +}

+ + +

Return Value

+ + + + + + +
GrpcTransport
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + BidiStream + startBidiStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a bidi streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
BidiStream
+ + + + +
+
+ +
+
+

+ + ClientStream + startClientStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a client streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ClientStream
+ + + + +
+
+ +
+
+

+ + ServerStream + startServerStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a server streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ServerStream
+ + + + +
+
+ +
+
+

+ + PromiseInterface + startUnaryCall(Call $call, array $options) + +

+
+ + + +
+

Returns a promise used to execute network requests.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/HttpUnaryTransportTrait.html b/v1.34.1/Google/ApiCore/Transport/HttpUnaryTransportTrait.html new file mode 100644 index 000000000..65439bc82 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/HttpUnaryTransportTrait.html @@ -0,0 +1,358 @@ + + + + + + Google\ApiCore\Transport\HttpUnaryTransportTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + HttpUnaryTransportTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

A trait for shared functionality between transports that support only unary RPCs using simple +HTTP requests.

+ + + + +

Methods

+ +
+
+
+ never +
+
+ startClientStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+
+
+
+
+ never +
+
+ startServerStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+
+
+
+
+ never +
+
+ startBidiStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+
+
+
+
+ +
+
+ close() + +

{@inheritdoc}

+
+
+
+ + +

Details

+ +
+
+

+ + never + startClientStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + never + startServerStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + never + startBidiStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + + close() + +

+
+ + + +
+

{@inheritdoc}

+
+
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Rest.html b/v1.34.1/Google/ApiCore/Transport/Rest.html new file mode 100644 index 000000000..c80fe2d15 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Rest.html @@ -0,0 +1,108 @@ + + + + + + Google\ApiCore\Transport\Rest | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

Classes

+
+ +
+ +

Class RestServerStreamingCall implements \Google\ApiCore\ServerStreamingCallInterface.

+
+
+ + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Rest/JsonStreamDecoder.html b/v1.34.1/Google/ApiCore/Transport/Rest/JsonStreamDecoder.html new file mode 100644 index 000000000..33236cad0 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Rest/JsonStreamDecoder.html @@ -0,0 +1,299 @@ + + + + + + Google\ApiCore\Transport\Rest\JsonStreamDecoder | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + JsonStreamDecoder (View source) +

+ + + + + + + +

Constants

+ + + + +
+ ESCAPE_CHAR + +

+

+
+ + + +

Methods

+ +
+
+
+ +
+
+ __construct(StreamInterface $stream, string $decodeType, array $options = []) + +

JsonStreamDecoder is a HTTP-JSON response stream decoder for JSON-ecoded +protobuf messages. The response stream must be a JSON array, where the first +byte is the opening of the array (i.e. '['), and the last byte is the closing +of the array (i.e. ']'). Each array item must be a JSON object and comma +separated.

+
+
+
+
+ Generator +
+
+ decode() + +

Begins decoding the configured response stream. It is a generator which +yields messages of the given decode type from the stream until the stream +completes. Throws an Exception if the stream is closed before the closing +byte is read or if it encounters an error while decoding a message.

+
+
+
+
+ void +
+
+ close() + +

Closes the underlying stream. If the stream is actively being decoded, an +exception will not be thrown due to the interruption.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(StreamInterface $stream, string $decodeType, array $options = []) + +

+
+ + + +
+

JsonStreamDecoder is a HTTP-JSON response stream decoder for JSON-ecoded +protobuf messages. The response stream must be a JSON array, where the first +byte is the opening of the array (i.e. '['), and the last byte is the closing +of the array (i.e. ']'). Each array item must be a JSON object and comma +separated.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
StreamInterface$stream

The stream to decode.

string$decodeType

The type name of response messages to decode.

array$options

{ +An array of optional arguments.

+
@type bool $ignoreUnknown
+      Toggles whether or not to throw an exception when an unknown field
+      is encountered in a response message. The default is true.
+@type int $readChunkSizeBytes
+      The upper size limit in bytes that can be read at a time from the
+      response stream. The default is 1 KB.
+

}

+ + + + + +
+
+ +
+
+

+ + Generator + decode() + +

+
+ + + +
+

Begins decoding the configured response stream. It is a generator which +yields messages of the given decode type from the stream until the stream +completes. Throws an Exception if the stream is closed before the closing +byte is read or if it encounters an error while decoding a message.

+
+
+ +

Return Value

+ + + + + + +
Generator
+ + +

Exceptions

+ + + + + + +
RuntimeException
+ + + +
+
+ +
+
+

+ + void + close() + +

+
+ + + +
+

Closes the underlying stream. If the stream is actively being decoded, an +exception will not be thrown due to the interruption.

+
+
+ +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/Rest/RestServerStreamingCall.html b/v1.34.1/Google/ApiCore/Transport/Rest/RestServerStreamingCall.html new file mode 100644 index 000000000..b3a9cd895 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/Rest/RestServerStreamingCall.html @@ -0,0 +1,550 @@ + + + + + + Google\ApiCore\Transport\Rest\RestServerStreamingCall | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RestServerStreamingCall implements ServerStreamingCallInterface (View source) +

+ + + + + +
+

Class RestServerStreamingCall implements \Google\ApiCore\ServerStreamingCallInterface.

+ + + + +

Methods

+ +
+
+
+ +
+
+ __construct(callable $httpHandler, string $decodeType, array $decoderOptions) + +

No description

+
+
+
+
+
+ void +
+
+ start($request, array $headers = [], array $callOptions = []) + +

Start the call.

+
+
+
+
+ mixed +
+
+ responses() + +

No description

+
+
+
+
+
+ stdClass +
+
+ getStatus() + +

Return the status of the server stream. If the call has not been started +this will be null.

+
+
+
+
+ mixed +
+
+ getMetadata() + +

No description

+
+
+
+
+
+ mixed +
+
+ getTrailingMetadata() + +

The Rest transport does not support trailing metadata. This is a +passthrough to getMetadata().

+
+
+
+
+ string +
+
+ getPeer() + +

No description

+
+
+
+
+
+ void +
+
+ cancel() + +

Cancels the call.

+
+
+
+
+ void +
+
+ setCallCredentials(mixed $call_credentials) + +

For the REST transport this is a no-op.

+
+
+
+ + +

Details

+ +
+
+

+ + + __construct(callable $httpHandler, string $decodeType, array $decoderOptions) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
callable$httpHandler
string$decodeType
array$decoderOptions
+ + + + + +
+
+ +
+
+

+ + void + start($request, array $headers = [], array $callOptions = []) + +

+
+ + + +
+

Start the call.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
$request
array$headers
array$callOptions
+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + mixed + responses() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

An iterator of response values.

+ + + + +
+
+ +
+
+

+ + stdClass + getStatus() + +

+
+ + + +
+

Return the status of the server stream. If the call has not been started +this will be null.

+
+
+ +

Return Value

+ + + + + + +
stdClass

The API status.

+ + + + +
+
+ +
+
+

+ + mixed + getMetadata() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
mixed

The metadata sent by the server.

+ + + + +
+
+ +
+
+

+ + mixed + getTrailingMetadata() + +

+
+ + + +
+

The Rest transport does not support trailing metadata. This is a +passthrough to getMetadata().

+
+
+ +

Return Value

+ + + + + + +
mixed

The trailing metadata sent by the server.

+ + + + +
+
+ +
+
+

+ + string + getPeer() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The URI of the endpoint.

+ + + + +
+
+ +
+
+

+ + void + cancel() + +

+
+ + + +
+

Cancels the call.

+
+
+ +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+

+ + void + setCallCredentials(mixed $call_credentials) + +

+
+ + + +
+

For the REST transport this is a no-op.

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + +
mixed$call_credentials

The CallCredentials object

+ + +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/RestTransport.html b/v1.34.1/Google/ApiCore/Transport/RestTransport.html new file mode 100644 index 000000000..9170eb3ce --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/RestTransport.html @@ -0,0 +1,682 @@ + + + + + + Google\ApiCore\Transport\RestTransport | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + RestTransport implements TransportInterface (View source) +

+ + + + + +
+

A REST based transport implementation.

+ +

Traits

+ + +
+
+ +
+
+
+
+ ServiceAddressTrait deprecated
+

Provides helper methods for service address handling.

+
+
+ +

A trait for shared functionality between transports that support only unary RPCs using simple +HTTP requests.

+
+
+ + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+ +
+
+
+ never +
+
+ startClientStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+ +
+
+ +
+ startServerStreamingCall(Call $call, array $options) + +

Starts a server streaming call.

+
+
+
+
+ never +
+
+ startBidiStreamingCall(Call $call, array $options) + +

{@inheritdoc}

+ +
+
+
+ +
+
+ close() + +

{@inheritdoc}

+ +
+
+
+ +
+
+ __construct(RequestBuilder $requestBuilder, callable $httpHandler) + +

No description

+
+
+
+
+
+ static RestTransport +
+
+ build(string $apiEndpoint, string $restConfigPath, array $config = []) + +

Builds a RestTransport.

+
+
+
+
+ PromiseInterface +
+
+ startUnaryCall(Call $call, array $options) + +

Returns a promise used to execute network requests.

+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + never + startClientStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + ServerStream + startServerStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a server streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ServerStream
+ + + + +
+
+ +
+
+

+ + never + startBidiStreamingCall(Call $call, array $options) + +

+
+ + + +
+

{@inheritdoc}

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
never
+ + +

Exceptions

+ + + + + + +
BadMethodCallException
+ + + +
+
+ +
+
+

+ + + close() + +

+
+ + + +
+

{@inheritdoc}

+
+
+ + + + +
+
+ +
+
+

+ + + __construct(RequestBuilder $requestBuilder, callable $httpHandler) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
RequestBuilder$requestBuilder

A builder responsible for creating +a PSR-7 request from a set of request information.

callable$httpHandler

A handler used to deliver PSR-7 requests.

+ + + + + +
+
+ +
+
+

+ + static RestTransport + build(string $apiEndpoint, string $restConfigPath, array $config = []) + +

+
+ + + +
+

Builds a RestTransport.

+
+
+

Parameters

+ + + + + + + + + + + + + + + + + +
string$apiEndpoint

The address of the API remote host, for example "example.googleapis.com".

string$restConfigPath

Path to rest config file.

array$config

{ +Config options used to construct the gRPC transport.

+

@type callable $httpHandler A handler used to deliver PSR-7 requests. +@type callable $clientCertSource A callable which returns the client cert as a string. +}

+ + +

Return Value

+ + + + + + +
RestTransport
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + PromiseInterface + startUnaryCall(Call $call, array $options) + +

+
+ + + +
+

Returns a promise used to execute network requests.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Transport/TransportInterface.html b/v1.34.1/Google/ApiCore/Transport/TransportInterface.html new file mode 100644 index 000000000..9001a6f0d --- /dev/null +++ b/v1.34.1/Google/ApiCore/Transport/TransportInterface.html @@ -0,0 +1,396 @@ + + + + + + Google\ApiCore\Transport\TransportInterface | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

interface + TransportInterface (View source) +

+ + + + + + + + + +

Methods

+ +
+
+ +
+ startBidiStreamingCall(Call $call, array $options) + +

Starts a bidi streaming call.

+
+
+
+ +
+ startClientStreamingCall(Call $call, array $options) + +

Starts a client streaming call.

+
+
+
+ +
+ startServerStreamingCall(Call $call, array $options) + +

Starts a server streaming call.

+
+
+
+
+ PromiseInterface +
+
+ startUnaryCall(Call $call, array $options) + +

Returns a promise used to execute network requests.

+
+
+
+
+ void +
+
+ close() + +

Closes the connection, if one exists.

+
+
+
+ + +

Details

+ +
+
+

+ + BidiStream + startBidiStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a bidi streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
BidiStream
+ + + + +
+
+ +
+
+

+ + ClientStream + startClientStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a client streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ClientStream
+ + + + +
+
+ +
+
+

+ + ServerStream + startServerStreamingCall(Call $call, array $options) + +

+
+ + + +
+

Starts a server streaming call.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
ServerStream
+ + + + +
+
+ +
+
+

+ + PromiseInterface + startUnaryCall(Call $call, array $options) + +

+
+ + + +
+

Returns a promise used to execute network requests.

+
+
+

Parameters

+ + + + + + + + + + + + +
Call$call
array$options
+ + +

Return Value

+ + + + + + +
PromiseInterface
+ + +

Exceptions

+ + + + + + +
ValidationException
+ + + +
+
+ +
+
+

+ + void + close() + +

+
+ + + +
+

Closes the connection, if one exists.

+
+
+ +

Return Value

+ + + + + + +
void
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/UriTrait.html b/v1.34.1/Google/ApiCore/UriTrait.html new file mode 100644 index 000000000..f599f4f43 --- /dev/null +++ b/v1.34.1/Google/ApiCore/UriTrait.html @@ -0,0 +1,185 @@ + + + + + + Google\ApiCore\UriTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + UriTrait (View source) +

+ + + + + + + + +
internal 
+   + + +
+

Provides a light wrapper around often used URI related functions.

+ + + + +

Methods

+ +
+
+
+ UriInterface +
+
+ buildUriWithQuery(string|UriInterface $uri, array $query) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + UriInterface + buildUriWithQuery(string|UriInterface $uri, array $query) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
string|UriInterface$uri
array$query
+ + +

Return Value

+ + + + + + +
UriInterface
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ValidationException.html b/v1.34.1/Google/ApiCore/ValidationException.html new file mode 100644 index 000000000..c7728aa95 --- /dev/null +++ b/v1.34.1/Google/ApiCore/ValidationException.html @@ -0,0 +1,108 @@ + + + + + + Google\ApiCore\ValidationException | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + ValidationException extends Exception (View source) +

+ + + + + +
+

ValidationException represents a local error (i.e. not during an RPC call).

+ + + + + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/ValidationTrait.html b/v1.34.1/Google/ApiCore/ValidationTrait.html new file mode 100644 index 000000000..6ac94bece --- /dev/null +++ b/v1.34.1/Google/ApiCore/ValidationTrait.html @@ -0,0 +1,242 @@ + + + + + + Google\ApiCore\ValidationTrait | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

trait + ValidationTrait (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ static array +
+
+ validate(array $arr, array $requiredKeys) + +

No description

+
+
+
+
+
+ static array +
+
+ validateNotNull(array $arr, array $requiredKeys) + +

No description

+
+
+
+
+ + +

Details

+ +
+
+

+ + static array + validate(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+

+ + static array + validateNotNull(array $arr, array $requiredKeys) + +

+
+ + + +
+

No description

+ +
+
+

Parameters

+ + + + + + + + + + + + +
array$arr

Associative array

array$requiredKeys

List of keys to check for in $arr

+ + +

Return Value

+ + + + + + +
array

Returns $arr for fluent use

+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/Google/ApiCore/Version.html b/v1.34.1/Google/ApiCore/Version.html new file mode 100644 index 000000000..6886701e3 --- /dev/null +++ b/v1.34.1/Google/ApiCore/Version.html @@ -0,0 +1,222 @@ + + + + + + Google\ApiCore\Version | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ + + +

class + Version (View source) +

+ + + + + + + + +
internal 
+   + + + + + + +

Methods

+ +
+
+
+ static string +
+
+ getApiCoreVersion() + +

No description

+
+
+
+
+
+ static string +
+
+ readVersionFile(string $file) + +

Reads a VERSION file and returns the contents. If the file does not +exist, returns "".

+
+
+
+ + +

Details

+ +
+
+

+ + static string + getApiCoreVersion() + +

+
+ + + +
+

No description

+ +
+
+ +

Return Value

+ + + + + + +
string

The version of the ApiCore library.

+ + + + +
+
+ +
+
+

+ + static string + readVersionFile(string $file) + +

+
+ + + +
+

Reads a VERSION file and returns the contents. If the file does not +exist, returns "".

+
+
+

Parameters

+ + + + + + + +
string$file
+ + +

Return Value

+ + + + + + +
string
+ + + + +
+
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/PROJECT_VERSION b/v1.34.1/PROJECT_VERSION new file mode 100644 index 000000000..f3221800f --- /dev/null +++ b/v1.34.1/PROJECT_VERSION @@ -0,0 +1 @@ +v1.34.1 \ No newline at end of file diff --git a/v1.34.1/classes.html b/v1.34.1/classes.html new file mode 100644 index 000000000..beb2f5af3 --- /dev/null +++ b/v1.34.1/classes.html @@ -0,0 +1,550 @@ + + + + + + All Classes | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + +
+
+ +

Class containing functions used to build the Agent header.

+
+
+ +

Represents an exception thrown during an RPC.

+
+
+ +
+
+
+ +

Provides basic array helper methods.

+
+
+ +

BidiStream is the response object from a gRPC bidirectional streaming API call.

+
+
+
+ Call
+

Contains information necessary to manage a network request.

+
+
+ +

Common functions used to work with various clients.

+
+
+ +

ClientStream is the response object from a gRPC client streaming API call.

+
+
+ +

The CredentialsWrapper object provides a wrapper around a FetchAuthTokenInterface.

+
+
+ +

A collection of elements retrieved using one or more API calls. The +collection will attempt to retrieve a fixed number of elements, and +will make API calls until that fixed number is reached, or there +are no more elements to retrieve.

+
+
+ +

Container class for Protobuf label constants. See FieldDescriptorProto.Label in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

+
+
+ +

Container class for Protobuf type constants. See FieldDescriptorProto.Type in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

+
+
+ +

Common functions used to work with various clients.

+
+
+ +

Provides helper methods for gRPC support.

+
+
+ +

For connect to emulator.

+
+
+ +

Middleware which adds a CredentialsWrapper object to the call options.

+
+
+ +

Middleware to add fixed headers to an API call.

+
+
+ +

Middlewares must take a MiddlewareInterface as their first constructor +argument {Google\ApiCore\Middleware\ResponseMetadataMiddleware}, which +represents the next middleware in the chain. This next middleware MUST be +invoked by this MiddlewareInterface, and the result must be returned as part +of the __invoke method implementation.

+
+
+ +

Middleware which wraps the response in an OperationResponse object.

+
+
+ +

Middleware which filters the $options array.

+
+
+ +

Middleware which wraps the response in an PagedListResponses object.

+
+
+ +

Middleware that adds autopopulation functionality. This middlware is +added iff auto population settings are present in the resource +descriptor config for the rpc method in context.

+
+
+ +

Middleware which transforms $response into [$response, $metadata]

+
+
+ +

Middleware that adds retry functionality.

+
+
+ +

Response object from a long running API method.

+
+
+ +

The CallOptions class provides typing to the associative array of options +passed to transport RPC methods. See {TransportInterface::startUnaryCall()}, +{@see TransportInterface::startBidiStreamingCall()}, +{TransportInterface::startClientStreamingCall()}, and +{TransportInterface::startServerStreamingCall()}.

+
+
+ +

The ClientOptions class adds typing to the associative array of options +passed into each API client constructor. To use this class directly, pass +the result of {ClientOptions::toArray} to the client constructor:

+
+
+ +

Trait implemented by any class representing an associative array of PHP options.

+
+ +
+ +

The GrpcFallbackTransportOptions class provides typing to the associative array of options used +to configure {\Google\ApiCore\Transport\GrpcFallbackTransport}.

+
+
+ +

The GrpcTransportOptions class provides typing to the associative array of options used to +configure {\Google\ApiCore\Transport\GrpcTransport}.

+
+
+ +

The RestTransportOptions class provides typing to the associative array of options used to +configure {\Google\ApiCore\Transport\RestTransport}.

+
+
+
+ Page
+

A Page object wraps an API list method response and provides methods +to retrieve additional pages using the page token.

+
+
+ +

Holds the description information used for page streaming.

+
+
+ +

Response object for paged results from a list API method

+
+
+ +

Represents a path template.

+
+
+ +
+
+
+ +

Builds a PSR-7 request from a set of request information.

+
+
+ +

Encapsulates request params header metadata.

+
+
+ +

Provides functionality for loading a resource name template map from a descriptor config, +retrieving a PathTemplate, and parsing values using registered templates.

+
+
+ +

Represents an absolute resource template, meaning that it will always contain a leading slash, +and may contain a trailing verb (":").

+
+
+
+ Parser
+

Collection of methods for parsing Segments.

+
+
+ +

Represents a relative resource template, meaning that it will never contain a leading slash or +trailing verb (":").

+
+
+ +

Represents a resource template that may or may not contain a leading slash, and if a leading +slash is present may contain a trailing verb (":"). (Note that a trailing verb without a +leading slash is not permitted).

+
+
+ +

Represents a segment in a resource template. This is used internally by RelativeResourceTemplate, +but is not intended for public use and may change without notice.

+
+
+ +

The RetrySettings class is used to configure retrying and timeouts for RPCs.

+
+
+ +

Collection of methods to help with serialization of protobuf objects

+
+
+ +

ServerStream is the response object from a server streaming API call.

+
+ +
+
+ ServiceAddressTrait deprecated
+

Provides helper methods for service address handling.

+
+
+ +
+
+ + +
+ +

The MockBidiStreamingCall class is used to mock out the \Grpc\BidiStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BidiStreamingCall.php)

+
+
+ +

The MockClientStreamingCall class is used to mock out the \Grpc\ClientStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ClientStreamingCall.php)

+
+ +
+ +

Generated from protobuf message google.apicore.testing.MockRequest

+
+
+ +

Generated from protobuf message google.apicore.testing.MockRequestBody

+
+
+ +

Generated from protobuf message google.apicore.testing.MockResponse

+
+
+ +

The MockServerStreamingCall class is used to mock out the \Grpc\ServerStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ServerStreamingCall.php)

+
+
+ +
+
+
+ +

The MockStubTrait is used by generated mock stub classes which extent \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +It provides functionality to add responses, get received calls, and overrides the _simpleRequest +method so that the elements of $responses are returned instead of making a call to the API.

+
+
+ +
+
+
+ +

The MockUnaryCall class is used to mock out the \Grpc\UnaryCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/UnaryCall.php)

+
+ + +
+ +

Class ReceivedRequest used to hold the function name and request object of a call +make to a mock gRPC stub.

+
+ +
+ +

A transport that sends protobuf over HTTP 1.1 that can be used when full gRPC support +is not available.

+
+
+ +

A gRPC based transport implementation.

+
+
+ +

Class ForwardingCall wraps a \Grpc\AbstractCall.

+
+
+ +

Class ForwardingServerStreamingCall wraps a \Grpc\ServerStreamingCall.

+
+
+ +

Class ForwardingUnaryCall wraps a \Grpc\UnaryCall.

+
+
+ +

Class ServerStreamingCallWrapper implements \Google\ApiCore\ServerStreamingCallInterface.

+
+
+ +

Temporary class to support an interceptor-like interface until gRPC interceptor support is +available.

+
+
+ +

A trait for shared functionality between transports that support only unary RPCs using simple +HTTP requests.

+
+
+ +

A REST based transport implementation.

+
+ +
+ +

Class RestServerStreamingCall implements \Google\ApiCore\ServerStreamingCallInterface.

+
+
+ +
+
+
+ +

Provides a light wrapper around often used URI related functions.

+
+
+ +

ValidationException represents a local error (i.e. not during an RPC call).

+
+
+ +
+
+
+ +
+
+
+
+
+ + + diff --git a/v1.34.1/css/bootstrap-theme.min.css b/v1.34.1/css/bootstrap-theme.min.css new file mode 100644 index 000000000..59e7de99c --- /dev/null +++ b/v1.34.1/css/bootstrap-theme.min.css @@ -0,0 +1,7 @@ +/*! + * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/) + *//*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-default.disabled,.btn-primary.disabled,.btn-success.disabled,.btn-info.disabled,.btn-warning.disabled,.btn-danger.disabled,.btn-default[disabled],.btn-primary[disabled],.btn-success[disabled],.btn-info[disabled],.btn-warning[disabled],.btn-danger[disabled],fieldset[disabled] .btn-default,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-info,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-danger{-webkit-box-shadow:none;box-shadow:none}.btn-default .badge,.btn-primary .badge,.btn-success .badge,.btn-info .badge,.btn-warning .badge,.btn-danger .badge{text-shadow:none}.btn:active,.btn.active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-o-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#e0e0e0));background-image:linear-gradient(to bottom, #fff 0, #e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top, #428bca 0, #2d6ca2 100%);background-image:-o-linear-gradient(top, #428bca 0, #2d6ca2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#2d6ca2));background-image:linear-gradient(to bottom, #428bca 0, #2d6ca2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#2b669a}.btn-primary:hover,.btn-primary:focus{background-color:#2d6ca2;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#2d6ca2;border-color:#2b669a}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#2d6ca2;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top, #5cb85c 0, #419641 100%);background-image:-o-linear-gradient(top, #5cb85c 0, #419641 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#419641));background-image:linear-gradient(to bottom, #5cb85c 0, #419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:hover,.btn-success:focus{background-color:#419641;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top, #5bc0de 0, #2aabd2 100%);background-image:-o-linear-gradient(top, #5bc0de 0, #2aabd2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#2aabd2));background-image:linear-gradient(to bottom, #5bc0de 0, #2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:hover,.btn-info:focus{background-color:#2aabd2;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top, #f0ad4e 0, #eb9316 100%);background-image:-o-linear-gradient(top, #f0ad4e 0, #eb9316 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#eb9316));background-image:linear-gradient(to bottom, #f0ad4e 0, #eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:hover,.btn-warning:focus{background-color:#eb9316;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top, #d9534f 0, #c12e2a 100%);background-image:-o-linear-gradient(top, #d9534f 0, #c12e2a 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c12e2a));background-image:linear-gradient(to bottom, #d9534f 0, #c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:hover,.btn-danger:focus{background-color:#c12e2a;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#c12e2a;background-image:none}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x;background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-image:-webkit-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-o-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#357ebd));background-image:linear-gradient(to bottom, #428bca 0, #357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-repeat:repeat-x;background-color:#357ebd}.navbar-default{background-image:-webkit-linear-gradient(top, #fff 0, #f8f8f8 100%);background-image:-o-linear-gradient(top, #fff 0, #f8f8f8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#f8f8f8));background-image:linear-gradient(to bottom, #fff 0, #f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);background-image:-o-linear-gradient(top, #dbdbdb 0, #e2e2e2 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dbdbdb), to(#e2e2e2));background-image:linear-gradient(to bottom, #dbdbdb 0, #e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top, #3c3c3c 0, #222 100%);background-image:-o-linear-gradient(top, #3c3c3c 0, #222 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #3c3c3c), to(#222));background-image:linear-gradient(to bottom, #3c3c3c 0, #222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:4px}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #080808 0, #0f0f0f 100%);background-image:-o-linear-gradient(top, #080808 0, #0f0f0f 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #080808), to(#0f0f0f));background-image:linear-gradient(to bottom, #080808 0, #0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-image:-webkit-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-o-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#357ebd));background-image:linear-gradient(to bottom, #428bca 0, #357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#c8e5bc));background-image:linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#b9def0));background-image:linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#f8efc0));background-image:linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#e7c3c3));background-image:linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ebebeb), to(#f5f5f5));background-image:linear-gradient(to bottom, #ebebeb 0, #f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top, #428bca 0, #3071a9 100%);background-image:-o-linear-gradient(top, #428bca 0, #3071a9 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#3071a9));background-image:linear-gradient(to bottom, #428bca 0, #3071a9 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3071a9', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top, #5cb85c 0, #449d44 100%);background-image:-o-linear-gradient(top, #5cb85c 0, #449d44 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5cb85c), to(#449d44));background-image:linear-gradient(to bottom, #5cb85c 0, #449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top, #5bc0de 0, #31b0d5 100%);background-image:-o-linear-gradient(top, #5bc0de 0, #31b0d5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #5bc0de), to(#31b0d5));background-image:linear-gradient(to bottom, #5bc0de 0, #31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top, #f0ad4e 0, #ec971f 100%);background-image:-o-linear-gradient(top, #f0ad4e 0, #ec971f 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f0ad4e), to(#ec971f));background-image:linear-gradient(to bottom, #f0ad4e 0, #ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top, #d9534f 0, #c9302c 100%);background-image:-o-linear-gradient(top, #d9534f 0, #c9302c 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9534f), to(#c9302c));background-image:linear-gradient(to bottom, #d9534f 0, #c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #3071a9;background-image:-webkit-linear-gradient(top, #428bca 0, #3278b3 100%);background-image:-o-linear-gradient(top, #428bca 0, #3278b3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#3278b3));background-image:linear-gradient(to bottom, #428bca 0, #3278b3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff3278b3', GradientType=0);background-repeat:repeat-x;border-color:#3278b3}.list-group-item.active .badge,.list-group-item.active:hover .badge,.list-group-item.active:focus .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-o-linear-gradient(top, #428bca 0, #357ebd 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #428bca), to(#357ebd));background-image:linear-gradient(to bottom, #428bca 0, #357ebd 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#d0e9c6));background-image:linear-gradient(to bottom, #dff0d8 0, #d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#c4e3f3));background-image:linear-gradient(to bottom, #d9edf7 0, #c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#faf2cc));background-image:linear-gradient(to bottom, #fcf8e3 0, #faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-o-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#ebcccc));background-image:linear-gradient(to bottom, #f2dede 0, #ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e8e8e8), to(#f5f5f5));background-image:linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)} \ No newline at end of file diff --git a/v1.34.1/css/bootstrap.min.css b/v1.34.1/css/bootstrap.min.css new file mode 100644 index 000000000..633f7473d --- /dev/null +++ b/v1.34.1/css/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/) + *//*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{color:#000 !important;text-shadow:none !important;background:transparent !important;-webkit-box-shadow:none !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#428bca}a.text-primary:hover,a.text-primary:focus{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover,a.bg-primary:focus{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:"\2014 \00A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:""}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:"\00A0 \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.row-no-gutters{margin-right:0;margin-left:0}.row-no-gutters [class*="col-"]{padding-right:0;padding-left:0}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;appearance:none}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;background-image:none;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#3071a9;border-color:#193c5a}.btn-primary:hover{color:#fff;background-color:#3071a9;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;background-image:none;border-color:#285e8e}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#285e8e;border-color:#193c5a}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;background-image:none;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;background-image:none;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;background-image:none;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;background-image:none;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#428bca;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-link{color:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#428bca;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.33}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.panel-body:before,.panel-body:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.panel-body:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}} \ No newline at end of file diff --git a/v1.34.1/css/doctum.css b/v1.34.1/css/doctum.css new file mode 100644 index 000000000..77796f877 --- /dev/null +++ b/v1.34.1/css/doctum.css @@ -0,0 +1,508 @@ +html, +body, +#content { + height: 100%; +} + +/* Site menu */ + +#site-nav.navbar-default { + margin: 0; + border-radius: 0; + border-bottom: 1px solid #ccc; + background-color: #edf3fe; + background-image: none; +} + +#site-nav.navbar-default .navbar-brand, +#site-nav.navbar-default .navbar-nav > li > a { + color: #000; +} + +#site-nav.navbar-default .navbar-nav > li > a:hover { + text-decoration: underline; +} + +#navbar-elements { + float: right; +} + +@media (max-width: 768px) { + #navbar-elements { + float: none !important; + } +} + +/* Namespace breadcrumbs */ + +.namespace-breadcrumbs .breadcrumb { + margin: 0 0 12px; + border-radius: 0 0 4px 4px; + padding-left: 35px; +} + +.namespace-breadcrumbs .breadcrumb > li + li:before { + content: ""; +} +.namespace-breadcrumbs .breadcrumb > .backslash { + color: #ccc; +} + +/* Site columns */ + +#right-column { + margin-left: 20%; +} + +#page-content { + padding: 0 30px; +} + +#left-column { + width: 20%; + position: fixed; + height: 100%; + border-right: 1px solid #ccc; + line-height: 18px; + font-size: 13px; + display: flex; + flex-flow: column; +} + +@media (max-width: 991px) { + #left-column { + display: none; + } + #right-column { + width: 100%; + margin-left: 0; + } +} + +/* API Tree */ + +#api-tree { + background: linear-gradient(to bottom, #fff, #fff 50%, #edf3fe 50%, #edf3fe); + background-size: 100% 56px; + overflow: auto; + height: 100%; + background-attachment: local; +} + +#api-tree ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +#api-tree ul li { + padding: 0; + margin: 0; +} + +/* Prevents the menu from jittering on lad */ +#api-tree .icon-play { + width: 26px; +} + +#api-tree ul li .hd { + padding: 5px; +} + +#api-tree li .hd:nth-child(even) { + background-color: #edf3fe; +} + +#api-tree ul li.opened > .hd span { + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -o-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} + +#api-tree .bd { + display: none; +} + +#api-tree li.opened > .bd { + display: block; +} + +#api-tree li .hd:hover { + background-color: #eee; +} + +#api-tree li.active > .hd { + background-color: #3875d7; +} + +#api-tree li.active > .hd a { + color: #eee; + font-weight: bold; +} + +#api-tree a { + color: #222; +} + +#api-tree div.leaf a { + margin-left: 20px; +} + +#api-tree .hd span { + padding: 0px 8px; + font-size: 15px; + line-height: 85%; +} + +/* Control panel, search form, version drop-down */ + +#control-panel { + background: #e8e8e8; + border-bottom: 1px solid #666; + padding: 4px; +} + +#control-panel form, #control-panel > .search-bar { + margin: 4px 4px 5px 4px; +} + +#control-panel > .search-bar > .progress { + height: 5px; + margin-bottom: 0px; +} + +#control-panel > .search-bar > .progress > .progress-bar { + background: #30a0e0; +} + +/* Source: https://stackoverflow.com/a/38229228/5155484 */ + +.progress-bar.indeterminate { + position: relative; + animation: progress-indeterminate 3s linear infinite; +} + +@keyframes progress-indeterminate { + from { left: -25%; width: 25%; } + to { left: 100%; width: 25%;} +} + +#search-form { + position: relative; +} + +#search-form input { + width: 100%; + padding-left: 28px; +} + +#search-form span.icon-search { + position: absolute; + left: 5px; + top: 8px; + font-size: 20px; + z-index: 2; +} + +/** Typeahead */ + +.auto-complete-results { + width: 100%; + z-index: 1; +} + +.auto-complete-dropdown-menu { + overflow: auto; + max-height: 260px; + margin-top: 9px; + background-color: #fff; + border: 1px solid #ccc; + border-radius: 8px; + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + padding: 8px; +} + +.auto-complete-result { + padding: 8px; + border-bottom: 1px solid #ccc; + font-size: 1.1em; +} + +.auto-complete-selected, .auto-complete-result:hover { + background-color: #3875d7; + color: #fff; +} + +.auto-complete-selected > mark.auto-complete-highlight, .auto-complete-result:hover > mark.auto-complete-highlight { + color: #fff; +} + +.auto-complete-highlight { + padding: 0px; + font-weight: bold; + background-color: transparent; +} + +/** General typography **/ + +.navbar { + border-bottom: 0; +} + +.page-header { + margin: 0 0 20px; +} + +abbr[title], +abbr[data-original-title], +abbr { + border-bottom: none; + cursor: pointer; +} + +a abbr { + cursor: pointer; +} + +.method-description table, +.description table { + border: solid 1px #ccc; + padding: 1em; + margin: 1em; +} + +.method-description td, +.method-description th, +.description td, +.description th { + padding: 0.75em 1.25em; +} + +.method-description tbody tr:nth-child(even), +.description tbody tr:nth-child(even) { + background: #edf3fe; +} + +.method-description tbody tr:nth-child(odd), +.description tbody tr:nth-child(odd) { + background: #fff; +} + +.method-description thead tr, +.description thead tr { + background: #edf3fe; +} + +/** General Doctum styling **/ + +.underlined > .row { + padding: 8px 0; + border-bottom: 1px solid #ddd; +} + +#footer { + text-align: right; + margin: 30px; + font-size: 11px; +} + +.description { + margin: 10px 0; + padding: 10px; + background-color: #efefef; +} + +.description p { + padding: 0; + margin: 8px 0; +} + +.method-description { + margin: 0 0 24px 0; +} + +.details { + padding-left: 30px; +} + +#method-details .method-item { + margin-bottom: 30px; +} + +.method-item h3, +.method-item h3 code { + background-color: #eee; +} + +.method-item h3 { + padding: 4px; + margin-bottom: 20px; + font-size: 20px; +} + +.location { + font-size: 11px; + float: right; + font-style: italic; +} + +.namespace-list a { + padding: 3px 8px; + margin: 0 5px 5px 0; + border: 1px solid #ddd; + background-color: #f9f9f9; + display: inline-block; + border-radius: 4px; +} + +.no-description { + color: #ccc; + font-size: 90%; +} + +.type { + overflow-wrap: break-word; +} + +/* Namespaces page */ + +.namespaces { + clear: both; +} + +.namespaces .namespace-container { + float: left; + margin: 0 14px 14px 0; + min-width: 30%; +} + +.namespaces h2 { + margin: 0 0 20px 0; +} + +.namespace-container > h2 { + background-color: #edf3fe; + padding: 4px 4px 4px 8px; + font-size: 25px; + margin: 20px 0; +} + +@media (max-width: 991px) { + .namespaces .namespace-container { + margin-right: 0; + width: 100%; + } +} + +/** Code and pre tags **/ + +tt, +code, +pre { + font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; +} + +code { + padding: 0; + padding-top: 0.2em; + padding-bottom: 0.2em; + margin: 0; + font-size: 85%; + background-color: rgba(0, 0, 0, 0.04); + border-radius: 3px; + color: #333; +} + +pre { + padding: 16px; + overflow: auto; + font-size: 85%; + line-height: 1.45; + background-color: #f7f7f7; + border-radius: 3px; +} + +pre.examples { + padding: 1rem; +} + +#page-content > h2 { + background-color: #edf3fe; + padding: 4px 4px 4px 8px; + font-size: 25px; + margin: 20px 0; +} + + +/** Doc index **/ + +dt { + font-weight: normal; +} + +dd { + margin-left: 30px; + line-height: 1.5em; +} + +#doc-index h2 { + font-weight: bold; + margin: 30px 0; +} + +#doc-index .pagination { + margin: 0; +} + +/* Search page */ + +.search-results { + list-style-type: none; + padding: 0; + margin: 0; +} + +.search-results li { + list-style-type: none; + margin: 0; + padding: 14px 0; + border-bottom: 1px solid #ccc; +} + +.search-results > li > h2 { + background: none; + margin: 0; + padding: 0; + font-size: 18px; +} + +.search-results > li > h2 > a { + float: left; + display: block; + margin: 0 0 4px 0; +} + +.search-results .search-type { + float: right; + margin: 0 0 4px 0; +} + +.search-results .search-from { + margin: 0 0 12px 0; + font-size: 12px; + color: #999; +} + +.search-results .search-from a { + font-style: italic; +} + +.search-results .search-description { + margin: 8px 0 0 30px; +} + +.search-description { + white-space: pre; +} diff --git a/v1.34.1/doc-index.html b/v1.34.1/doc-index.html new file mode 100644 index 000000000..3f081c824 --- /dev/null +++ b/v1.34.1/doc-index.html @@ -0,0 +1,1230 @@ + + + + + + Index | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + + + +

A

+
AgentHeaderClass in namespace Google\ApiCore
+

Class containing functions used to build the Agent header.

ApiExceptionClass in namespace Google\ApiCore
+

Represents an exception thrown during an RPC.

ApiStatusClass in namespace Google\ApiCore
+
ArrayTraitClass in namespace Google\ApiCore
+

Provides basic array helper methods.

+GapicClientTrait::addMiddleware() — Method in class GapicClientTrait
+

Add a middleware to the call stack by providing a callable which will be +invoked at the start of each call, and will return an instance of +{MiddlewareInterface} when invoked.

AbsoluteResourceTemplateClass in namespace Google\ApiCore\ResourceTemplate
+

Represents an absolute resource template, meaning that it will always contain a leading slash, +and may contain a trailing verb (":").

+GeneratedTest::assertProtobufEquals() — Method in class GeneratedTest
+
+MockStubTrait::addResponse() — Method in class MockStubTrait
+

Add a response object, and an optional status, to the list of responses to be returned via +_simpleRequest.

+ProtobufGPBEmptyComparator::accepts() — Method in class ProtobufGPBEmptyComparator
+

Returns whether the comparator can compare two values.

+ProtobufGPBEmptyComparator::assertEquals() — Method in class ProtobufGPBEmptyComparator
+

Asserts that two values are equal.

+ProtobufMessageComparator::accepts() — Method in class ProtobufMessageComparator
+

Returns whether the comparator can compare two values.

+ProtobufMessageComparator::assertEquals() — Method in class ProtobufMessageComparator
+

Asserts that two values are equal.

B

+
+AgentHeader::buildAgentHeader() — Method in class AgentHeader
+
BidiStreamClass in namespace Google\ApiCore
+

BidiStream is the response object from a gRPC bidirectional streaming API call.

+CredentialsWrapper::build() — Method in class CredentialsWrapper
+

Factory method to create a CredentialsWrapper from an array of options.

+RequestBuilder::build() — Method in class RequestBuilder
+
$ +MockRequestBody#bytes_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+GrpcFallbackTransport::build() — Method in class GrpcFallbackTransport
+

Builds a GrpcFallbackTransport.

+GrpcTransport::build() — Method in class GrpcTransport
+

Builds a GrpcTransport.

+RestTransport::build() — Method in class RestTransport
+

Builds a RestTransport.

+UriTrait::buildUriWithQuery() — Method in class UriTrait
+

C

+
+ApiException::createFromStdClass() — Method in class ApiException
+
+ApiException::createFromApiResponse() — Method in class ApiException
+
+ApiException::createFromRestApiResponse() — Method in class ApiException
+

For REST-based responses, the metadata does not need to be decoded.

+ApiException::createFromRpcStatus() — Method in class ApiException
+
+ApiException::createFromRequestException() — Method in class ApiException
+

Creates an ApiException from a GuzzleHttp RequestException.

+BidiStream::closeWrite() — Method in class BidiStream
+

Inform the server that no more requests will be written. The write() function cannot be +called after closeWrite() is called.

+BidiStream::closeWriteAndReadAll() — Method in class BidiStream
+

Call closeWrite(), and read all responses from the server, until the streaming call is +completed. Throws an ApiException if the streaming call failed.

CallClass in namespace Google\ApiCore
+

Contains information necessary to manage a network request.

ClientOptionsTraitClass in namespace Google\ApiCore
+

Common functions used to work with various clients.

ClientStreamClass in namespace Google\ApiCore
+

ClientStream is the response object from a gRPC client streaming API call.

CredentialsWrapperClass in namespace Google\ApiCore
+

The CredentialsWrapper object provides a wrapper around a FetchAuthTokenInterface.

+CredentialsWrapper::checkUniverseDomain() — Method in class CredentialsWrapper
+

Verify that the expected universe domain matches the universe domain from the credentials.

+GapicClientTrait::close() — Method in class GapicClientTrait
+

Initiates an orderly shutdown in which preexisting calls continue but new +calls are immediately cancelled.

+InsecureCredentialsWrapper::checkUniverseDomain() — Method in class InsecureCredentialsWrapper
+

Verify that the expected universe domain matches the universe domain from the credentials.

CredentialsWrapperMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware which adds a CredentialsWrapper object to the call options.

+OperationResponse::cancel() — Method in class OperationResponse
+

Cancel the long-running operation.

CallOptionsClass in namespace Google\ApiCore\Options
+

The CallOptions class provides typing to the associative array of options +passed to transport RPC methods. See {TransportInterface::startUnaryCall()}, +{@see TransportInterface::startBidiStreamingCall()}, +{TransportInterface::startClientStreamingCall()}, and +{TransportInterface::startServerStreamingCall()}.

ClientOptionsClass in namespace Google\ApiCore\Options
+

The ClientOptions class adds typing to the associative array of options +passed into each API client constructor. To use this class directly, pass +the result of {ClientOptions::toArray} to the client constructor:

+PageStreamingDescriptor::createFromFields() — Method in class PageStreamingDescriptor
+
+RetrySettings::constructDefault() — Method in class RetrySettings
+
+ServerStreamingCallInterface::cancel() — Method in class ServerStreamingCallInterface
+

Cancels the call.

+MockRequestBody::clearNestedMessage() — Method in class MockRequestBody
+
+MockRequestBody::clearBytesValue() — Method in class MockRequestBody
+
+MockRequestBody::clearDurationValue() — Method in class MockRequestBody
+
+MockRequestBody::clearFieldMask() — Method in class MockRequestBody
+
+MockRequestBody::clearInt64Value() — Method in class MockRequestBody
+
+MockRequestBody::clearListValue() — Method in class MockRequestBody
+
+MockRequestBody::clearStringValue() — Method in class MockRequestBody
+
+MockRequestBody::clearStructValue() — Method in class MockRequestBody
+
+MockRequestBody::clearTimestampValue() — Method in class MockRequestBody
+
+MockRequestBody::clearValueValue() — Method in class MockRequestBody
+
$ +MockStatus#codeProperty in class MockStatus
+
+MockStubTrait::create() — Method in class MockStubTrait
+
+MockStubTrait::createWithResponseSequence() — Method in class MockStubTrait
+

Creates a sequence such that the responses are returned in order.

+MockTransport::close() — Method in class MockTransport
+

Closes the connection, if one exists.

+ForwardingCall::cancel() — Method in class ForwardingCall
+

Cancels the call.

+ServerStreamingCallWrapper::cancel() — Method in class ServerStreamingCallWrapper
+

Cancels the call.

+HttpUnaryTransportTrait::close() — Method in class HttpUnaryTransportTrait
+
{@inheritdoc}
+JsonStreamDecoder::close() — Method in class JsonStreamDecoder
+

Closes the underlying stream. If the stream is actively being decoded, an +exception will not be thrown due to the interruption.

+RestServerStreamingCall::cancel() — Method in class RestServerStreamingCall
+

Cancels the call.

+TransportInterface::close() — Method in class TransportInterface
+

Closes the connection, if one exists.

D

+
+OperationResponse::delete() — Method in class OperationResponse
+

Delete the long-running operation.

+Serializer::decodeMessage() — Method in class Serializer
+

Decode PHP array into the specified protobuf message

+Serializer::decodeMetadata() — Method in class Serializer
+

Decode metadata received from gRPC status object

+Serializer::decodeAnyMessages() — Method in class Serializer
+

Decode an array of Any messages into a printable PHP array.

$ +MockRequestBody#duration_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

$ +MockStatus#detailsProperty in class MockStatus
+
+SerializationTrait::deserializeMessage() — Method in class SerializationTrait
+
+JsonStreamDecoder::decode() — Method in class JsonStreamDecoder
+

Begins decoding the configured response stream. It is a generator which +yields messages of the given decode type from the stream until the stream +completes. Throws an Exception if the stream is closed before the closing +byte is read or if it encounters an error while decoding a message.

E

+
+Page::expandToFixedSizeCollection() — Method in class Page
+

Returns a collection of elements with a fixed size set by +the collectionSize parameter. The collection will only contain +fewer than collectionSize elements if there are no more +pages to be retrieved from the server.

+PagedListResponse::expandToFixedSizeCollection() — Method in class PagedListResponse
+

Returns a collection of elements with a fixed size set by +the collectionSize parameter. The collection will only contain +fewer than collectionSize elements if there are no more +pages to be retrieved from the server.

+Serializer::encodeMessage() — Method in class Serializer
+

Encode protobuf message as a PHP array

$ +ProtobufMessageComparator#exporterProperty in class ProtobufMessageComparator
+

F

+
FixedSizeCollectionClass in namespace Google\ApiCore
+

A collection of elements retrieved using one or more API calls. The +collection will attempt to retrieve a fixed number of elements, and +will make API calls until that fixed number is reached, or there +are no more elements to retrieve.

FixedHeaderMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware to add fixed headers to an API call.

$ +MockRequestBody#field_maskProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

ForwardingCallClass in namespace Google\ApiCore\Transport\Grpc
+

Class ForwardingCall wraps a \Grpc\AbstractCall.

ForwardingServerStreamingCallClass in namespace Google\ApiCore\Transport\Grpc
+

Class ForwardingServerStreamingCall wraps a \Grpc\ServerStreamingCall.

ForwardingUnaryCallClass in namespace Google\ApiCore\Transport\Grpc
+

Class ForwardingUnaryCall wraps a \Grpc\UnaryCall.

G

+
+ApiException::getStatus() — Method in class ApiException
+
+ApiException::getReason() — Method in class ApiException
+

Returns the reason in ErrorInfo for an exception, or null if there is no ErrorInfo.

+ApiException::getDomain() — Method in class ApiException
+

Returns the domain in ErrorInfo for an exception, or null if there is no ErrorInfo.

+ApiException::getErrorInfoMetadata() — Method in class ApiException
+

Returns the metadata in ErrorInfo for an exception, or null if there is no ErrorInfo.

+ApiException::getBasicMessage() — Method in class ApiException
+
+ApiException::getMetadata() — Method in class ApiException
+
+BidiStream::getBidiStreamingCall() — Method in class BidiStream
+

Return the underlying gRPC call object

+Call::getMethod() — Method in class Call
+
+Call::getCallType() — Method in class Call
+
+Call::getDecodeType() — Method in class Call
+
+Call::getMessage() — Method in class Call
+
+Call::getDescriptor() — Method in class Call
+
+ClientStream::getClientStreamingCall() — Method in class ClientStream
+

Return the underlying gRPC call object

+CredentialsWrapper::getQuotaProject() — Method in class CredentialsWrapper
+
+CredentialsWrapper::getProjectId() — Method in class CredentialsWrapper
+
+CredentialsWrapper::getBearerString() — Method in class CredentialsWrapper
+
+CredentialsWrapper::getAuthorizationHeaderCallback() — Method in class CredentialsWrapper
+
+FixedSizeCollection::getCollectionSize() — Method in class FixedSizeCollection
+

Returns the number of elements in the collection. This will be +equal to the collectionSize parameter used at construction +unless there are no elements remaining to be retrieved.

+FixedSizeCollection::getNextPageToken() — Method in class FixedSizeCollection
+

Returns a page token that can be passed into the API list +method to retrieve additional elements.

+FixedSizeCollection::getNextCollection() — Method in class FixedSizeCollection
+

Retrieves the next FixedSizeCollection using one or more API calls.

+FixedSizeCollection::getIterator() — Method in class FixedSizeCollection
+

Returns an iterator over the elements of the collection.

GPBLabelClass in namespace Google\ApiCore
+

Container class for Protobuf label constants. See FieldDescriptorProto.Label in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

GPBTypeClass in namespace Google\ApiCore
+

Container class for Protobuf type constants. See FieldDescriptorProto.Type in +https://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

GapicClientTraitClass in namespace Google\ApiCore
+

Common functions used to work with various clients.

GrpcSupportTraitClass in namespace Google\ApiCore
+

Provides helper methods for gRPC support.

+InsecureCredentialsWrapper::getAuthorizationHeaderCallback() — Method in class InsecureCredentialsWrapper
+
+RetryMiddleware::getCurrentTimeMs() — Method in class RetryMiddleware
+
+OperationResponse::getName() — Method in class OperationResponse
+

Get the formatted name of the operation

+OperationResponse::getResult() — Method in class OperationResponse
+

Return the result of the operation. If operationSucceeded() is false, return null.

+OperationResponse::getError() — Method in class OperationResponse
+

If the operation failed, return the status. If operationFailed() is false, return null.

+OperationResponse::getDescriptorOptions() — Method in class OperationResponse
+

Get an array containing the values of 'operationReturnType', 'metadataReturnType', and +the polling options initialPollDelayMillis, pollDelayMultiplier, maxPollDelayMillis, +and totalPollTimeoutMillis. The array can be passed as the $options argument to the +constructor when creating another OperationResponse object.

+OperationResponse::getLastProtoResponse() — Method in class OperationResponse
+
+OperationResponse::getOperationsClient() — Method in class OperationResponse
+
+OperationResponse::getMetadata() — Method in class OperationResponse
+

Get the metadata returned with the last proto response. If a metadata type was provided, then +the return value will be of that type - otherwise, the return value will be of type Any. If +no metadata object is available, returns null.

GrpcFallbackTransportOptionsClass in namespace Google\ApiCore\Options\TransportOptions
+

The GrpcFallbackTransportOptions class provides typing to the associative array of options used +to configure {\Google\ApiCore\Transport\GrpcFallbackTransport}.

GrpcTransportOptionsClass in namespace Google\ApiCore\Options\TransportOptions
+

The GrpcTransportOptions class provides typing to the associative array of options used to +configure {\Google\ApiCore\Transport\GrpcTransport}.

+Page::getNextPageToken() — Method in class Page
+

Returns the next page token from the response.

+Page::getNextPage() — Method in class Page
+

Retrieves the next Page object using the next page token.

+Page::getPageElementCount() — Method in class Page
+

Return the number of elements in the response.

+Page::getIterator() — Method in class Page
+

Return an iterator over the elements in the response.

+Page::getRequestObject() — Method in class Page
+

Gets the request object used to generate the Page.

+Page::getResponseObject() — Method in class Page
+

Gets the API response object.

+PageStreamingDescriptor::getRequestPageTokenGetMethod() — Method in class PageStreamingDescriptor
+
+PageStreamingDescriptor::getRequestPageSizeGetMethod() — Method in class PageStreamingDescriptor
+
+PageStreamingDescriptor::getResponsePageTokenGetMethod() — Method in class PageStreamingDescriptor
+
+PageStreamingDescriptor::getResourcesGetMethod() — Method in class PageStreamingDescriptor
+
+PageStreamingDescriptor::getRequestPageTokenSetMethod() — Method in class PageStreamingDescriptor
+
+PageStreamingDescriptor::getRequestPageSizeSetMethod() — Method in class PageStreamingDescriptor
+
+PagedListResponse::getIterator() — Method in class PagedListResponse
+

Returns an iterator over the full list of elements. If the +API response contains a (non-empty) next page token, then +the PagedListResponse object will make calls to the underlying +API to retrieve additional elements as required.

+PagedListResponse::getPage() — Method in class PagedListResponse
+

Return the current page of results.

+PollingTrait::getCurrentTimeMillis() — Method in class PollingTrait
+

Protected to allow overriding for tests

+RequestParamsHeaderDescriptor::getHeader() — Method in class RequestParamsHeaderDescriptor
+

Returns an associative array that contains request params header metadata.

+Segment::getSegmentType() — Method in class Segment
+
+Segment::getKey() — Method in class Segment
+
+Segment::getValue() — Method in class Segment
+
+Segment::getTemplate() — Method in class Segment
+
+Segment::getSeparator() — Method in class Segment
+
+RetrySettings::getNoRetriesRpcTimeoutMillis() — Method in class RetrySettings
+
+RetrySettings::getRetryableCodes() — Method in class RetrySettings
+
+RetrySettings::getInitialRetryDelayMillis() — Method in class RetrySettings
+
+RetrySettings::getRetryDelayMultiplier() — Method in class RetrySettings
+
+RetrySettings::getMaxRetryDelayMillis() — Method in class RetrySettings
+
+RetrySettings::getInitialRpcTimeoutMillis() — Method in class RetrySettings
+
+RetrySettings::getRpcTimeoutMultiplier() — Method in class RetrySettings
+
+RetrySettings::getMaxRpcTimeoutMillis() — Method in class RetrySettings
+
+RetrySettings::getTotalTimeoutMillis() — Method in class RetrySettings
+
+RetrySettings::getMaxRetries() — Method in class RetrySettings
+
+RetrySettings::getRetryFunction() — Method in class RetrySettings
+
+Serializer::getGetter() — Method in class Serializer
+
+Serializer::getSetter() — Method in class Serializer
+
+ServerStream::getServerStreamingCall() — Method in class ServerStream
+

Return the underlying call object.

+ServerStreamingCallInterface::getStatus() — Method in class ServerStreamingCallInterface
+

Return the status of the server stream.

+ServerStreamingCallInterface::getMetadata() — Method in class ServerStreamingCallInterface
+
+ServerStreamingCallInterface::getTrailingMetadata() — Method in class ServerStreamingCallInterface
+
+ServerStreamingCallInterface::getPeer() — Method in class ServerStreamingCallInterface
+
GeneratedTestClass in namespace Google\ApiCore\Testing
+
+MockBidiStreamingCall::getStatus() — Method in class MockBidiStreamingCall
+
+MockGrpcTransport::getRequestArguments() — Method in class MockGrpcTransport
+
+MockRequest::getPageToken() — Method in class MockRequest
+

Generated from protobuf field string page_token = 1;

+MockRequest::getPageSize() — Method in class MockRequest
+

Generated from protobuf field uint64 page_size = 2;

+MockRequestBody::getName() — Method in class MockRequestBody
+

Generated from protobuf field string name = 1;

+MockRequestBody::getNumber() — Method in class MockRequestBody
+

Generated from protobuf field uint64 number = 2;

+MockRequestBody::getRepeatedField() — Method in class MockRequestBody
+

Generated from protobuf field repeated string repeated_field = 3;

+MockRequestBody::getNestedMessage() — Method in class MockRequestBody
+

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

+MockRequestBody::getBytesValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+MockRequestBody::getBytesValueUnwrapped() — Method in class MockRequestBody
+

Returns the unboxed value from getBytesValue()

+MockRequestBody::getDurationValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

+MockRequestBody::getFieldMask() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

+MockRequestBody::getInt64Value() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+MockRequestBody::getInt64ValueUnwrapped() — Method in class MockRequestBody
+

Returns the unboxed value from getInt64Value()

+MockRequestBody::getListValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

+MockRequestBody::getStringValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+MockRequestBody::getStringValueUnwrapped() — Method in class MockRequestBody
+

Returns the unboxed value from getStringValue()

+MockRequestBody::getStructValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+MockRequestBody::getTimestampValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

+MockRequestBody::getValueValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Value value_value = 13;

+MockRequestBody::getField1() — Method in class MockRequestBody
+

Generated from protobuf field string field_1 = 14;

+MockRequestBody::getField2() — Method in class MockRequestBody
+

Generated from protobuf field string field_2 = 15;

+MockRequestBody::getField3() — Method in class MockRequestBody
+

Generated from protobuf field string field_3 = 16;

+MockRequestBody::getOneofField() — Method in class MockRequestBody
+
+MockResponse::getName() — Method in class MockResponse
+

Generated from protobuf field string name = 1;

+MockResponse::getNumber() — Method in class MockResponse
+

Generated from protobuf field uint64 number = 2;

+MockResponse::getResourcesList() — Method in class MockResponse
+

Generated from protobuf field repeated string resources_list = 3;

+MockResponse::getNextPageToken() — Method in class MockResponse
+

Generated from protobuf field string next_page_token = 4;

+MockResponse::getResourcesMap() — Method in class MockResponse
+

Generated from protobuf field map<string, string> resources_map = 5;

+MockServerStreamingCall::getStatus() — Method in class MockServerStreamingCall
+
+MockStubTrait::getReceivedCallCount() — Method in class MockStubTrait
+
+ReceivedRequest::getArray() — Method in class ReceivedRequest
+
+ReceivedRequest::getFuncCall() — Method in class ReceivedRequest
+
+ReceivedRequest::getRequestObject() — Method in class ReceivedRequest
+
+ReceivedRequest::getMetadata() — Method in class ReceivedRequest
+
+ReceivedRequest::getOptions() — Method in class ReceivedRequest
+
GrpcFallbackTransportClass in namespace Google\ApiCore\Transport
+

A transport that sends protobuf over HTTP 1.1 that can be used when full gRPC support +is not available.

GrpcTransportClass in namespace Google\ApiCore\Transport
+

A gRPC based transport implementation.

+ForwardingCall::getMetadata() — Method in class ForwardingCall
+
+ForwardingCall::getTrailingMetadata() — Method in class ForwardingCall
+
+ForwardingCall::getPeer() — Method in class ForwardingCall
+
+ForwardingServerStreamingCall::getStatus() — Method in class ForwardingServerStreamingCall
+

Wait for the server to send the status, and return it.

+ServerStreamingCallWrapper::getStatus() — Method in class ServerStreamingCallWrapper
+

Return the status of the server stream.

+ServerStreamingCallWrapper::getMetadata() — Method in class ServerStreamingCallWrapper
+
+ServerStreamingCallWrapper::getTrailingMetadata() — Method in class ServerStreamingCallWrapper
+
+ServerStreamingCallWrapper::getPeer() — Method in class ServerStreamingCallWrapper
+
+RestServerStreamingCall::getStatus() — Method in class RestServerStreamingCall
+

Return the status of the server stream. If the call has not been started +this will be null.

+RestServerStreamingCall::getMetadata() — Method in class RestServerStreamingCall
+
+RestServerStreamingCall::getTrailingMetadata() — Method in class RestServerStreamingCall
+

The Rest transport does not support trailing metadata. This is a +passthrough to getMetadata().

+RestServerStreamingCall::getPeer() — Method in class RestServerStreamingCall
+
+Version::getApiCoreVersion() — Method in class Version
+

H

+
+FixedSizeCollection::hasNextCollection() — Method in class FixedSizeCollection
+

Returns true if there are more elements that can be retrieved +from the API.

+Page::hasNextPage() — Method in class Page
+

Returns true if there are more pages that can be retrieved from the +API.

+MockRequestBody::hasNestedMessage() — Method in class MockRequestBody
+
+MockRequestBody::hasBytesValue() — Method in class MockRequestBody
+
+MockRequestBody::hasDurationValue() — Method in class MockRequestBody
+
+MockRequestBody::hasFieldMask() — Method in class MockRequestBody
+
+MockRequestBody::hasInt64Value() — Method in class MockRequestBody
+
+MockRequestBody::hasListValue() — Method in class MockRequestBody
+
+MockRequestBody::hasStringValue() — Method in class MockRequestBody
+
+MockRequestBody::hasStructValue() — Method in class MockRequestBody
+
+MockRequestBody::hasTimestampValue() — Method in class MockRequestBody
+
+MockRequestBody::hasValueValue() — Method in class MockRequestBody
+
+MockRequestBody::hasField1() — Method in class MockRequestBody
+
+MockRequestBody::hasField2() — Method in class MockRequestBody
+
+MockRequestBody::hasField3() — Method in class MockRequestBody
+
HttpUnaryTransportTraitClass in namespace Google\ApiCore\Transport
+

A trait for shared functionality between transports that support only unary RPCs using simple +HTTP requests.

I

+
+ApiStatus::isValidStatus() — Method in class ApiStatus
+
+FixedSizeCollection::iterateCollections() — Method in class FixedSizeCollection
+

Returns an iterator over FixedSizeCollections, starting with this +and making API calls as required until all of the elements have +been retrieved.

InsecureCredentialsWrapperClass in namespace Google\ApiCore
+

For connect to emulator.

+OperationResponse::isDone() — Method in class OperationResponse
+

Check whether the operation has completed.

+Page::iteratePages() — Method in class Page
+

Return an iterator over Page objects, beginning with this object.

+PagedListResponse::iterateAllElements() — Method in class PagedListResponse
+

Returns an iterator over the full list of elements. If the +API response contains a (non-empty) next page token, then +the PagedListResponse object will make calls to the underlying +API to retrieve additional elements as required.

+PagedListResponse::iteratePages() — Method in class PagedListResponse
+

Returns an iterator over pages of results. The pages are +retrieved lazily from the underlying API.

+PagedListResponse::iterateFixedSizeCollections() — Method in class PagedListResponse
+

Returns an iterator over fixed size collections of results.

$ +MockRequestBody#int64_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+MockStubTrait::isExhausted() — Method in class MockStubTrait
+
$ +ForwardingCall#innerCallProperty in class ForwardingCall
+
$ +ForwardingServerStreamingCall#innerCallProperty in class ForwardingServerStreamingCall
+
$ +ForwardingUnaryCall#innerCallProperty in class ForwardingUnaryCall
+
+UnaryInterceptorInterface::interceptUnaryUnary() — Method in class UnaryInterceptorInterface
+

J

+
JsonStreamDecoderClass in namespace Google\ApiCore\Transport\Rest
+

L

+
+RetrySettings::load() — Method in class RetrySettings
+

Constructs an array mapping method names to CallSettings.

+RetrySettings::logicalTimeout() — Method in class RetrySettings
+

Creates an associative array of the {\Google\ApiCore\RetrySettings} timeout fields configured +with the given timeout specified in the $timeout parameter interpreted as a logical timeout.

+Serializer::loadKnownMetadataTypes() — Method in class Serializer
+
$ +MockRequestBody#list_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

M

+
MiddlewareInterfaceClass in namespace Google\ApiCore\Middleware
+

Middlewares must take a MiddlewareInterface as their first constructor +argument {Google\ApiCore\Middleware\ResponseMetadataMiddleware}, which +represents the next middleware in the chain. This next middleware MUST be +invoked by this MiddlewareInterface, and the result must be returned as part +of the __invoke method implementation.

+PathTemplate::matches() — Method in class PathTemplate
+

Check if $path matches a resource string.

+PathTemplate::match() — Method in class PathTemplate
+

Matches a fully qualified path template string.

+AbsoluteResourceTemplate::matches() — Method in class AbsoluteResourceTemplate
+
+AbsoluteResourceTemplate::match() — Method in class AbsoluteResourceTemplate
+
+RelativeResourceTemplate::matches() — Method in class RelativeResourceTemplate
+
+RelativeResourceTemplate::match() — Method in class RelativeResourceTemplate
+
+ResourceTemplateInterface::matches() — Method in class ResourceTemplateInterface
+

Check if $path matches a resource string.

+ResourceTemplateInterface::match() — Method in class ResourceTemplateInterface
+

Matches a given $path to a resource template, and returns an array of bindings between +wildcards / variables in the template and values in the path. If $path does not match the +template, then a ValidationException is thrown.

+Segment::matches() — Method in class Segment
+

Checks if $value matches this Segment.

MessageAwareArrayComparatorClass in namespace Google\ApiCore\Testing
+
MessageAwareExporterClass in namespace Google\ApiCore\Testing
+
MockBidiStreamingCallClass in namespace Google\ApiCore\Testing
+

The MockBidiStreamingCall class is used to mock out the \Grpc\BidiStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BidiStreamingCall.php)

MockClientStreamingCallClass in namespace Google\ApiCore\Testing
+

The MockClientStreamingCall class is used to mock out the \Grpc\ClientStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ClientStreamingCall.php)

MockGrpcTransportClass in namespace Google\ApiCore\Testing
+
MockRequestClass in namespace Google\ApiCore\Testing
+

Generated from protobuf message google.apicore.testing.MockRequest

MockRequestBodyClass in namespace Google\ApiCore\Testing
+

Generated from protobuf message google.apicore.testing.MockRequestBody

MockResponseClass in namespace Google\ApiCore\Testing
+

Generated from protobuf message google.apicore.testing.MockResponse

MockServerStreamingCallClass in namespace Google\ApiCore\Testing
+

The MockServerStreamingCall class is used to mock out the \Grpc\ServerStreamingCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ServerStreamingCall.php)

MockStatusClass in namespace Google\ApiCore\Testing
+
$ +MockStatus#metadataProperty in class MockStatus
+
MockStubTraitClass in namespace Google\ApiCore\Testing
+

The MockStubTrait is used by generated mock stub classes which extent \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +It provides functionality to add responses, get received calls, and overrides the _simpleRequest +method so that the elements of $responses are returned instead of making a call to the API.

MockTransportClass in namespace Google\ApiCore\Testing
+
MockUnaryCallClass in namespace Google\ApiCore\Testing
+

The MockUnaryCall class is used to mock out the \Grpc\UnaryCall class +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/UnaryCall.php)

N

+
$ +MockRequestBody#nameProperty in class MockRequestBody
+

Generated from protobuf field string name = 1;

$ +MockRequestBody#numberProperty in class MockRequestBody
+

Generated from protobuf field uint64 number = 2;

$ +MockRequestBody#nested_messageProperty in class MockRequestBody
+

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

$ +MockResponse#nameProperty in class MockResponse
+

Generated from protobuf field string name = 1;

$ +MockResponse#numberProperty in class MockResponse
+

Generated from protobuf field uint64 number = 2;

$ +MockResponse#next_page_tokenProperty in class MockResponse
+

Generated from protobuf field string next_page_token = 4;

O

+
OperationsMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware which wraps the response in an OperationResponse object.

OptionsFilterMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware which filters the $options array.

OperationResponseClass in namespace Google\ApiCore
+

Response object from a long running API method.

+OperationResponse::operationSucceeded() — Method in class OperationResponse
+

Check whether the operation completed successfully. If the operation is not complete, or if the operation +failed, return false.

+OperationResponse::operationFailed() — Method in class OperationResponse
+

Check whether the operation failed. If the operation is not complete, or if the operation +succeeded, return false.

OptionsTraitClass in namespace Google\ApiCore\Options
+

Trait implemented by any class representing an associative array of PHP options.

+OptionsTrait::offsetExists() — Method in class OptionsTrait
+
+OptionsTrait::offsetGet() — Method in class OptionsTrait
+
+OptionsTrait::offsetSet() — Method in class OptionsTrait
+
+OptionsTrait::offsetUnset() — Method in class OptionsTrait
+
$ +MockRequestBody#oneof_fieldProperty in class MockRequestBody
+

P

+
PagedMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware which wraps the response in an PagedListResponses object.

+OperationResponse::pollUntilComplete() — Method in class OperationResponse
+

Poll the server in a loop until the operation is complete.

PageClass in namespace Google\ApiCore
+

A Page object wraps an API list method response and provides methods +to retrieve additional pages using the page token.

PageStreamingDescriptorClass in namespace Google\ApiCore
+

Holds the description information used for page streaming.

PagedListResponseClass in namespace Google\ApiCore
+

Response object for paged results from a list API method

PathTemplateClass in namespace Google\ApiCore
+

Represents a path template.

PollingTraitClass in namespace Google\ApiCore
+
+RequestBuilder::pathExists() — Method in class RequestBuilder
+
ParserClass in namespace Google\ApiCore\ResourceTemplate
+

Collection of methods for parsing Segments.

+Parser::parseSegments() — Method in class Parser
+

Parses a path into an array of segments.

+MockBidiStreamingCall::popReceivedCalls() — Method in class MockBidiStreamingCall
+

Return a list of calls made to write(), and clear $receivedFuncCalls.

+MockClientStreamingCall::popReceivedCalls() — Method in class MockClientStreamingCall
+

Return a list of calls made to write(), and clear $receivedFuncCalls.

$ +MockRequest#page_tokenProperty in class MockRequest
+

Generated from protobuf field string page_token = 1;

$ +MockRequest#page_sizeProperty in class MockRequest
+

Generated from protobuf field uint64 page_size = 2;

+MockStubTrait::popReceivedCalls() — Method in class MockStubTrait
+

Return a list of calls made to _simpleRequest, and clear $receivedFuncCalls.

+MockStubTrait::popCallObjects() — Method in class MockStubTrait
+
ProtobufGPBEmptyComparatorClass in namespace Google\ApiCore\Testing
+
ProtobufMessageComparatorClass in namespace Google\ApiCore\Testing
+

R

+
+AgentHeader::readGapicVersionFromFile() — Method in class AgentHeader
+

Reads the gapic version string from a VERSION file. In order to determine the file +location, this method follows this procedure:

+
    +
  • accepts a class name $callingClass
  • +
  • identifies the file defining that class
  • +
  • searches up the directory structure for the 'src' directory
  • +
  • looks in the directory above 'src' for a file named VERSION
  • +
+ApiStatus::rpcCodeFromStatus() — Method in class ApiStatus
+
+ApiStatus::rpcCodeFromHttpStatusCode() — Method in class ApiStatus
+

Maps HTTP status codes to Google\Rpc\Code codes.

+BidiStream::read() — Method in class BidiStream
+

Read the next response from the server. Returns null if the streaming call completed +successfully. Throws an ApiException if the streaming call failed.

+ClientStream::readResponse() — Method in class ClientStream
+

Read the response from the server, completing the streaming call.

RequestAutoPopulationMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware that adds autopopulation functionality. This middlware is +added iff auto population settings are present in the resource +descriptor config for the rpc method in context.

ResponseMetadataMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware which transforms $response into [$response, $metadata]

RetryMiddlewareClass in namespace Google\ApiCore\Middleware
+

Middleware that adds retry functionality.

+OperationResponse::reload() — Method in class OperationResponse
+

Reload the status of the operation with a request to the service.

RestTransportOptionsClass in namespace Google\ApiCore\Options\TransportOptions
+

The RestTransportOptions class provides typing to the associative array of options used to +configure {\Google\ApiCore\Transport\RestTransport}.

+PageStreamingDescriptor::requestHasPageSizeField() — Method in class PageStreamingDescriptor
+
+PathTemplate::render() — Method in class PathTemplate
+

Renders a path template using the provided bindings.

RequestBuilderClass in namespace Google\ApiCore
+

Builds a PSR-7 request from a set of request information.

RequestParamsHeaderDescriptorClass in namespace Google\ApiCore
+

Encapsulates request params header metadata.

ResourceHelperTraitClass in namespace Google\ApiCore
+

Provides functionality for loading a resource name template map from a descriptor config, +retrieving a PathTemplate, and parsing values using registered templates.

+AbsoluteResourceTemplate::render() — Method in class AbsoluteResourceTemplate
+
RelativeResourceTemplateClass in namespace Google\ApiCore\ResourceTemplate
+

Represents a relative resource template, meaning that it will never contain a leading slash or +trailing verb (":").

+RelativeResourceTemplate::render() — Method in class RelativeResourceTemplate
+
ResourceTemplateInterfaceClass in namespace Google\ApiCore\ResourceTemplate
+

Represents a resource template that may or may not contain a leading slash, and if a leading +slash is present may contain a trailing verb (":"). (Note that a trailing verb without a +leading slash is not permitted).

+ResourceTemplateInterface::render() — Method in class ResourceTemplateInterface
+

Renders a resource template using the provided bindings.

RetrySettingsClass in namespace Google\ApiCore
+

The RetrySettings class is used to configure retrying and timeouts for RPCs.

+RetrySettings::retriesEnabled() — Method in class RetrySettings
+
+ServerStream::readAll() — Method in class ServerStream
+

A generator which yields results from the server until the streaming call +completes. Throws an ApiException if the streaming call failed.

+ServerStreamingCallInterface::responses() — Method in class ServerStreamingCallInterface
+
+MockBidiStreamingCall::read() — Method in class MockBidiStreamingCall
+
+MockServerStreamingCall::responses() — Method in class MockServerStreamingCall
+
ReceivedRequestClass in namespace Google\ApiCore\Testing
+

Class ReceivedRequest used to hold the function name and request object of a call +make to a mock gRPC stub.

+ForwardingServerStreamingCall::responses() — Method in class ForwardingServerStreamingCall
+
+ServerStreamingCallWrapper::responses() — Method in class ServerStreamingCallWrapper
+
RestTransportClass in namespace Google\ApiCore\Transport
+

A REST based transport implementation.

RestServerStreamingCallClass in namespace Google\ApiCore\Transport\Rest
+

Class RestServerStreamingCall implements \Google\ApiCore\ServerStreamingCallInterface.

+RestServerStreamingCall::responses() — Method in class RestServerStreamingCall
+
+Version::readVersionFile() — Method in class Version
+

Reads a VERSION file and returns the contents. If the file does not +exist, returns "".

S

+
+ApiStatus::statusFromRpcCode() — Method in class ApiStatus
+
+CallOptions::setHeaders() — Method in class CallOptions
+
+CallOptions::setTimeoutMillis() — Method in class CallOptions
+
+CallOptions::setTransportOptions() — Method in class CallOptions
+
+CallOptions::setTransportSpecificOptions() — Method in class CallOptions
+
+CallOptions::setRetrySettings() — Method in class CallOptions
+
+ClientOptions::setApiEndpoint() — Method in class ClientOptions
+
+ClientOptions::setDisableRetries() — Method in class ClientOptions
+
+ClientOptions::setClientConfig() — Method in class ClientOptions
+
+ClientOptions::setCredentials() — Method in class ClientOptions
+
+ClientOptions::setCredentialsConfig() — Method in class ClientOptions
+
+ClientOptions::setTransport() — Method in class ClientOptions
+
+ClientOptions::setTransportConfig() — Method in class ClientOptions
+
+ClientOptions::setVersionFile() — Method in class ClientOptions
+
+ClientOptions::setServiceName() — Method in class ClientOptions
+
+ClientOptions::setLibName() — Method in class ClientOptions
+
+ClientOptions::setLibVersion() — Method in class ClientOptions
+
+ClientOptions::setGapicVersion() — Method in class ClientOptions
+
+ClientOptions::setClientCertSource() — Method in class ClientOptions
+
+ClientOptions::setUniverseDomain() — Method in class ClientOptions
+
+TransportOptions::setGrpc() — Method in class TransportOptions
+
+TransportOptions::setGrpcFallback() — Method in class TransportOptions
+
+TransportOptions::setRest() — Method in class TransportOptions
+
+GrpcFallbackTransportOptions::setHttpHandler() — Method in class GrpcFallbackTransportOptions
+
+GrpcFallbackTransportOptions::setClientCertSource() — Method in class GrpcFallbackTransportOptions
+
+GrpcTransportOptions::setStubOpts() — Method in class GrpcTransportOptions
+
+GrpcTransportOptions::setChannel() — Method in class GrpcTransportOptions
+
+GrpcTransportOptions::setInterceptors() — Method in class GrpcTransportOptions
+
+GrpcTransportOptions::setClientCertSource() — Method in class GrpcTransportOptions
+
+RestTransportOptions::setHttpHandler() — Method in class RestTransportOptions
+
+RestTransportOptions::setClientCertSource() — Method in class RestTransportOptions
+
+RestTransportOptions::setRestClientConfigPath() — Method in class RestTransportOptions
+
+PollingTrait::sleepMillis() — Method in class PollingTrait
+

Protected to allow overriding for tests

SegmentClass in namespace Google\ApiCore\ResourceTemplate
+

Represents a segment in a resource template. This is used internally by RelativeResourceTemplate, +but is not intended for public use and may change without notice.

SerializerClass in namespace Google\ApiCore
+

Collection of methods to help with serialization of protobuf objects

+Serializer::serializeToJson() — Method in class Serializer
+
+Serializer::serializeToPhpArray() — Method in class Serializer
+
ServerStreamClass in namespace Google\ApiCore
+

ServerStream is the response object from a server streaming API call.

ServerStreamingCallInterfaceClass in namespace Google\ApiCore
+
+ServerStreamingCallInterface::start() — Method in class ServerStreamingCallInterface
+

Start the call.

+ServerStreamingCallInterface::setCallCredentials() — Method in class ServerStreamingCallInterface
+

Set the CallCredentials for the underlying Call.

ServiceAddressTraitClass in namespace Google\ApiCore
+

Provides helper methods for service address handling.

+MessageAwareExporter::shortenedExport() — Method in class MessageAwareExporter
+

Exports a value into a single-line string

+MockRequest::setPageToken() — Method in class MockRequest
+

Generated from protobuf field string page_token = 1;

+MockRequest::setPageSize() — Method in class MockRequest
+

Generated from protobuf field uint64 page_size = 2;

$ +MockRequestBody#string_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

$ +MockRequestBody#struct_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+MockRequestBody::setName() — Method in class MockRequestBody
+

Generated from protobuf field string name = 1;

+MockRequestBody::setNumber() — Method in class MockRequestBody
+

Generated from protobuf field uint64 number = 2;

+MockRequestBody::setRepeatedField() — Method in class MockRequestBody
+

Generated from protobuf field repeated string repeated_field = 3;

+MockRequestBody::setNestedMessage() — Method in class MockRequestBody
+

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

+MockRequestBody::setBytesValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

+MockRequestBody::setBytesValueUnwrapped() — Method in class MockRequestBody
+

Sets the field by wrapping a primitive type in a Google\Protobuf\BytesValue object.

+MockRequestBody::setDurationValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

+MockRequestBody::setFieldMask() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

+MockRequestBody::setInt64Value() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

+MockRequestBody::setInt64ValueUnwrapped() — Method in class MockRequestBody
+

Sets the field by wrapping a primitive type in a Google\Protobuf\Int64Value object.

+MockRequestBody::setListValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

+MockRequestBody::setStringValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

+MockRequestBody::setStringValueUnwrapped() — Method in class MockRequestBody
+

Sets the field by wrapping a primitive type in a Google\Protobuf\StringValue object.

+MockRequestBody::setStructValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

+MockRequestBody::setTimestampValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

+MockRequestBody::setValueValue() — Method in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Value value_value = 13;

+MockRequestBody::setField1() — Method in class MockRequestBody
+

Generated from protobuf field string field_1 = 14;

+MockRequestBody::setField2() — Method in class MockRequestBody
+

Generated from protobuf field string field_2 = 15;

+MockRequestBody::setField3() — Method in class MockRequestBody
+

Generated from protobuf field string field_3 = 16;

+MockResponse::setName() — Method in class MockResponse
+

Generated from protobuf field string name = 1;

+MockResponse::setNumber() — Method in class MockResponse
+

Generated from protobuf field uint64 number = 2;

+MockResponse::setResourcesList() — Method in class MockResponse
+

Generated from protobuf field repeated string resources_list = 3;

+MockResponse::setNextPageToken() — Method in class MockResponse
+

Generated from protobuf field string next_page_token = 4;

+MockResponse::setResourcesMap() — Method in class MockResponse
+

Generated from protobuf field map<string, string> resources_map = 5;

+MockStubTrait::stripStatusFromResponses() — Method in class MockStubTrait
+
+MockStubTrait::setStreamingStatus() — Method in class MockStubTrait
+

Set the status object to be used when creating streaming calls.

+MockTransport::setAgentHeaderDescriptor() — Method in class MockTransport
+
+MockTransport::startUnaryCall() — Method in class MockTransport
+

Returns a promise used to execute network requests.

+MockTransport::startBidiStreamingCall() — Method in class MockTransport
+

Starts a bidi streaming call.

+MockTransport::startClientStreamingCall() — Method in class MockTransport
+

Starts a client streaming call.

+MockTransport::startServerStreamingCall() — Method in class MockTransport
+

Starts a server streaming call.

SerializationTraitClass in namespace Google\ApiCore\Testing
+
+GrpcFallbackTransport::startUnaryCall() — Method in class GrpcFallbackTransport
+

Returns a promise used to execute network requests.

+GrpcTransport::startBidiStreamingCall() — Method in class GrpcTransport
+

Starts a bidi streaming call.

+GrpcTransport::startClientStreamingCall() — Method in class GrpcTransport
+

Starts a client streaming call.

+GrpcTransport::startServerStreamingCall() — Method in class GrpcTransport
+

Starts a server streaming call.

+GrpcTransport::startUnaryCall() — Method in class GrpcTransport
+

Returns a promise used to execute network requests.

ServerStreamingCallWrapperClass in namespace Google\ApiCore\Transport\Grpc
+

Class ServerStreamingCallWrapper implements \Google\ApiCore\ServerStreamingCallInterface.

+ServerStreamingCallWrapper::start() — Method in class ServerStreamingCallWrapper
+

Start the call.

+ServerStreamingCallWrapper::setCallCredentials() — Method in class ServerStreamingCallWrapper
+

Set the CallCredentials for the underlying Call.

+HttpUnaryTransportTrait::startClientStreamingCall() — Method in class HttpUnaryTransportTrait
+
{@inheritdoc}
+HttpUnaryTransportTrait::startServerStreamingCall() — Method in class HttpUnaryTransportTrait
+
{@inheritdoc}
+HttpUnaryTransportTrait::startBidiStreamingCall() — Method in class HttpUnaryTransportTrait
+
{@inheritdoc}
+RestTransport::startUnaryCall() — Method in class RestTransport
+

Returns a promise used to execute network requests.

+RestTransport::startServerStreamingCall() — Method in class RestTransport
+

Starts a server streaming call.

+RestServerStreamingCall::start() — Method in class RestServerStreamingCall
+

Start the call.

+RestServerStreamingCall::setCallCredentials() — Method in class RestServerStreamingCall
+

For the REST transport this is a no-op.

+TransportInterface::startBidiStreamingCall() — Method in class TransportInterface
+

Starts a bidi streaming call.

+TransportInterface::startClientStreamingCall() — Method in class TransportInterface
+

Starts a client streaming call.

+TransportInterface::startServerStreamingCall() — Method in class TransportInterface
+

Starts a server streaming call.

+TransportInterface::startUnaryCall() — Method in class TransportInterface
+

Returns a promise used to execute network requests.

T

+
+OptionsTrait::toArray() — Method in class OptionsTrait
+
TransportOptionsClass in namespace Google\ApiCore\Options
+
+Serializer::toSnakeCase() — Method in class Serializer
+

Convert string from camelCase to snake_case

+Serializer::toCamelCase() — Method in class Serializer
+

Convert string from snake_case to camelCase

$ +MockRequestBody#timestamp_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

TransportInterfaceClass in namespace Google\ApiCore\Transport
+

U

+
UnaryInterceptorInterfaceClass in namespace Google\ApiCore\Transport\Grpc
+

Temporary class to support an interceptor-like interface until gRPC interceptor support is +available.

UriTraitClass in namespace Google\ApiCore
+

Provides a light wrapper around often used URI related functions.

V

+
$ +MockRequestBody#value_valueProperty in class MockRequestBody
+

Generated from protobuf field .google.protobuf.Value value_value = 13;

ValidationExceptionClass in namespace Google\ApiCore
+

ValidationException represents a local error (i.e. not during an RPC call).

ValidationTraitClass in namespace Google\ApiCore
+
+ValidationTrait::validate() — Method in class ValidationTrait
+
+ValidationTrait::validateNotNull() — Method in class ValidationTrait
+
VersionClass in namespace Google\ApiCore
+

W

+
+BidiStream::write() — Method in class BidiStream
+

Write request to the server.

+BidiStream::writeAll() — Method in class BidiStream
+

Write all requests in $requests.

+Call::withMessage() — Method in class Call
+
+ClientStream::write() — Method in class ClientStream
+

Write request to the server.

+ClientStream::writeAllAndReadResponse() — Method in class ClientStream
+

Write all data in $dataArray and read the response from the server, completing the streaming +call.

+RetrySettings::with() — Method in class RetrySettings
+

Creates a new instance of RetrySettings that updates the settings in the existing instance +with the settings specified in the $settings parameter.

+MockBidiStreamingCall::write() — Method in class MockBidiStreamingCall
+

Save the request object, to be retrieved via getReceivedCalls()

+MockBidiStreamingCall::writesDone() — Method in class MockBidiStreamingCall
+

Set writesDone to true

+MockClientStreamingCall::wait() — Method in class MockClientStreamingCall
+

Immediately return the preset response object and status.

+MockClientStreamingCall::write() — Method in class MockClientStreamingCall
+

Save the request object, to be retrieved via getReceivedCalls()

+MockUnaryCall::wait() — Method in class MockUnaryCall
+

Immediately return the preset response object and status.

+ForwardingUnaryCall::wait() — Method in class ForwardingUnaryCall
+

Wait for the server to respond with data and a status.

_

+
+ApiException::__construct() — Method in class ApiException
+

ApiException constructor.

+ApiException::__toString() — Method in class ApiException
+

String representation of ApiException

+BidiStream::__construct() — Method in class BidiStream
+

BidiStream constructor.

+Call::__construct() — Method in class Call
+
+ClientStream::__construct() — Method in class ClientStream
+

ClientStream constructor.

+CredentialsWrapper::__construct() — Method in class CredentialsWrapper
+

CredentialsWrapper constructor.

+FixedSizeCollection::__construct() — Method in class FixedSizeCollection
+

FixedSizeCollection constructor.

+InsecureCredentialsWrapper::__construct() — Method in class InsecureCredentialsWrapper
+

CredentialsWrapper constructor.

+CredentialsWrapperMiddleware::__construct() — Method in class CredentialsWrapperMiddleware
+
+CredentialsWrapperMiddleware::__invoke() — Method in class CredentialsWrapperMiddleware
+

Modify or observe the API call request and response.

+FixedHeaderMiddleware::__construct() — Method in class FixedHeaderMiddleware
+
+FixedHeaderMiddleware::__invoke() — Method in class FixedHeaderMiddleware
+

Modify or observe the API call request and response.

+MiddlewareInterface::__invoke() — Method in class MiddlewareInterface
+

Modify or observe the API call request and response.

+OperationsMiddleware::__construct() — Method in class OperationsMiddleware
+
+OperationsMiddleware::__invoke() — Method in class OperationsMiddleware
+

Modify or observe the API call request and response.

+OptionsFilterMiddleware::__construct() — Method in class OptionsFilterMiddleware
+
+OptionsFilterMiddleware::__invoke() — Method in class OptionsFilterMiddleware
+

Modify or observe the API call request and response.

+PagedMiddleware::__construct() — Method in class PagedMiddleware
+
+PagedMiddleware::__invoke() — Method in class PagedMiddleware
+

Modify or observe the API call request and response.

+RequestAutoPopulationMiddleware::__construct() — Method in class RequestAutoPopulationMiddleware
+
+RequestAutoPopulationMiddleware::__invoke() — Method in class RequestAutoPopulationMiddleware
+
+ResponseMetadataMiddleware::__construct() — Method in class ResponseMetadataMiddleware
+
+ResponseMetadataMiddleware::__invoke() — Method in class ResponseMetadataMiddleware
+

Modify or observe the API call request and response.

+RetryMiddleware::__construct() — Method in class RetryMiddleware
+
+RetryMiddleware::__invoke() — Method in class RetryMiddleware
+
+OperationResponse::__construct() — Method in class OperationResponse
+

OperationResponse constructor.

+CallOptions::__construct() — Method in class CallOptions
+
+ClientOptions::__construct() — Method in class ClientOptions
+
+TransportOptions::__construct() — Method in class TransportOptions
+
+GrpcFallbackTransportOptions::__construct() — Method in class GrpcFallbackTransportOptions
+
+GrpcTransportOptions::__construct() — Method in class GrpcTransportOptions
+
+RestTransportOptions::__construct() — Method in class RestTransportOptions
+
+Page::__construct() — Method in class Page
+

Page constructor.

+PageStreamingDescriptor::__construct() — Method in class PageStreamingDescriptor
+
+PagedListResponse::__construct() — Method in class PagedListResponse
+

PagedListResponse constructor.

+PathTemplate::__construct() — Method in class PathTemplate
+

PathTemplate constructor.

+PathTemplate::__toString() — Method in class PathTemplate
+
+RequestBuilder::__construct() — Method in class RequestBuilder
+
+RequestParamsHeaderDescriptor::__construct() — Method in class RequestParamsHeaderDescriptor
+

RequestParamsHeaderDescriptor constructor.

+AbsoluteResourceTemplate::__construct() — Method in class AbsoluteResourceTemplate
+

AbsoluteResourceTemplate constructor.

+AbsoluteResourceTemplate::__toString() — Method in class AbsoluteResourceTemplate
+
+RelativeResourceTemplate::__construct() — Method in class RelativeResourceTemplate
+

RelativeResourceTemplate constructor.

+RelativeResourceTemplate::__toString() — Method in class RelativeResourceTemplate
+
+ResourceTemplateInterface::__toString() — Method in class ResourceTemplateInterface
+
+Segment::__construct() — Method in class Segment
+

Segment constructor.

+Segment::__toString() — Method in class Segment
+
+RetrySettings::__construct() — Method in class RetrySettings
+

Constructs an instance.

+Serializer::__construct() — Method in class Serializer
+

Serializer constructor.

+ServerStream::__construct() — Method in class ServerStream
+

ServerStream constructor.

+MessageAwareArrayComparator::__construct() — Method in class MessageAwareArrayComparator
+
+MockBidiStreamingCall::__construct() — Method in class MockBidiStreamingCall
+

MockBidiStreamingCall constructor.

+MockClientStreamingCall::__construct() — Method in class MockClientStreamingCall
+

MockClientStreamingCall constructor.

+MockGrpcTransport::__construct() — Method in class MockGrpcTransport
+
+MockGrpcTransport::_simpleRequest() — Method in class MockGrpcTransport
+
+MockGrpcTransport::_clientStreamRequest() — Method in class MockGrpcTransport
+
+MockGrpcTransport::_serverStreamRequest() — Method in class MockGrpcTransport
+
+MockGrpcTransport::_bidiRequest() — Method in class MockGrpcTransport
+
+MockRequest::__construct() — Method in class MockRequest
+
Constructor.
+MockRequestBody::__construct() — Method in class MockRequestBody
+
Constructor.
+MockResponse::__construct() — Method in class MockResponse
+
Constructor.
+MockServerStreamingCall::__construct() — Method in class MockServerStreamingCall
+

MockServerStreamingCall constructor.

+MockStatus::__construct() — Method in class MockStatus
+
+MockStubTrait::__construct() — Method in class MockStubTrait
+
+MockStubTrait::_simpleRequest() — Method in class MockStubTrait
+

Overrides the _simpleRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockUnaryCall object that will return the first item from $responses

+MockStubTrait::_clientStreamRequest() — Method in class MockStubTrait
+

Overrides the _clientStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockClientStreamingCall object that will return the first item from $responses

+MockStubTrait::_serverStreamRequest() — Method in class MockStubTrait
+

Overrides the _serverStreamRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockServerStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+MockStubTrait::_bidiRequest() — Method in class MockStubTrait
+

Overrides the _bidiRequest method in \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +Returns a MockBidiStreamingCall object that will stream items from $responses, and return +a final status of $serverStreamingStatus.

+MockTransport::__call() — Method in class MockTransport
+
+MockUnaryCall::__construct() — Method in class MockUnaryCall
+

MockUnaryCall constructor.

+ProtobufMessageComparator::__construct() — Method in class ProtobufMessageComparator
+
+ReceivedRequest::__construct() — Method in class ReceivedRequest
+
+GrpcFallbackTransport::__construct() — Method in class GrpcFallbackTransport
+
+GrpcTransport::__construct() — Method in class GrpcTransport
+
+ForwardingCall::__construct() — Method in class ForwardingCall
+

ForwardingCall constructor.

+ServerStreamingCallWrapper::__construct() — Method in class ServerStreamingCallWrapper
+
+RestTransport::__construct() — Method in class RestTransport
+
+JsonStreamDecoder::__construct() — Method in class JsonStreamDecoder
+

JsonStreamDecoder is a HTTP-JSON response stream decoder for JSON-ecoded +protobuf messages. The response stream must be a JSON array, where the first +byte is the opening of the array (i.e. '['), and the last byte is the closing +of the array (i.e. ']'). Each array item must be a JSON object and comma +separated.

+RestServerStreamingCall::__construct() — Method in class RestServerStreamingCall
+
+
+ + + diff --git a/v1.34.1/doctum-search.json b/v1.34.1/doctum-search.json new file mode 100644 index 000000000..e127f9e90 --- /dev/null +++ b/v1.34.1/doctum-search.json @@ -0,0 +1 @@ +{"items":[{"t":"C","n":"Google\\ApiCore\\AgentHeader","p":"Google/ApiCore/AgentHeader.html","d":"

Class containing functions used to build the Agent header.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\ApiException","p":"Google/ApiCore/ApiException.html","d":"

Represents an exception thrown during an RPC.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\ApiStatus","p":"Google/ApiCore/ApiStatus.html","d":null,"f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\ArrayTrait","p":"Google/ApiCore/ArrayTrait.html","d":"

Provides basic array helper methods.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\BidiStream","p":"Google/ApiCore/BidiStream.html","d":"

BidiStream is the response object from a gRPC bidirectional streaming API call.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\Call","p":"Google/ApiCore/Call.html","d":"

Contains information necessary to manage a network request.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\ClientOptionsTrait","p":"Google/ApiCore/ClientOptionsTrait.html","d":"

Common functions used to work with various clients.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\ClientStream","p":"Google/ApiCore/ClientStream.html","d":"

ClientStream is the response object from a gRPC client streaming API call.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\CredentialsWrapper","p":"Google/ApiCore/CredentialsWrapper.html","d":"

The CredentialsWrapper object provides a wrapper around a FetchAuthTokenInterface.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\FixedSizeCollection","p":"Google/ApiCore/FixedSizeCollection.html","d":"

A collection of elements retrieved using one or more API calls. The\ncollection will attempt to retrieve a fixed number of elements, and\nwill make API calls until that fixed number is reached, or there\nare no more elements to retrieve.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\GPBLabel","p":"Google/ApiCore/GPBLabel.html","d":"

Container class for Protobuf label constants. See FieldDescriptorProto.Label in\nhttps://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\GPBType","p":"Google/ApiCore/GPBType.html","d":"

Container class for Protobuf type constants. See FieldDescriptorProto.Type in\nhttps://github.com/google/protobuf/blob/master/src/google/protobuf/descriptor.proto

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\GapicClientTrait","p":"Google/ApiCore/GapicClientTrait.html","d":"

Common functions used to work with various clients.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\GrpcSupportTrait","p":"Google/ApiCore/GrpcSupportTrait.html","d":"

Provides helper methods for gRPC support.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\InsecureCredentialsWrapper","p":"Google/ApiCore/InsecureCredentialsWrapper.html","d":"

For connect to emulator.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\CredentialsWrapperMiddleware","p":"Google/ApiCore/Middleware/CredentialsWrapperMiddleware.html","d":"

Middleware which adds a CredentialsWrapper object to the call options.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\FixedHeaderMiddleware","p":"Google/ApiCore/Middleware/FixedHeaderMiddleware.html","d":"

Middleware to add fixed headers to an API call.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\MiddlewareInterface","p":"Google/ApiCore/Middleware/MiddlewareInterface.html","d":"

Middlewares must take a MiddlewareInterface as their first constructor\nargument {Google\\ApiCore\\Middleware\\ResponseMetadataMiddleware}, which\nrepresents the next middleware in the chain. This next middleware MUST be\ninvoked by this MiddlewareInterface, and the result must be returned as part\nof the __invoke method implementation.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\OperationsMiddleware","p":"Google/ApiCore/Middleware/OperationsMiddleware.html","d":"

Middleware which wraps the response in an OperationResponse object.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\OptionsFilterMiddleware","p":"Google/ApiCore/Middleware/OptionsFilterMiddleware.html","d":"

Middleware which filters the $options array.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\PagedMiddleware","p":"Google/ApiCore/Middleware/PagedMiddleware.html","d":"

Middleware which wraps the response in an PagedListResponses object.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\RequestAutoPopulationMiddleware","p":"Google/ApiCore/Middleware/RequestAutoPopulationMiddleware.html","d":"

Middleware that adds autopopulation functionality. This middlware is\nadded iff auto population settings are present in the resource\ndescriptor config for the rpc method in context.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\ResponseMetadataMiddleware","p":"Google/ApiCore/Middleware/ResponseMetadataMiddleware.html","d":"

Middleware which transforms $response into [$response, $metadata]

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\Middleware\\RetryMiddleware","p":"Google/ApiCore/Middleware/RetryMiddleware.html","d":"

Middleware that adds retry functionality.

","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"C","n":"Google\\ApiCore\\OperationResponse","p":"Google/ApiCore/OperationResponse.html","d":"

Response object from a long running API method.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\Options\\CallOptions","p":"Google/ApiCore/Options/CallOptions.html","d":"

The CallOptions class provides typing to the associative array of options\npassed to transport RPC methods. See {TransportInterface::startUnaryCall()},\n{@see TransportInterface::startBidiStreamingCall()},\n{TransportInterface::startClientStreamingCall()}, and\n{TransportInterface::startServerStreamingCall()}.

","f":{"n":"Google\\ApiCore\\Options","p":"Google/ApiCore/Options.html"}},{"t":"C","n":"Google\\ApiCore\\Options\\ClientOptions","p":"Google/ApiCore/Options/ClientOptions.html","d":"

The ClientOptions class adds typing to the associative array of options\npassed into each API client constructor. To use this class directly, pass\nthe result of {ClientOptions::toArray} to the client constructor:

","f":{"n":"Google\\ApiCore\\Options","p":"Google/ApiCore/Options.html"}},{"t":"T","n":"Google\\ApiCore\\Options\\OptionsTrait","p":"Google/ApiCore/Options/OptionsTrait.html","d":"

Trait implemented by any class representing an associative array of PHP options.

","f":{"n":"Google\\ApiCore\\Options","p":"Google/ApiCore/Options.html"}},{"t":"C","n":"Google\\ApiCore\\Options\\TransportOptions","p":"Google/ApiCore/Options/TransportOptions.html","d":null,"f":{"n":"Google\\ApiCore\\Options","p":"Google/ApiCore/Options.html"}},{"t":"C","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcFallbackTransportOptions","p":"Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions.html","d":"

The GrpcFallbackTransportOptions class provides typing to the associative array of options used\nto configure {\\Google\\ApiCore\\Transport\\GrpcFallbackTransport}.

","f":{"n":"Google\\ApiCore\\Options\\TransportOptions","p":"Google/ApiCore/Options/TransportOptions.html"}},{"t":"C","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcTransportOptions","p":"Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html","d":"

The GrpcTransportOptions class provides typing to the associative array of options used to\nconfigure {\\Google\\ApiCore\\Transport\\GrpcTransport}.

","f":{"n":"Google\\ApiCore\\Options\\TransportOptions","p":"Google/ApiCore/Options/TransportOptions.html"}},{"t":"C","n":"Google\\ApiCore\\Options\\TransportOptions\\RestTransportOptions","p":"Google/ApiCore/Options/TransportOptions/RestTransportOptions.html","d":"

The RestTransportOptions class provides typing to the associative array of options used to\nconfigure {\\Google\\ApiCore\\Transport\\RestTransport}.

","f":{"n":"Google\\ApiCore\\Options\\TransportOptions","p":"Google/ApiCore/Options/TransportOptions.html"}},{"t":"C","n":"Google\\ApiCore\\Page","p":"Google/ApiCore/Page.html","d":"

A Page object wraps an API list method response and provides methods\nto retrieve additional pages using the page token.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\PageStreamingDescriptor","p":"Google/ApiCore/PageStreamingDescriptor.html","d":"

Holds the description information used for page streaming.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\PagedListResponse","p":"Google/ApiCore/PagedListResponse.html","d":"

Response object for paged results from a list API method

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\PathTemplate","p":"Google/ApiCore/PathTemplate.html","d":"

Represents a path template.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\PollingTrait","p":"Google/ApiCore/PollingTrait.html","d":"","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\RequestBuilder","p":"Google/ApiCore/RequestBuilder.html","d":"

Builds a PSR-7 request from a set of request information.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\RequestParamsHeaderDescriptor","p":"Google/ApiCore/RequestParamsHeaderDescriptor.html","d":"

Encapsulates request params header metadata.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\ResourceHelperTrait","p":"Google/ApiCore/ResourceHelperTrait.html","d":"

Provides functionality for loading a resource name template map from a descriptor config,\nretrieving a PathTemplate, and parsing values using registered templates.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\ResourceTemplate\\AbsoluteResourceTemplate","p":"Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html","d":"

Represents an absolute resource template, meaning that it will always contain a leading slash,\nand may contain a trailing verb (":").

","f":{"n":"Google\\ApiCore\\ResourceTemplate","p":"Google/ApiCore/ResourceTemplate.html"}},{"t":"C","n":"Google\\ApiCore\\ResourceTemplate\\Parser","p":"Google/ApiCore/ResourceTemplate/Parser.html","d":"

Collection of methods for parsing Segments.

","f":{"n":"Google\\ApiCore\\ResourceTemplate","p":"Google/ApiCore/ResourceTemplate.html"}},{"t":"C","n":"Google\\ApiCore\\ResourceTemplate\\RelativeResourceTemplate","p":"Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html","d":"

Represents a relative resource template, meaning that it will never contain a leading slash or\ntrailing verb (":").

","f":{"n":"Google\\ApiCore\\ResourceTemplate","p":"Google/ApiCore/ResourceTemplate.html"}},{"t":"C","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html","d":"

Represents a resource template that may or may not contain a leading slash, and if a leading\nslash is present may contain a trailing verb (":"). (Note that a trailing verb without a\nleading slash is not permitted).

","f":{"n":"Google\\ApiCore\\ResourceTemplate","p":"Google/ApiCore/ResourceTemplate.html"}},{"t":"C","n":"Google\\ApiCore\\ResourceTemplate\\Segment","p":"Google/ApiCore/ResourceTemplate/Segment.html","d":"

Represents a segment in a resource template. This is used internally by RelativeResourceTemplate,\nbut is not intended for public use and may change without notice.

","f":{"n":"Google\\ApiCore\\ResourceTemplate","p":"Google/ApiCore/ResourceTemplate.html"}},{"t":"C","n":"Google\\ApiCore\\RetrySettings","p":"Google/ApiCore/RetrySettings.html","d":"

The RetrySettings class is used to configure retrying and timeouts for RPCs.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\Serializer","p":"Google/ApiCore/Serializer.html","d":"

Collection of methods to help with serialization of protobuf objects

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\ServerStream","p":"Google/ApiCore/ServerStream.html","d":"

ServerStream is the response object from a server streaming API call.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\ServerStreamingCallInterface","p":"Google/ApiCore/ServerStreamingCallInterface.html","d":"","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\ServiceAddressTrait","p":"Google/ApiCore/ServiceAddressTrait.html","d":"

Provides helper methods for service address handling.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\GeneratedTest","p":"Google/ApiCore/Testing/GeneratedTest.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MessageAwareArrayComparator","p":"Google/ApiCore/Testing/MessageAwareArrayComparator.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MessageAwareExporter","p":"Google/ApiCore/Testing/MessageAwareExporter.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockBidiStreamingCall","p":"Google/ApiCore/Testing/MockBidiStreamingCall.html","d":"

The MockBidiStreamingCall class is used to mock out the \\Grpc\\BidiStreamingCall class\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BidiStreamingCall.php)

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockClientStreamingCall","p":"Google/ApiCore/Testing/MockClientStreamingCall.html","d":"

The MockClientStreamingCall class is used to mock out the \\Grpc\\ClientStreamingCall class\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ClientStreamingCall.php)

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockGrpcTransport","p":"Google/ApiCore/Testing/MockGrpcTransport.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockRequest","p":"Google/ApiCore/Testing/MockRequest.html","d":"

Generated from protobuf message google.apicore.testing.MockRequest

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockRequestBody","p":"Google/ApiCore/Testing/MockRequestBody.html","d":"

Generated from protobuf message google.apicore.testing.MockRequestBody

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockResponse","p":"Google/ApiCore/Testing/MockResponse.html","d":"

Generated from protobuf message google.apicore.testing.MockResponse

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockServerStreamingCall","p":"Google/ApiCore/Testing/MockServerStreamingCall.html","d":"

The MockServerStreamingCall class is used to mock out the \\Grpc\\ServerStreamingCall class\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/ServerStreamingCall.php)

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockStatus","p":"Google/ApiCore/Testing/MockStatus.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"T","n":"Google\\ApiCore\\Testing\\MockStubTrait","p":"Google/ApiCore/Testing/MockStubTrait.html","d":"

The MockStubTrait is used by generated mock stub classes which extent \\Grpc\\BaseStub\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php)\nIt provides functionality to add responses, get received calls, and overrides the _simpleRequest\nmethod so that the elements of $responses are returned instead of making a call to the API.

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockTransport","p":"Google/ApiCore/Testing/MockTransport.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\MockUnaryCall","p":"Google/ApiCore/Testing/MockUnaryCall.html","d":"

The MockUnaryCall class is used to mock out the \\Grpc\\UnaryCall class\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/UnaryCall.php)

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\ProtobufGPBEmptyComparator","p":"Google/ApiCore/Testing/ProtobufGPBEmptyComparator.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\ProtobufMessageComparator","p":"Google/ApiCore/Testing/ProtobufMessageComparator.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Testing\\ReceivedRequest","p":"Google/ApiCore/Testing/ReceivedRequest.html","d":"

Class ReceivedRequest used to hold the function name and request object of a call\nmake to a mock gRPC stub.

","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"T","n":"Google\\ApiCore\\Testing\\SerializationTrait","p":"Google/ApiCore/Testing/SerializationTrait.html","d":"","f":{"n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\GrpcFallbackTransport","p":"Google/ApiCore/Transport/GrpcFallbackTransport.html","d":"

A transport that sends protobuf over HTTP 1.1 that can be used when full gRPC support\nis not available.

","f":{"n":"Google\\ApiCore\\Transport","p":"Google/ApiCore/Transport.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\GrpcTransport","p":"Google/ApiCore/Transport/GrpcTransport.html","d":"

A gRPC based transport implementation.

","f":{"n":"Google\\ApiCore\\Transport","p":"Google/ApiCore/Transport.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingCall","p":"Google/ApiCore/Transport/Grpc/ForwardingCall.html","d":"

Class ForwardingCall wraps a \\Grpc\\AbstractCall.

","f":{"n":"Google\\ApiCore\\Transport\\Grpc","p":"Google/ApiCore/Transport/Grpc.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingServerStreamingCall","p":"Google/ApiCore/Transport/Grpc/ForwardingServerStreamingCall.html","d":"

Class ForwardingServerStreamingCall wraps a \\Grpc\\ServerStreamingCall.

","f":{"n":"Google\\ApiCore\\Transport\\Grpc","p":"Google/ApiCore/Transport/Grpc.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingUnaryCall","p":"Google/ApiCore/Transport/Grpc/ForwardingUnaryCall.html","d":"

Class ForwardingUnaryCall wraps a \\Grpc\\UnaryCall.

","f":{"n":"Google\\ApiCore\\Transport\\Grpc","p":"Google/ApiCore/Transport/Grpc.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html","d":"

Class ServerStreamingCallWrapper implements \\Google\\ApiCore\\ServerStreamingCallInterface.

","f":{"n":"Google\\ApiCore\\Transport\\Grpc","p":"Google/ApiCore/Transport/Grpc.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\Grpc\\UnaryInterceptorInterface","p":"Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface.html","d":"

Temporary class to support an interceptor-like interface until gRPC interceptor support is\navailable.

","f":{"n":"Google\\ApiCore\\Transport\\Grpc","p":"Google/ApiCore/Transport/Grpc.html"}},{"t":"T","n":"Google\\ApiCore\\Transport\\HttpUnaryTransportTrait","p":"Google/ApiCore/Transport/HttpUnaryTransportTrait.html","d":"

A trait for shared functionality between transports that support only unary RPCs using simple\nHTTP requests.

","f":{"n":"Google\\ApiCore\\Transport","p":"Google/ApiCore/Transport.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\RestTransport","p":"Google/ApiCore/Transport/RestTransport.html","d":"

A REST based transport implementation.

","f":{"n":"Google\\ApiCore\\Transport","p":"Google/ApiCore/Transport.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\Rest\\JsonStreamDecoder","p":"Google/ApiCore/Transport/Rest/JsonStreamDecoder.html","d":null,"f":{"n":"Google\\ApiCore\\Transport\\Rest","p":"Google/ApiCore/Transport/Rest.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html","d":"

Class RestServerStreamingCall implements \\Google\\ApiCore\\ServerStreamingCallInterface.

","f":{"n":"Google\\ApiCore\\Transport\\Rest","p":"Google/ApiCore/Transport/Rest.html"}},{"t":"C","n":"Google\\ApiCore\\Transport\\TransportInterface","p":"Google/ApiCore/Transport/TransportInterface.html","d":null,"f":{"n":"Google\\ApiCore\\Transport","p":"Google/ApiCore/Transport.html"}},{"t":"T","n":"Google\\ApiCore\\UriTrait","p":"Google/ApiCore/UriTrait.html","d":"

Provides a light wrapper around often used URI related functions.

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\ValidationException","p":"Google/ApiCore/ValidationException.html","d":"

ValidationException represents a local error (i.e. not during an RPC call).

","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"T","n":"Google\\ApiCore\\ValidationTrait","p":"Google/ApiCore/ValidationTrait.html","d":"","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"C","n":"Google\\ApiCore\\Version","p":"Google/ApiCore/Version.html","d":"","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"I","n":"Google\\ApiCore\\Middleware\\MiddlewareInterface","p":"Google/ApiCore/Middleware/MiddlewareInterface.html","f":{"n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"}},{"t":"I","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html","f":{"n":"Google\\ApiCore\\ResourceTemplate","p":"Google/ApiCore/ResourceTemplate.html"}},{"t":"I","n":"Google\\ApiCore\\ServerStreamingCallInterface","p":"Google/ApiCore/ServerStreamingCallInterface.html","f":{"n":"Google\\ApiCore","p":"Google/ApiCore.html"}},{"t":"I","n":"Google\\ApiCore\\Transport\\Grpc\\UnaryInterceptorInterface","p":"Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface.html","f":{"n":"Google\\ApiCore\\Transport\\Grpc","p":"Google/ApiCore/Transport/Grpc.html"}},{"t":"I","n":"Google\\ApiCore\\Transport\\TransportInterface","p":"Google/ApiCore/Transport/TransportInterface.html","f":{"n":"Google\\ApiCore\\Transport","p":"Google/ApiCore/Transport.html"}},{"t":"M","n":"Google\\ApiCore\\AgentHeader::buildAgentHeader","p":"Google/ApiCore/AgentHeader.html#method_buildAgentHeader","d":""},{"t":"M","n":"Google\\ApiCore\\AgentHeader::readGapicVersionFromFile","p":"Google/ApiCore/AgentHeader.html#method_readGapicVersionFromFile","d":"

Reads the gapic version string from a VERSION file. In order to determine the file\nlocation, this method follows this procedure:

\n"},{"t":"M","n":"Google\\ApiCore\\ApiException::__construct","p":"Google/ApiCore/ApiException.html#method___construct","d":"

ApiException constructor.

"},{"t":"M","n":"Google\\ApiCore\\ApiException::getStatus","p":"Google/ApiCore/ApiException.html#method_getStatus","d":null},{"t":"M","n":"Google\\ApiCore\\ApiException::getReason","p":"Google/ApiCore/ApiException.html#method_getReason","d":"

Returns the reason in ErrorInfo for an exception, or null if there is no ErrorInfo.

"},{"t":"M","n":"Google\\ApiCore\\ApiException::getDomain","p":"Google/ApiCore/ApiException.html#method_getDomain","d":"

Returns the domain in ErrorInfo for an exception, or null if there is no ErrorInfo.

"},{"t":"M","n":"Google\\ApiCore\\ApiException::getErrorInfoMetadata","p":"Google/ApiCore/ApiException.html#method_getErrorInfoMetadata","d":"

Returns the metadata in ErrorInfo for an exception, or null if there is no ErrorInfo.

"},{"t":"M","n":"Google\\ApiCore\\ApiException::createFromStdClass","p":"Google/ApiCore/ApiException.html#method_createFromStdClass","d":""},{"t":"M","n":"Google\\ApiCore\\ApiException::createFromApiResponse","p":"Google/ApiCore/ApiException.html#method_createFromApiResponse","d":""},{"t":"M","n":"Google\\ApiCore\\ApiException::createFromRestApiResponse","p":"Google/ApiCore/ApiException.html#method_createFromRestApiResponse","d":"

For REST-based responses, the metadata does not need to be decoded.

"},{"t":"M","n":"Google\\ApiCore\\ApiException::createFromRpcStatus","p":"Google/ApiCore/ApiException.html#method_createFromRpcStatus","d":""},{"t":"M","n":"Google\\ApiCore\\ApiException::createFromRequestException","p":"Google/ApiCore/ApiException.html#method_createFromRequestException","d":"

Creates an ApiException from a GuzzleHttp RequestException.

"},{"t":"M","n":"Google\\ApiCore\\ApiException::getBasicMessage","p":"Google/ApiCore/ApiException.html#method_getBasicMessage","d":""},{"t":"M","n":"Google\\ApiCore\\ApiException::getMetadata","p":"Google/ApiCore/ApiException.html#method_getMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\ApiException::__toString","p":"Google/ApiCore/ApiException.html#method___toString","d":"

String representation of ApiException

"},{"t":"M","n":"Google\\ApiCore\\ApiStatus::isValidStatus","p":"Google/ApiCore/ApiStatus.html#method_isValidStatus","d":""},{"t":"M","n":"Google\\ApiCore\\ApiStatus::statusFromRpcCode","p":"Google/ApiCore/ApiStatus.html#method_statusFromRpcCode","d":""},{"t":"M","n":"Google\\ApiCore\\ApiStatus::rpcCodeFromStatus","p":"Google/ApiCore/ApiStatus.html#method_rpcCodeFromStatus","d":""},{"t":"M","n":"Google\\ApiCore\\ApiStatus::rpcCodeFromHttpStatusCode","p":"Google/ApiCore/ApiStatus.html#method_rpcCodeFromHttpStatusCode","d":"

Maps HTTP status codes to Google\\Rpc\\Code codes.

"},{"t":"M","n":"Google\\ApiCore\\BidiStream::__construct","p":"Google/ApiCore/BidiStream.html#method___construct","d":"

BidiStream constructor.

"},{"t":"M","n":"Google\\ApiCore\\BidiStream::write","p":"Google/ApiCore/BidiStream.html#method_write","d":"

Write request to the server.

"},{"t":"M","n":"Google\\ApiCore\\BidiStream::writeAll","p":"Google/ApiCore/BidiStream.html#method_writeAll","d":"

Write all requests in $requests.

"},{"t":"M","n":"Google\\ApiCore\\BidiStream::closeWrite","p":"Google/ApiCore/BidiStream.html#method_closeWrite","d":"

Inform the server that no more requests will be written. The write() function cannot be\ncalled after closeWrite() is called.

"},{"t":"M","n":"Google\\ApiCore\\BidiStream::read","p":"Google/ApiCore/BidiStream.html#method_read","d":"

Read the next response from the server. Returns null if the streaming call completed\nsuccessfully. Throws an ApiException if the streaming call failed.

"},{"t":"M","n":"Google\\ApiCore\\BidiStream::closeWriteAndReadAll","p":"Google/ApiCore/BidiStream.html#method_closeWriteAndReadAll","d":"

Call closeWrite(), and read all responses from the server, until the streaming call is\ncompleted. Throws an ApiException if the streaming call failed.

"},{"t":"M","n":"Google\\ApiCore\\BidiStream::getBidiStreamingCall","p":"Google/ApiCore/BidiStream.html#method_getBidiStreamingCall","d":"

Return the underlying gRPC call object

"},{"t":"M","n":"Google\\ApiCore\\Call::__construct","p":"Google/ApiCore/Call.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Call::getMethod","p":"Google/ApiCore/Call.html#method_getMethod","d":""},{"t":"M","n":"Google\\ApiCore\\Call::getCallType","p":"Google/ApiCore/Call.html#method_getCallType","d":""},{"t":"M","n":"Google\\ApiCore\\Call::getDecodeType","p":"Google/ApiCore/Call.html#method_getDecodeType","d":""},{"t":"M","n":"Google\\ApiCore\\Call::getMessage","p":"Google/ApiCore/Call.html#method_getMessage","d":""},{"t":"M","n":"Google\\ApiCore\\Call::getDescriptor","p":"Google/ApiCore/Call.html#method_getDescriptor","d":""},{"t":"M","n":"Google\\ApiCore\\Call::withMessage","p":"Google/ApiCore/Call.html#method_withMessage","d":""},{"t":"M","n":"Google\\ApiCore\\ClientStream::__construct","p":"Google/ApiCore/ClientStream.html#method___construct","d":"

ClientStream constructor.

"},{"t":"M","n":"Google\\ApiCore\\ClientStream::write","p":"Google/ApiCore/ClientStream.html#method_write","d":"

Write request to the server.

"},{"t":"M","n":"Google\\ApiCore\\ClientStream::readResponse","p":"Google/ApiCore/ClientStream.html#method_readResponse","d":"

Read the response from the server, completing the streaming call.

"},{"t":"M","n":"Google\\ApiCore\\ClientStream::writeAllAndReadResponse","p":"Google/ApiCore/ClientStream.html#method_writeAllAndReadResponse","d":"

Write all data in $dataArray and read the response from the server, completing the streaming\ncall.

"},{"t":"M","n":"Google\\ApiCore\\ClientStream::getClientStreamingCall","p":"Google/ApiCore/ClientStream.html#method_getClientStreamingCall","d":"

Return the underlying gRPC call object

"},{"t":"M","n":"Google\\ApiCore\\CredentialsWrapper::__construct","p":"Google/ApiCore/CredentialsWrapper.html#method___construct","d":"

CredentialsWrapper constructor.

"},{"t":"M","n":"Google\\ApiCore\\CredentialsWrapper::build","p":"Google/ApiCore/CredentialsWrapper.html#method_build","d":"

Factory method to create a CredentialsWrapper from an array of options.

"},{"t":"M","n":"Google\\ApiCore\\CredentialsWrapper::getQuotaProject","p":"Google/ApiCore/CredentialsWrapper.html#method_getQuotaProject","d":""},{"t":"M","n":"Google\\ApiCore\\CredentialsWrapper::getProjectId","p":"Google/ApiCore/CredentialsWrapper.html#method_getProjectId","d":null},{"t":"M","n":"Google\\ApiCore\\CredentialsWrapper::getBearerString","p":"Google/ApiCore/CredentialsWrapper.html#method_getBearerString","d":""},{"t":"M","n":"Google\\ApiCore\\CredentialsWrapper::getAuthorizationHeaderCallback","p":"Google/ApiCore/CredentialsWrapper.html#method_getAuthorizationHeaderCallback","d":""},{"t":"M","n":"Google\\ApiCore\\CredentialsWrapper::checkUniverseDomain","p":"Google/ApiCore/CredentialsWrapper.html#method_checkUniverseDomain","d":"

Verify that the expected universe domain matches the universe domain from the credentials.

"},{"t":"M","n":"Google\\ApiCore\\FixedSizeCollection::__construct","p":"Google/ApiCore/FixedSizeCollection.html#method___construct","d":"

FixedSizeCollection constructor.

"},{"t":"M","n":"Google\\ApiCore\\FixedSizeCollection::getCollectionSize","p":"Google/ApiCore/FixedSizeCollection.html#method_getCollectionSize","d":"

Returns the number of elements in the collection. This will be\nequal to the collectionSize parameter used at construction\nunless there are no elements remaining to be retrieved.

"},{"t":"M","n":"Google\\ApiCore\\FixedSizeCollection::hasNextCollection","p":"Google/ApiCore/FixedSizeCollection.html#method_hasNextCollection","d":"

Returns true if there are more elements that can be retrieved\nfrom the API.

"},{"t":"M","n":"Google\\ApiCore\\FixedSizeCollection::getNextPageToken","p":"Google/ApiCore/FixedSizeCollection.html#method_getNextPageToken","d":"

Returns a page token that can be passed into the API list\nmethod to retrieve additional elements.

"},{"t":"M","n":"Google\\ApiCore\\FixedSizeCollection::getNextCollection","p":"Google/ApiCore/FixedSizeCollection.html#method_getNextCollection","d":"

Retrieves the next FixedSizeCollection using one or more API calls.

"},{"t":"M","n":"Google\\ApiCore\\FixedSizeCollection::getIterator","p":"Google/ApiCore/FixedSizeCollection.html#method_getIterator","d":"

Returns an iterator over the elements of the collection.

"},{"t":"M","n":"Google\\ApiCore\\FixedSizeCollection::iterateCollections","p":"Google/ApiCore/FixedSizeCollection.html#method_iterateCollections","d":"

Returns an iterator over FixedSizeCollections, starting with this\nand making API calls as required until all of the elements have\nbeen retrieved.

"},{"t":"M","n":"Google\\ApiCore\\GapicClientTrait::addMiddleware","p":"Google/ApiCore/GapicClientTrait.html#method_addMiddleware","d":"

Add a middleware to the call stack by providing a callable which will be\ninvoked at the start of each call, and will return an instance of\n{MiddlewareInterface} when invoked.

"},{"t":"M","n":"Google\\ApiCore\\GapicClientTrait::close","p":"Google/ApiCore/GapicClientTrait.html#method_close","d":"

Initiates an orderly shutdown in which preexisting calls continue but new\ncalls are immediately cancelled.

"},{"t":"M","n":"Google\\ApiCore\\InsecureCredentialsWrapper::__construct","p":"Google/ApiCore/InsecureCredentialsWrapper.html#method___construct","d":"

CredentialsWrapper constructor.

"},{"t":"M","n":"Google\\ApiCore\\InsecureCredentialsWrapper::getAuthorizationHeaderCallback","p":"Google/ApiCore/InsecureCredentialsWrapper.html#method_getAuthorizationHeaderCallback","d":""},{"t":"M","n":"Google\\ApiCore\\InsecureCredentialsWrapper::checkUniverseDomain","p":"Google/ApiCore/InsecureCredentialsWrapper.html#method_checkUniverseDomain","d":"

Verify that the expected universe domain matches the universe domain from the credentials.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\CredentialsWrapperMiddleware::__construct","p":"Google/ApiCore/Middleware/CredentialsWrapperMiddleware.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Middleware\\CredentialsWrapperMiddleware::__invoke","p":"Google/ApiCore/Middleware/CredentialsWrapperMiddleware.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\FixedHeaderMiddleware::__construct","p":"Google/ApiCore/Middleware/FixedHeaderMiddleware.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Middleware\\FixedHeaderMiddleware::__invoke","p":"Google/ApiCore/Middleware/FixedHeaderMiddleware.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\MiddlewareInterface::__invoke","p":"Google/ApiCore/Middleware/MiddlewareInterface.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\OperationsMiddleware::__construct","p":"Google/ApiCore/Middleware/OperationsMiddleware.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Middleware\\OperationsMiddleware::__invoke","p":"Google/ApiCore/Middleware/OperationsMiddleware.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\OptionsFilterMiddleware::__construct","p":"Google/ApiCore/Middleware/OptionsFilterMiddleware.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Middleware\\OptionsFilterMiddleware::__invoke","p":"Google/ApiCore/Middleware/OptionsFilterMiddleware.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\PagedMiddleware::__construct","p":"Google/ApiCore/Middleware/PagedMiddleware.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Middleware\\PagedMiddleware::__invoke","p":"Google/ApiCore/Middleware/PagedMiddleware.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\RequestAutoPopulationMiddleware::__construct","p":"Google/ApiCore/Middleware/RequestAutoPopulationMiddleware.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Middleware\\RequestAutoPopulationMiddleware::__invoke","p":"Google/ApiCore/Middleware/RequestAutoPopulationMiddleware.html#method___invoke","d":""},{"t":"M","n":"Google\\ApiCore\\Middleware\\ResponseMetadataMiddleware::__construct","p":"Google/ApiCore/Middleware/ResponseMetadataMiddleware.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Middleware\\ResponseMetadataMiddleware::__invoke","p":"Google/ApiCore/Middleware/ResponseMetadataMiddleware.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\RetryMiddleware::__construct","p":"Google/ApiCore/Middleware/RetryMiddleware.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Middleware\\RetryMiddleware::__invoke","p":"Google/ApiCore/Middleware/RetryMiddleware.html#method___invoke","d":""},{"t":"M","n":"Google\\ApiCore\\Middleware\\RetryMiddleware::getCurrentTimeMs","p":"Google/ApiCore/Middleware/RetryMiddleware.html#method_getCurrentTimeMs","d":null},{"t":"M","n":"Google\\ApiCore\\OperationResponse::__construct","p":"Google/ApiCore/OperationResponse.html#method___construct","d":"

OperationResponse constructor.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::isDone","p":"Google/ApiCore/OperationResponse.html#method_isDone","d":"

Check whether the operation has completed.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::operationSucceeded","p":"Google/ApiCore/OperationResponse.html#method_operationSucceeded","d":"

Check whether the operation completed successfully. If the operation is not complete, or if the operation\nfailed, return false.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::operationFailed","p":"Google/ApiCore/OperationResponse.html#method_operationFailed","d":"

Check whether the operation failed. If the operation is not complete, or if the operation\nsucceeded, return false.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::getName","p":"Google/ApiCore/OperationResponse.html#method_getName","d":"

Get the formatted name of the operation

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::pollUntilComplete","p":"Google/ApiCore/OperationResponse.html#method_pollUntilComplete","d":"

Poll the server in a loop until the operation is complete.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::reload","p":"Google/ApiCore/OperationResponse.html#method_reload","d":"

Reload the status of the operation with a request to the service.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::getResult","p":"Google/ApiCore/OperationResponse.html#method_getResult","d":"

Return the result of the operation. If operationSucceeded() is false, return null.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::getError","p":"Google/ApiCore/OperationResponse.html#method_getError","d":"

If the operation failed, return the status. If operationFailed() is false, return null.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::getDescriptorOptions","p":"Google/ApiCore/OperationResponse.html#method_getDescriptorOptions","d":"

Get an array containing the values of 'operationReturnType', 'metadataReturnType', and\nthe polling options initialPollDelayMillis, pollDelayMultiplier, maxPollDelayMillis,\nand totalPollTimeoutMillis. The array can be passed as the $options argument to the\nconstructor when creating another OperationResponse object.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::getLastProtoResponse","p":"Google/ApiCore/OperationResponse.html#method_getLastProtoResponse","d":""},{"t":"M","n":"Google\\ApiCore\\OperationResponse::getOperationsClient","p":"Google/ApiCore/OperationResponse.html#method_getOperationsClient","d":""},{"t":"M","n":"Google\\ApiCore\\OperationResponse::cancel","p":"Google/ApiCore/OperationResponse.html#method_cancel","d":"

Cancel the long-running operation.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::delete","p":"Google/ApiCore/OperationResponse.html#method_delete","d":"

Delete the long-running operation.

"},{"t":"M","n":"Google\\ApiCore\\OperationResponse::getMetadata","p":"Google/ApiCore/OperationResponse.html#method_getMetadata","d":"

Get the metadata returned with the last proto response. If a metadata type was provided, then\nthe return value will be of that type - otherwise, the return value will be of type Any. If\nno metadata object is available, returns null.

"},{"t":"M","n":"Google\\ApiCore\\Options\\CallOptions::__construct","p":"Google/ApiCore/Options/CallOptions.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\CallOptions::setHeaders","p":"Google/ApiCore/Options/CallOptions.html#method_setHeaders","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\CallOptions::setTimeoutMillis","p":"Google/ApiCore/Options/CallOptions.html#method_setTimeoutMillis","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\CallOptions::setTransportOptions","p":"Google/ApiCore/Options/CallOptions.html#method_setTransportOptions","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\CallOptions::setTransportSpecificOptions","p":"Google/ApiCore/Options/CallOptions.html#method_setTransportSpecificOptions","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\CallOptions::setRetrySettings","p":"Google/ApiCore/Options/CallOptions.html#method_setRetrySettings","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::__construct","p":"Google/ApiCore/Options/ClientOptions.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setApiEndpoint","p":"Google/ApiCore/Options/ClientOptions.html#method_setApiEndpoint","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setDisableRetries","p":"Google/ApiCore/Options/ClientOptions.html#method_setDisableRetries","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setClientConfig","p":"Google/ApiCore/Options/ClientOptions.html#method_setClientConfig","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setCredentials","p":"Google/ApiCore/Options/ClientOptions.html#method_setCredentials","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setCredentialsConfig","p":"Google/ApiCore/Options/ClientOptions.html#method_setCredentialsConfig","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setTransport","p":"Google/ApiCore/Options/ClientOptions.html#method_setTransport","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setTransportConfig","p":"Google/ApiCore/Options/ClientOptions.html#method_setTransportConfig","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setVersionFile","p":"Google/ApiCore/Options/ClientOptions.html#method_setVersionFile","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setServiceName","p":"Google/ApiCore/Options/ClientOptions.html#method_setServiceName","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setLibName","p":"Google/ApiCore/Options/ClientOptions.html#method_setLibName","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setLibVersion","p":"Google/ApiCore/Options/ClientOptions.html#method_setLibVersion","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setGapicVersion","p":"Google/ApiCore/Options/ClientOptions.html#method_setGapicVersion","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setClientCertSource","p":"Google/ApiCore/Options/ClientOptions.html#method_setClientCertSource","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\ClientOptions::setUniverseDomain","p":"Google/ApiCore/Options/ClientOptions.html#method_setUniverseDomain","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\OptionsTrait::offsetExists","p":"Google/ApiCore/Options/OptionsTrait.html#method_offsetExists","d":null},{"t":"M","n":"Google\\ApiCore\\Options\\OptionsTrait::offsetGet","p":"Google/ApiCore/Options/OptionsTrait.html#method_offsetGet","d":null},{"t":"M","n":"Google\\ApiCore\\Options\\OptionsTrait::offsetSet","p":"Google/ApiCore/Options/OptionsTrait.html#method_offsetSet","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\OptionsTrait::offsetUnset","p":"Google/ApiCore/Options/OptionsTrait.html#method_offsetUnset","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\OptionsTrait::toArray","p":"Google/ApiCore/Options/OptionsTrait.html#method_toArray","d":null},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions::__construct","p":"Google/ApiCore/Options/TransportOptions.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions::setGrpc","p":"Google/ApiCore/Options/TransportOptions.html#method_setGrpc","d":null},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions::setGrpcFallback","p":"Google/ApiCore/Options/TransportOptions.html#method_setGrpcFallback","d":null},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions::setRest","p":"Google/ApiCore/Options/TransportOptions.html#method_setRest","d":null},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcFallbackTransportOptions::__construct","p":"Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcFallbackTransportOptions::setHttpHandler","p":"Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions.html#method_setHttpHandler","d":null},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcFallbackTransportOptions::setClientCertSource","p":"Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions.html#method_setClientCertSource","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcTransportOptions::__construct","p":"Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcTransportOptions::setStubOpts","p":"Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html#method_setStubOpts","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcTransportOptions::setChannel","p":"Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html#method_setChannel","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcTransportOptions::setInterceptors","p":"Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html#method_setInterceptors","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\GrpcTransportOptions::setClientCertSource","p":"Google/ApiCore/Options/TransportOptions/GrpcTransportOptions.html#method_setClientCertSource","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\RestTransportOptions::__construct","p":"Google/ApiCore/Options/TransportOptions/RestTransportOptions.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\RestTransportOptions::setHttpHandler","p":"Google/ApiCore/Options/TransportOptions/RestTransportOptions.html#method_setHttpHandler","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\RestTransportOptions::setClientCertSource","p":"Google/ApiCore/Options/TransportOptions/RestTransportOptions.html#method_setClientCertSource","d":""},{"t":"M","n":"Google\\ApiCore\\Options\\TransportOptions\\RestTransportOptions::setRestClientConfigPath","p":"Google/ApiCore/Options/TransportOptions/RestTransportOptions.html#method_setRestClientConfigPath","d":""},{"t":"M","n":"Google\\ApiCore\\Page::__construct","p":"Google/ApiCore/Page.html#method___construct","d":"

Page constructor.

"},{"t":"M","n":"Google\\ApiCore\\Page::hasNextPage","p":"Google/ApiCore/Page.html#method_hasNextPage","d":"

Returns true if there are more pages that can be retrieved from the\nAPI.

"},{"t":"M","n":"Google\\ApiCore\\Page::getNextPageToken","p":"Google/ApiCore/Page.html#method_getNextPageToken","d":"

Returns the next page token from the response.

"},{"t":"M","n":"Google\\ApiCore\\Page::getNextPage","p":"Google/ApiCore/Page.html#method_getNextPage","d":"

Retrieves the next Page object using the next page token.

"},{"t":"M","n":"Google\\ApiCore\\Page::getPageElementCount","p":"Google/ApiCore/Page.html#method_getPageElementCount","d":"

Return the number of elements in the response.

"},{"t":"M","n":"Google\\ApiCore\\Page::getIterator","p":"Google/ApiCore/Page.html#method_getIterator","d":"

Return an iterator over the elements in the response.

"},{"t":"M","n":"Google\\ApiCore\\Page::iteratePages","p":"Google/ApiCore/Page.html#method_iteratePages","d":"

Return an iterator over Page objects, beginning with this object.

"},{"t":"M","n":"Google\\ApiCore\\Page::getRequestObject","p":"Google/ApiCore/Page.html#method_getRequestObject","d":"

Gets the request object used to generate the Page.

"},{"t":"M","n":"Google\\ApiCore\\Page::getResponseObject","p":"Google/ApiCore/Page.html#method_getResponseObject","d":"

Gets the API response object.

"},{"t":"M","n":"Google\\ApiCore\\Page::expandToFixedSizeCollection","p":"Google/ApiCore/Page.html#method_expandToFixedSizeCollection","d":"

Returns a collection of elements with a fixed size set by\nthe collectionSize parameter. The collection will only contain\nfewer than collectionSize elements if there are no more\npages to be retrieved from the server.

"},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::__construct","p":"Google/ApiCore/PageStreamingDescriptor.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::createFromFields","p":"Google/ApiCore/PageStreamingDescriptor.html#method_createFromFields","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::getRequestPageTokenGetMethod","p":"Google/ApiCore/PageStreamingDescriptor.html#method_getRequestPageTokenGetMethod","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::getRequestPageSizeGetMethod","p":"Google/ApiCore/PageStreamingDescriptor.html#method_getRequestPageSizeGetMethod","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::requestHasPageSizeField","p":"Google/ApiCore/PageStreamingDescriptor.html#method_requestHasPageSizeField","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::getResponsePageTokenGetMethod","p":"Google/ApiCore/PageStreamingDescriptor.html#method_getResponsePageTokenGetMethod","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::getResourcesGetMethod","p":"Google/ApiCore/PageStreamingDescriptor.html#method_getResourcesGetMethod","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::getRequestPageTokenSetMethod","p":"Google/ApiCore/PageStreamingDescriptor.html#method_getRequestPageTokenSetMethod","d":""},{"t":"M","n":"Google\\ApiCore\\PageStreamingDescriptor::getRequestPageSizeSetMethod","p":"Google/ApiCore/PageStreamingDescriptor.html#method_getRequestPageSizeSetMethod","d":""},{"t":"M","n":"Google\\ApiCore\\PagedListResponse::__construct","p":"Google/ApiCore/PagedListResponse.html#method___construct","d":"

PagedListResponse constructor.

"},{"t":"M","n":"Google\\ApiCore\\PagedListResponse::iterateAllElements","p":"Google/ApiCore/PagedListResponse.html#method_iterateAllElements","d":"

Returns an iterator over the full list of elements. If the\nAPI response contains a (non-empty) next page token, then\nthe PagedListResponse object will make calls to the underlying\nAPI to retrieve additional elements as required.

"},{"t":"M","n":"Google\\ApiCore\\PagedListResponse::getIterator","p":"Google/ApiCore/PagedListResponse.html#method_getIterator","d":"

Returns an iterator over the full list of elements. If the\nAPI response contains a (non-empty) next page token, then\nthe PagedListResponse object will make calls to the underlying\nAPI to retrieve additional elements as required.

"},{"t":"M","n":"Google\\ApiCore\\PagedListResponse::getPage","p":"Google/ApiCore/PagedListResponse.html#method_getPage","d":"

Return the current page of results.

"},{"t":"M","n":"Google\\ApiCore\\PagedListResponse::iteratePages","p":"Google/ApiCore/PagedListResponse.html#method_iteratePages","d":"

Returns an iterator over pages of results. The pages are\nretrieved lazily from the underlying API.

"},{"t":"M","n":"Google\\ApiCore\\PagedListResponse::expandToFixedSizeCollection","p":"Google/ApiCore/PagedListResponse.html#method_expandToFixedSizeCollection","d":"

Returns a collection of elements with a fixed size set by\nthe collectionSize parameter. The collection will only contain\nfewer than collectionSize elements if there are no more\npages to be retrieved from the server.

"},{"t":"M","n":"Google\\ApiCore\\PagedListResponse::iterateFixedSizeCollections","p":"Google/ApiCore/PagedListResponse.html#method_iterateFixedSizeCollections","d":"

Returns an iterator over fixed size collections of results.

"},{"t":"M","n":"Google\\ApiCore\\PathTemplate::__construct","p":"Google/ApiCore/PathTemplate.html#method___construct","d":"

PathTemplate constructor.

"},{"t":"M","n":"Google\\ApiCore\\PathTemplate::__toString","p":"Google/ApiCore/PathTemplate.html#method___toString","d":""},{"t":"M","n":"Google\\ApiCore\\PathTemplate::render","p":"Google/ApiCore/PathTemplate.html#method_render","d":"

Renders a path template using the provided bindings.

"},{"t":"M","n":"Google\\ApiCore\\PathTemplate::matches","p":"Google/ApiCore/PathTemplate.html#method_matches","d":"

Check if $path matches a resource string.

"},{"t":"M","n":"Google\\ApiCore\\PathTemplate::match","p":"Google/ApiCore/PathTemplate.html#method_match","d":"

Matches a fully qualified path template string.

"},{"t":"M","n":"Google\\ApiCore\\PollingTrait::getCurrentTimeMillis","p":"Google/ApiCore/PollingTrait.html#method_getCurrentTimeMillis","d":"

Protected to allow overriding for tests

"},{"t":"M","n":"Google\\ApiCore\\PollingTrait::sleepMillis","p":"Google/ApiCore/PollingTrait.html#method_sleepMillis","d":"

Protected to allow overriding for tests

"},{"t":"M","n":"Google\\ApiCore\\RequestBuilder::__construct","p":"Google/ApiCore/RequestBuilder.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\RequestBuilder::pathExists","p":"Google/ApiCore/RequestBuilder.html#method_pathExists","d":""},{"t":"M","n":"Google\\ApiCore\\RequestBuilder::build","p":"Google/ApiCore/RequestBuilder.html#method_build","d":""},{"t":"M","n":"Google\\ApiCore\\RequestParamsHeaderDescriptor::__construct","p":"Google/ApiCore/RequestParamsHeaderDescriptor.html#method___construct","d":"

RequestParamsHeaderDescriptor constructor.

"},{"t":"M","n":"Google\\ApiCore\\RequestParamsHeaderDescriptor::getHeader","p":"Google/ApiCore/RequestParamsHeaderDescriptor.html#method_getHeader","d":"

Returns an associative array that contains request params header metadata.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\AbsoluteResourceTemplate::__construct","p":"Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html#method___construct","d":"

AbsoluteResourceTemplate constructor.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\AbsoluteResourceTemplate::__toString","p":"Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html#method___toString","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\AbsoluteResourceTemplate::render","p":"Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html#method_render","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\AbsoluteResourceTemplate::matches","p":"Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html#method_matches","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\AbsoluteResourceTemplate::match","p":"Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate.html#method_match","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Parser::parseSegments","p":"Google/ApiCore/ResourceTemplate/Parser.html#method_parseSegments","d":"

Parses a path into an array of segments.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\RelativeResourceTemplate::__construct","p":"Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html#method___construct","d":"

RelativeResourceTemplate constructor.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\RelativeResourceTemplate::__toString","p":"Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html#method___toString","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\RelativeResourceTemplate::render","p":"Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html#method_render","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\RelativeResourceTemplate::matches","p":"Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html#method_matches","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\RelativeResourceTemplate::match","p":"Google/ApiCore/ResourceTemplate/RelativeResourceTemplate.html#method_match","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::__toString","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method___toString","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::render","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method_render","d":"

Renders a resource template using the provided bindings.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::matches","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method_matches","d":"

Check if $path matches a resource string.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::match","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method_match","d":"

Matches a given $path to a resource template, and returns an array of bindings between\nwildcards / variables in the template and values in the path. If $path does not match the\ntemplate, then a ValidationException is thrown.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::__construct","p":"Google/ApiCore/ResourceTemplate/Segment.html#method___construct","d":"

Segment constructor.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::__toString","p":"Google/ApiCore/ResourceTemplate/Segment.html#method___toString","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::matches","p":"Google/ApiCore/ResourceTemplate/Segment.html#method_matches","d":"

Checks if $value matches this Segment.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::getSegmentType","p":"Google/ApiCore/ResourceTemplate/Segment.html#method_getSegmentType","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::getKey","p":"Google/ApiCore/ResourceTemplate/Segment.html#method_getKey","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::getValue","p":"Google/ApiCore/ResourceTemplate/Segment.html#method_getValue","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::getTemplate","p":"Google/ApiCore/ResourceTemplate/Segment.html#method_getTemplate","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\Segment::getSeparator","p":"Google/ApiCore/ResourceTemplate/Segment.html#method_getSeparator","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::__construct","p":"Google/ApiCore/RetrySettings.html#method___construct","d":"

Constructs an instance.

"},{"t":"M","n":"Google\\ApiCore\\RetrySettings::load","p":"Google/ApiCore/RetrySettings.html#method_load","d":"

Constructs an array mapping method names to CallSettings.

"},{"t":"M","n":"Google\\ApiCore\\RetrySettings::constructDefault","p":"Google/ApiCore/RetrySettings.html#method_constructDefault","d":null},{"t":"M","n":"Google\\ApiCore\\RetrySettings::with","p":"Google/ApiCore/RetrySettings.html#method_with","d":"

Creates a new instance of RetrySettings that updates the settings in the existing instance\nwith the settings specified in the $settings parameter.

"},{"t":"M","n":"Google\\ApiCore\\RetrySettings::logicalTimeout","p":"Google/ApiCore/RetrySettings.html#method_logicalTimeout","d":"

Creates an associative array of the {\\Google\\ApiCore\\RetrySettings} timeout fields configured\nwith the given timeout specified in the $timeout parameter interpreted as a logical timeout.

"},{"t":"M","n":"Google\\ApiCore\\RetrySettings::retriesEnabled","p":"Google/ApiCore/RetrySettings.html#method_retriesEnabled","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getNoRetriesRpcTimeoutMillis","p":"Google/ApiCore/RetrySettings.html#method_getNoRetriesRpcTimeoutMillis","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getRetryableCodes","p":"Google/ApiCore/RetrySettings.html#method_getRetryableCodes","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getInitialRetryDelayMillis","p":"Google/ApiCore/RetrySettings.html#method_getInitialRetryDelayMillis","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getRetryDelayMultiplier","p":"Google/ApiCore/RetrySettings.html#method_getRetryDelayMultiplier","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getMaxRetryDelayMillis","p":"Google/ApiCore/RetrySettings.html#method_getMaxRetryDelayMillis","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getInitialRpcTimeoutMillis","p":"Google/ApiCore/RetrySettings.html#method_getInitialRpcTimeoutMillis","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getRpcTimeoutMultiplier","p":"Google/ApiCore/RetrySettings.html#method_getRpcTimeoutMultiplier","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getMaxRpcTimeoutMillis","p":"Google/ApiCore/RetrySettings.html#method_getMaxRpcTimeoutMillis","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getTotalTimeoutMillis","p":"Google/ApiCore/RetrySettings.html#method_getTotalTimeoutMillis","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getMaxRetries","p":"Google/ApiCore/RetrySettings.html#method_getMaxRetries","d":""},{"t":"M","n":"Google\\ApiCore\\RetrySettings::getRetryFunction","p":"Google/ApiCore/RetrySettings.html#method_getRetryFunction","d":""},{"t":"M","n":"Google\\ApiCore\\Serializer::__construct","p":"Google/ApiCore/Serializer.html#method___construct","d":"

Serializer constructor.

"},{"t":"M","n":"Google\\ApiCore\\Serializer::encodeMessage","p":"Google/ApiCore/Serializer.html#method_encodeMessage","d":"

Encode protobuf message as a PHP array

"},{"t":"M","n":"Google\\ApiCore\\Serializer::decodeMessage","p":"Google/ApiCore/Serializer.html#method_decodeMessage","d":"

Decode PHP array into the specified protobuf message

"},{"t":"M","n":"Google\\ApiCore\\Serializer::serializeToJson","p":"Google/ApiCore/Serializer.html#method_serializeToJson","d":""},{"t":"M","n":"Google\\ApiCore\\Serializer::serializeToPhpArray","p":"Google/ApiCore/Serializer.html#method_serializeToPhpArray","d":""},{"t":"M","n":"Google\\ApiCore\\Serializer::decodeMetadata","p":"Google/ApiCore/Serializer.html#method_decodeMetadata","d":"

Decode metadata received from gRPC status object

"},{"t":"M","n":"Google\\ApiCore\\Serializer::decodeAnyMessages","p":"Google/ApiCore/Serializer.html#method_decodeAnyMessages","d":"

Decode an array of Any messages into a printable PHP array.

"},{"t":"M","n":"Google\\ApiCore\\Serializer::getGetter","p":"Google/ApiCore/Serializer.html#method_getGetter","d":""},{"t":"M","n":"Google\\ApiCore\\Serializer::getSetter","p":"Google/ApiCore/Serializer.html#method_getSetter","d":""},{"t":"M","n":"Google\\ApiCore\\Serializer::toSnakeCase","p":"Google/ApiCore/Serializer.html#method_toSnakeCase","d":"

Convert string from camelCase to snake_case

"},{"t":"M","n":"Google\\ApiCore\\Serializer::toCamelCase","p":"Google/ApiCore/Serializer.html#method_toCamelCase","d":"

Convert string from snake_case to camelCase

"},{"t":"M","n":"Google\\ApiCore\\Serializer::loadKnownMetadataTypes","p":"Google/ApiCore/Serializer.html#method_loadKnownMetadataTypes","d":null},{"t":"M","n":"Google\\ApiCore\\ServerStream::__construct","p":"Google/ApiCore/ServerStream.html#method___construct","d":"

ServerStream constructor.

"},{"t":"M","n":"Google\\ApiCore\\ServerStream::readAll","p":"Google/ApiCore/ServerStream.html#method_readAll","d":"

A generator which yields results from the server until the streaming call\ncompletes. Throws an ApiException if the streaming call failed.

"},{"t":"M","n":"Google\\ApiCore\\ServerStream::getServerStreamingCall","p":"Google/ApiCore/ServerStream.html#method_getServerStreamingCall","d":"

Return the underlying call object.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::start","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_start","d":"

Start the call.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::responses","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_responses","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getStatus","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getStatus","d":"

Return the status of the server stream.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getMetadata","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getTrailingMetadata","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getTrailingMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getPeer","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getPeer","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::cancel","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_cancel","d":"

Cancels the call.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::setCallCredentials","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_setCallCredentials","d":"

Set the CallCredentials for the underlying Call.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\GeneratedTest::assertProtobufEquals","p":"Google/ApiCore/Testing/GeneratedTest.html#method_assertProtobufEquals","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MessageAwareArrayComparator::__construct","p":"Google/ApiCore/Testing/MessageAwareArrayComparator.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MessageAwareExporter::shortenedExport","p":"Google/ApiCore/Testing/MessageAwareExporter.html#method_shortenedExport","d":"

Exports a value into a single-line string

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockBidiStreamingCall::__construct","p":"Google/ApiCore/Testing/MockBidiStreamingCall.html#method___construct","d":"

MockBidiStreamingCall constructor.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockBidiStreamingCall::read","p":"Google/ApiCore/Testing/MockBidiStreamingCall.html#method_read","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockBidiStreamingCall::getStatus","p":"Google/ApiCore/Testing/MockBidiStreamingCall.html#method_getStatus","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockBidiStreamingCall::write","p":"Google/ApiCore/Testing/MockBidiStreamingCall.html#method_write","d":"

Save the request object, to be retrieved via getReceivedCalls()

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockBidiStreamingCall::writesDone","p":"Google/ApiCore/Testing/MockBidiStreamingCall.html#method_writesDone","d":"

Set writesDone to true

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockBidiStreamingCall::popReceivedCalls","p":"Google/ApiCore/Testing/MockBidiStreamingCall.html#method_popReceivedCalls","d":"

Return a list of calls made to write(), and clear $receivedFuncCalls.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockClientStreamingCall::__construct","p":"Google/ApiCore/Testing/MockClientStreamingCall.html#method___construct","d":"

MockClientStreamingCall constructor.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockClientStreamingCall::wait","p":"Google/ApiCore/Testing/MockClientStreamingCall.html#method_wait","d":"

Immediately return the preset response object and status.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockClientStreamingCall::write","p":"Google/ApiCore/Testing/MockClientStreamingCall.html#method_write","d":"

Save the request object, to be retrieved via getReceivedCalls()

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockClientStreamingCall::popReceivedCalls","p":"Google/ApiCore/Testing/MockClientStreamingCall.html#method_popReceivedCalls","d":"

Return a list of calls made to write(), and clear $receivedFuncCalls.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockGrpcTransport::__construct","p":"Google/ApiCore/Testing/MockGrpcTransport.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockGrpcTransport::_simpleRequest","p":"Google/ApiCore/Testing/MockGrpcTransport.html#method__simpleRequest","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockGrpcTransport::_clientStreamRequest","p":"Google/ApiCore/Testing/MockGrpcTransport.html#method__clientStreamRequest","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockGrpcTransport::_serverStreamRequest","p":"Google/ApiCore/Testing/MockGrpcTransport.html#method__serverStreamRequest","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockGrpcTransport::_bidiRequest","p":"Google/ApiCore/Testing/MockGrpcTransport.html#method__bidiRequest","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockGrpcTransport::getRequestArguments","p":"Google/ApiCore/Testing/MockGrpcTransport.html#method_getRequestArguments","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequest::__construct","p":"Google/ApiCore/Testing/MockRequest.html#method___construct","d":"Constructor."},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequest::getPageToken","p":"Google/ApiCore/Testing/MockRequest.html#method_getPageToken","d":"

Generated from protobuf field string page_token = 1;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequest::setPageToken","p":"Google/ApiCore/Testing/MockRequest.html#method_setPageToken","d":"

Generated from protobuf field string page_token = 1;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequest::getPageSize","p":"Google/ApiCore/Testing/MockRequest.html#method_getPageSize","d":"

Generated from protobuf field uint64 page_size = 2;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequest::setPageSize","p":"Google/ApiCore/Testing/MockRequest.html#method_setPageSize","d":"

Generated from protobuf field uint64 page_size = 2;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::__construct","p":"Google/ApiCore/Testing/MockRequestBody.html#method___construct","d":"Constructor."},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getName","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getName","d":"

Generated from protobuf field string name = 1;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setName","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setName","d":"

Generated from protobuf field string name = 1;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getNumber","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getNumber","d":"

Generated from protobuf field uint64 number = 2;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setNumber","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setNumber","d":"

Generated from protobuf field uint64 number = 2;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getRepeatedField","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getRepeatedField","d":"

Generated from protobuf field repeated string repeated_field = 3;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setRepeatedField","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setRepeatedField","d":"

Generated from protobuf field repeated string repeated_field = 3;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getNestedMessage","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getNestedMessage","d":"

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasNestedMessage","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasNestedMessage","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearNestedMessage","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearNestedMessage","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setNestedMessage","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setNestedMessage","d":"

Generated from protobuf field .google.apicore.testing.MockRequestBody nested_message = 4;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getBytesValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getBytesValue","d":"

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasBytesValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasBytesValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearBytesValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearBytesValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getBytesValueUnwrapped","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getBytesValueUnwrapped","d":"

Returns the unboxed value from getBytesValue()

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setBytesValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setBytesValue","d":"

Generated from protobuf field .google.protobuf.BytesValue bytes_value = 5;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setBytesValueUnwrapped","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setBytesValueUnwrapped","d":"

Sets the field by wrapping a primitive type in a Google\\Protobuf\\BytesValue object.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getDurationValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getDurationValue","d":"

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasDurationValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasDurationValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearDurationValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearDurationValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setDurationValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setDurationValue","d":"

Generated from protobuf field .google.protobuf.Duration duration_value = 6;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getFieldMask","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getFieldMask","d":"

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasFieldMask","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasFieldMask","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearFieldMask","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearFieldMask","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setFieldMask","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setFieldMask","d":"

Generated from protobuf field .google.protobuf.FieldMask field_mask = 7;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getInt64Value","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getInt64Value","d":"

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasInt64Value","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasInt64Value","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearInt64Value","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearInt64Value","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getInt64ValueUnwrapped","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getInt64ValueUnwrapped","d":"

Returns the unboxed value from getInt64Value()

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setInt64Value","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setInt64Value","d":"

Generated from protobuf field .google.protobuf.Int64Value int64_value = 8;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setInt64ValueUnwrapped","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setInt64ValueUnwrapped","d":"

Sets the field by wrapping a primitive type in a Google\\Protobuf\\Int64Value object.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getListValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getListValue","d":"

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasListValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasListValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearListValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearListValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setListValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setListValue","d":"

Generated from protobuf field .google.protobuf.ListValue list_value = 9;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getStringValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getStringValue","d":"

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasStringValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasStringValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearStringValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearStringValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getStringValueUnwrapped","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getStringValueUnwrapped","d":"

Returns the unboxed value from getStringValue()

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setStringValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setStringValue","d":"

Generated from protobuf field .google.protobuf.StringValue string_value = 10;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setStringValueUnwrapped","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setStringValueUnwrapped","d":"

Sets the field by wrapping a primitive type in a Google\\Protobuf\\StringValue object.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getStructValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getStructValue","d":"

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasStructValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasStructValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearStructValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearStructValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setStructValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setStructValue","d":"

Generated from protobuf field .google.protobuf.Struct struct_value = 11;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getTimestampValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getTimestampValue","d":"

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasTimestampValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasTimestampValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearTimestampValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearTimestampValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setTimestampValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setTimestampValue","d":"

Generated from protobuf field .google.protobuf.Timestamp timestamp_value = 12;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getValueValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getValueValue","d":"

Generated from protobuf field .google.protobuf.Value value_value = 13;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasValueValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasValueValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::clearValueValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_clearValueValue","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setValueValue","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setValueValue","d":"

Generated from protobuf field .google.protobuf.Value value_value = 13;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getField1","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getField1","d":"

Generated from protobuf field string field_1 = 14;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasField1","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasField1","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setField1","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setField1","d":"

Generated from protobuf field string field_1 = 14;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getField2","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getField2","d":"

Generated from protobuf field string field_2 = 15;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasField2","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasField2","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setField2","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setField2","d":"

Generated from protobuf field string field_2 = 15;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getField3","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getField3","d":"

Generated from protobuf field string field_3 = 16;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::hasField3","p":"Google/ApiCore/Testing/MockRequestBody.html#method_hasField3","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::setField3","p":"Google/ApiCore/Testing/MockRequestBody.html#method_setField3","d":"

Generated from protobuf field string field_3 = 16;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockRequestBody::getOneofField","p":"Google/ApiCore/Testing/MockRequestBody.html#method_getOneofField","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::__construct","p":"Google/ApiCore/Testing/MockResponse.html#method___construct","d":"Constructor."},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::getName","p":"Google/ApiCore/Testing/MockResponse.html#method_getName","d":"

Generated from protobuf field string name = 1;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::setName","p":"Google/ApiCore/Testing/MockResponse.html#method_setName","d":"

Generated from protobuf field string name = 1;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::getNumber","p":"Google/ApiCore/Testing/MockResponse.html#method_getNumber","d":"

Generated from protobuf field uint64 number = 2;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::setNumber","p":"Google/ApiCore/Testing/MockResponse.html#method_setNumber","d":"

Generated from protobuf field uint64 number = 2;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::getResourcesList","p":"Google/ApiCore/Testing/MockResponse.html#method_getResourcesList","d":"

Generated from protobuf field repeated string resources_list = 3;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::setResourcesList","p":"Google/ApiCore/Testing/MockResponse.html#method_setResourcesList","d":"

Generated from protobuf field repeated string resources_list = 3;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::getNextPageToken","p":"Google/ApiCore/Testing/MockResponse.html#method_getNextPageToken","d":"

Generated from protobuf field string next_page_token = 4;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::setNextPageToken","p":"Google/ApiCore/Testing/MockResponse.html#method_setNextPageToken","d":"

Generated from protobuf field string next_page_token = 4;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::getResourcesMap","p":"Google/ApiCore/Testing/MockResponse.html#method_getResourcesMap","d":"

Generated from protobuf field map<string, string> resources_map = 5;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockResponse::setResourcesMap","p":"Google/ApiCore/Testing/MockResponse.html#method_setResourcesMap","d":"

Generated from protobuf field map<string, string> resources_map = 5;

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockServerStreamingCall::__construct","p":"Google/ApiCore/Testing/MockServerStreamingCall.html#method___construct","d":"

MockServerStreamingCall constructor.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockServerStreamingCall::responses","p":"Google/ApiCore/Testing/MockServerStreamingCall.html#method_responses","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockServerStreamingCall::getStatus","p":"Google/ApiCore/Testing/MockServerStreamingCall.html#method_getStatus","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStatus::__construct","p":"Google/ApiCore/Testing/MockStatus.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::__construct","p":"Google/ApiCore/Testing/MockStubTrait.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::_simpleRequest","p":"Google/ApiCore/Testing/MockStubTrait.html#method__simpleRequest","d":"

Overrides the _simpleRequest method in \\Grpc\\BaseStub\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php)\nReturns a MockUnaryCall object that will return the first item from $responses

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::_clientStreamRequest","p":"Google/ApiCore/Testing/MockStubTrait.html#method__clientStreamRequest","d":"

Overrides the _clientStreamRequest method in \\Grpc\\BaseStub\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php)\nReturns a MockClientStreamingCall object that will return the first item from $responses

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::_serverStreamRequest","p":"Google/ApiCore/Testing/MockStubTrait.html#method__serverStreamRequest","d":"

Overrides the _serverStreamRequest method in \\Grpc\\BaseStub\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php)\nReturns a MockServerStreamingCall object that will stream items from $responses, and return\na final status of $serverStreamingStatus.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::_bidiRequest","p":"Google/ApiCore/Testing/MockStubTrait.html#method__bidiRequest","d":"

Overrides the _bidiRequest method in \\Grpc\\BaseStub\n(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php)\nReturns a MockBidiStreamingCall object that will stream items from $responses, and return\na final status of $serverStreamingStatus.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::stripStatusFromResponses","p":"Google/ApiCore/Testing/MockStubTrait.html#method_stripStatusFromResponses","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::addResponse","p":"Google/ApiCore/Testing/MockStubTrait.html#method_addResponse","d":"

Add a response object, and an optional status, to the list of responses to be returned via\n_simpleRequest.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::setStreamingStatus","p":"Google/ApiCore/Testing/MockStubTrait.html#method_setStreamingStatus","d":"

Set the status object to be used when creating streaming calls.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::popReceivedCalls","p":"Google/ApiCore/Testing/MockStubTrait.html#method_popReceivedCalls","d":"

Return a list of calls made to _simpleRequest, and clear $receivedFuncCalls.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::getReceivedCallCount","p":"Google/ApiCore/Testing/MockStubTrait.html#method_getReceivedCallCount","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::popCallObjects","p":"Google/ApiCore/Testing/MockStubTrait.html#method_popCallObjects","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::isExhausted","p":"Google/ApiCore/Testing/MockStubTrait.html#method_isExhausted","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::create","p":"Google/ApiCore/Testing/MockStubTrait.html#method_create","d":""},{"t":"M","n":"Google\\ApiCore\\Testing\\MockStubTrait::createWithResponseSequence","p":"Google/ApiCore/Testing/MockStubTrait.html#method_createWithResponseSequence","d":"

Creates a sequence such that the responses are returned in order.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockTransport::setAgentHeaderDescriptor","p":"Google/ApiCore/Testing/MockTransport.html#method_setAgentHeaderDescriptor","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockTransport::startUnaryCall","p":"Google/ApiCore/Testing/MockTransport.html#method_startUnaryCall","d":"

Returns a promise used to execute network requests.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockTransport::startBidiStreamingCall","p":"Google/ApiCore/Testing/MockTransport.html#method_startBidiStreamingCall","d":"

Starts a bidi streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockTransport::startClientStreamingCall","p":"Google/ApiCore/Testing/MockTransport.html#method_startClientStreamingCall","d":"

Starts a client streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockTransport::startServerStreamingCall","p":"Google/ApiCore/Testing/MockTransport.html#method_startServerStreamingCall","d":"

Starts a server streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockTransport::__call","p":"Google/ApiCore/Testing/MockTransport.html#method___call","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\MockTransport::close","p":"Google/ApiCore/Testing/MockTransport.html#method_close","d":"

Closes the connection, if one exists.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockUnaryCall::__construct","p":"Google/ApiCore/Testing/MockUnaryCall.html#method___construct","d":"

MockUnaryCall constructor.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\MockUnaryCall::wait","p":"Google/ApiCore/Testing/MockUnaryCall.html#method_wait","d":"

Immediately return the preset response object and status.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\ProtobufGPBEmptyComparator::accepts","p":"Google/ApiCore/Testing/ProtobufGPBEmptyComparator.html#method_accepts","d":"

Returns whether the comparator can compare two values.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\ProtobufGPBEmptyComparator::assertEquals","p":"Google/ApiCore/Testing/ProtobufGPBEmptyComparator.html#method_assertEquals","d":"

Asserts that two values are equal.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\ProtobufMessageComparator::__construct","p":"Google/ApiCore/Testing/ProtobufMessageComparator.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\ProtobufMessageComparator::accepts","p":"Google/ApiCore/Testing/ProtobufMessageComparator.html#method_accepts","d":"

Returns whether the comparator can compare two values.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\ProtobufMessageComparator::assertEquals","p":"Google/ApiCore/Testing/ProtobufMessageComparator.html#method_assertEquals","d":"

Asserts that two values are equal.

"},{"t":"M","n":"Google\\ApiCore\\Testing\\ReceivedRequest::__construct","p":"Google/ApiCore/Testing/ReceivedRequest.html#method___construct","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\ReceivedRequest::getArray","p":"Google/ApiCore/Testing/ReceivedRequest.html#method_getArray","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\ReceivedRequest::getFuncCall","p":"Google/ApiCore/Testing/ReceivedRequest.html#method_getFuncCall","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\ReceivedRequest::getRequestObject","p":"Google/ApiCore/Testing/ReceivedRequest.html#method_getRequestObject","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\ReceivedRequest::getMetadata","p":"Google/ApiCore/Testing/ReceivedRequest.html#method_getMetadata","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\ReceivedRequest::getOptions","p":"Google/ApiCore/Testing/ReceivedRequest.html#method_getOptions","d":null},{"t":"M","n":"Google\\ApiCore\\Testing\\SerializationTrait::deserializeMessage","p":"Google/ApiCore/Testing/SerializationTrait.html#method_deserializeMessage","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcFallbackTransport::__construct","p":"Google/ApiCore/Transport/GrpcFallbackTransport.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcFallbackTransport::build","p":"Google/ApiCore/Transport/GrpcFallbackTransport.html#method_build","d":"

Builds a GrpcFallbackTransport.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcFallbackTransport::startUnaryCall","p":"Google/ApiCore/Transport/GrpcFallbackTransport.html#method_startUnaryCall","d":"

Returns a promise used to execute network requests.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcTransport::__construct","p":"Google/ApiCore/Transport/GrpcTransport.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcTransport::build","p":"Google/ApiCore/Transport/GrpcTransport.html#method_build","d":"

Builds a GrpcTransport.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcTransport::startBidiStreamingCall","p":"Google/ApiCore/Transport/GrpcTransport.html#method_startBidiStreamingCall","d":"

Starts a bidi streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcTransport::startClientStreamingCall","p":"Google/ApiCore/Transport/GrpcTransport.html#method_startClientStreamingCall","d":"

Starts a client streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcTransport::startServerStreamingCall","p":"Google/ApiCore/Transport/GrpcTransport.html#method_startServerStreamingCall","d":"

Starts a server streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\GrpcTransport::startUnaryCall","p":"Google/ApiCore/Transport/GrpcTransport.html#method_startUnaryCall","d":"

Returns a promise used to execute network requests.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingCall::__construct","p":"Google/ApiCore/Transport/Grpc/ForwardingCall.html#method___construct","d":"

ForwardingCall constructor.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingCall::getMetadata","p":"Google/ApiCore/Transport/Grpc/ForwardingCall.html#method_getMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingCall::getTrailingMetadata","p":"Google/ApiCore/Transport/Grpc/ForwardingCall.html#method_getTrailingMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingCall::getPeer","p":"Google/ApiCore/Transport/Grpc/ForwardingCall.html#method_getPeer","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingCall::cancel","p":"Google/ApiCore/Transport/Grpc/ForwardingCall.html#method_cancel","d":"

Cancels the call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingServerStreamingCall::responses","p":"Google/ApiCore/Transport/Grpc/ForwardingServerStreamingCall.html#method_responses","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingServerStreamingCall::getStatus","p":"Google/ApiCore/Transport/Grpc/ForwardingServerStreamingCall.html#method_getStatus","d":"

Wait for the server to send the status, and return it.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ForwardingUnaryCall::wait","p":"Google/ApiCore/Transport/Grpc/ForwardingUnaryCall.html#method_wait","d":"

Wait for the server to respond with data and a status.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::__construct","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::start","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_start","d":"

Start the call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::responses","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_responses","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::getStatus","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_getStatus","d":"

Return the status of the server stream.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::getMetadata","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_getMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::getTrailingMetadata","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_getTrailingMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::getPeer","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_getPeer","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::cancel","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_cancel","d":"

Cancels the call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\ServerStreamingCallWrapper::setCallCredentials","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper.html#method_setCallCredentials","d":"

Set the CallCredentials for the underlying Call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\UnaryInterceptorInterface::interceptUnaryUnary","p":"Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface.html#method_interceptUnaryUnary","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\HttpUnaryTransportTrait::startClientStreamingCall","p":"Google/ApiCore/Transport/HttpUnaryTransportTrait.html#method_startClientStreamingCall","d":"{@inheritdoc}"},{"t":"M","n":"Google\\ApiCore\\Transport\\HttpUnaryTransportTrait::startServerStreamingCall","p":"Google/ApiCore/Transport/HttpUnaryTransportTrait.html#method_startServerStreamingCall","d":"{@inheritdoc}"},{"t":"M","n":"Google\\ApiCore\\Transport\\HttpUnaryTransportTrait::startBidiStreamingCall","p":"Google/ApiCore/Transport/HttpUnaryTransportTrait.html#method_startBidiStreamingCall","d":"{@inheritdoc}"},{"t":"M","n":"Google\\ApiCore\\Transport\\HttpUnaryTransportTrait::close","p":"Google/ApiCore/Transport/HttpUnaryTransportTrait.html#method_close","d":"{@inheritdoc}"},{"t":"M","n":"Google\\ApiCore\\Transport\\RestTransport::__construct","p":"Google/ApiCore/Transport/RestTransport.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\RestTransport::build","p":"Google/ApiCore/Transport/RestTransport.html#method_build","d":"

Builds a RestTransport.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\RestTransport::startUnaryCall","p":"Google/ApiCore/Transport/RestTransport.html#method_startUnaryCall","d":"

Returns a promise used to execute network requests.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\RestTransport::startServerStreamingCall","p":"Google/ApiCore/Transport/RestTransport.html#method_startServerStreamingCall","d":"

Starts a server streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\JsonStreamDecoder::__construct","p":"Google/ApiCore/Transport/Rest/JsonStreamDecoder.html#method___construct","d":"

JsonStreamDecoder is a HTTP-JSON response stream decoder for JSON-ecoded\nprotobuf messages. The response stream must be a JSON array, where the first\nbyte is the opening of the array (i.e. '['), and the last byte is the closing\nof the array (i.e. ']'). Each array item must be a JSON object and comma\nseparated.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\JsonStreamDecoder::decode","p":"Google/ApiCore/Transport/Rest/JsonStreamDecoder.html#method_decode","d":"

Begins decoding the configured response stream. It is a generator which\nyields messages of the given decode type from the stream until the stream\ncompletes. Throws an Exception if the stream is closed before the closing\nbyte is read or if it encounters an error while decoding a message.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\JsonStreamDecoder::close","p":"Google/ApiCore/Transport/Rest/JsonStreamDecoder.html#method_close","d":"

Closes the underlying stream. If the stream is actively being decoded, an\nexception will not be thrown due to the interruption.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::__construct","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method___construct","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::start","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_start","d":"

Start the call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::responses","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_responses","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::getStatus","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_getStatus","d":"

Return the status of the server stream. If the call has not been started\nthis will be null.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::getMetadata","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_getMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::getTrailingMetadata","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_getTrailingMetadata","d":"

The Rest transport does not support trailing metadata. This is a\npassthrough to getMetadata().

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::getPeer","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_getPeer","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::cancel","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_cancel","d":"

Cancels the call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Rest\\RestServerStreamingCall::setCallCredentials","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall.html#method_setCallCredentials","d":"

For the REST transport this is a no-op.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startBidiStreamingCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startBidiStreamingCall","d":"

Starts a bidi streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startClientStreamingCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startClientStreamingCall","d":"

Starts a client streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startServerStreamingCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startServerStreamingCall","d":"

Starts a server streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startUnaryCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startUnaryCall","d":"

Returns a promise used to execute network requests.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::close","p":"Google/ApiCore/Transport/TransportInterface.html#method_close","d":"

Closes the connection, if one exists.

"},{"t":"M","n":"Google\\ApiCore\\UriTrait::buildUriWithQuery","p":"Google/ApiCore/UriTrait.html#method_buildUriWithQuery","d":""},{"t":"M","n":"Google\\ApiCore\\ValidationTrait::validate","p":"Google/ApiCore/ValidationTrait.html#method_validate","d":""},{"t":"M","n":"Google\\ApiCore\\ValidationTrait::validateNotNull","p":"Google/ApiCore/ValidationTrait.html#method_validateNotNull","d":""},{"t":"M","n":"Google\\ApiCore\\Version::getApiCoreVersion","p":"Google/ApiCore/Version.html#method_getApiCoreVersion","d":""},{"t":"M","n":"Google\\ApiCore\\Version::readVersionFile","p":"Google/ApiCore/Version.html#method_readVersionFile","d":"

Reads a VERSION file and returns the contents. If the file does not\nexist, returns "".

"},{"t":"M","n":"Google\\ApiCore\\Middleware\\MiddlewareInterface::__invoke","p":"Google/ApiCore/Middleware/MiddlewareInterface.html#method___invoke","d":"

Modify or observe the API call request and response.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::__toString","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method___toString","d":""},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::render","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method_render","d":"

Renders a resource template using the provided bindings.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::matches","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method_matches","d":"

Check if $path matches a resource string.

"},{"t":"M","n":"Google\\ApiCore\\ResourceTemplate\\ResourceTemplateInterface::match","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface.html#method_match","d":"

Matches a given $path to a resource template, and returns an array of bindings between\nwildcards / variables in the template and values in the path. If $path does not match the\ntemplate, then a ValidationException is thrown.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::start","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_start","d":"

Start the call.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::responses","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_responses","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getStatus","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getStatus","d":"

Return the status of the server stream.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getMetadata","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getTrailingMetadata","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getTrailingMetadata","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::getPeer","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_getPeer","d":""},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::cancel","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_cancel","d":"

Cancels the call.

"},{"t":"M","n":"Google\\ApiCore\\ServerStreamingCallInterface::setCallCredentials","p":"Google/ApiCore/ServerStreamingCallInterface.html#method_setCallCredentials","d":"

Set the CallCredentials for the underlying Call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\Grpc\\UnaryInterceptorInterface::interceptUnaryUnary","p":"Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface.html#method_interceptUnaryUnary","d":""},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startBidiStreamingCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startBidiStreamingCall","d":"

Starts a bidi streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startClientStreamingCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startClientStreamingCall","d":"

Starts a client streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startServerStreamingCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startServerStreamingCall","d":"

Starts a server streaming call.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::startUnaryCall","p":"Google/ApiCore/Transport/TransportInterface.html#method_startUnaryCall","d":"

Returns a promise used to execute network requests.

"},{"t":"M","n":"Google\\ApiCore\\Transport\\TransportInterface::close","p":"Google/ApiCore/Transport/TransportInterface.html#method_close","d":"

Closes the connection, if one exists.

"},{"t":"N","n":"Google","p":"Google.html"},{"t":"N","n":"Google\\ApiCore","p":"Google/ApiCore.html"},{"t":"N","n":"Google\\ApiCore\\Middleware","p":"Google/ApiCore/Middleware.html"},{"t":"N","n":"Google\\ApiCore\\Options","p":"Google/ApiCore/Options.html"},{"t":"N","n":"Google\\ApiCore\\Options\\TransportOptions","p":"Google/ApiCore/Options/TransportOptions.html"},{"t":"N","n":"Google\\ApiCore\\ResourceTemplate","p":"Google/ApiCore/ResourceTemplate.html"},{"t":"N","n":"Google\\ApiCore\\Testing","p":"Google/ApiCore/Testing.html"},{"t":"N","n":"Google\\ApiCore\\Transport","p":"Google/ApiCore/Transport.html"},{"t":"N","n":"Google\\ApiCore\\Transport\\Grpc","p":"Google/ApiCore/Transport/Grpc.html"},{"t":"N","n":"Google\\ApiCore\\Transport\\Rest","p":"Google/ApiCore/Transport/Rest.html"}]} diff --git a/v1.34.1/doctum.js b/v1.34.1/doctum.js new file mode 100644 index 000000000..412cdcae2 --- /dev/null +++ b/v1.34.1/doctum.js @@ -0,0 +1,319 @@ +var Doctum = { + treeJson: {"tree":{"l":0,"n":"","p":"","c":[{"l":1,"n":"Google","p":"Google","c":[{"l":2,"n":"ApiCore","p":"Google/ApiCore","c":[{"l":3,"n":"Middleware","p":"Google/ApiCore/Middleware","c":[{"l":4,"n":"CredentialsWrapperMiddleware","p":"Google/ApiCore/Middleware/CredentialsWrapperMiddleware"},{"l":4,"n":"FixedHeaderMiddleware","p":"Google/ApiCore/Middleware/FixedHeaderMiddleware"},{"l":4,"n":"MiddlewareInterface","p":"Google/ApiCore/Middleware/MiddlewareInterface"},{"l":4,"n":"OperationsMiddleware","p":"Google/ApiCore/Middleware/OperationsMiddleware"},{"l":4,"n":"OptionsFilterMiddleware","p":"Google/ApiCore/Middleware/OptionsFilterMiddleware"},{"l":4,"n":"PagedMiddleware","p":"Google/ApiCore/Middleware/PagedMiddleware"},{"l":4,"n":"RequestAutoPopulationMiddleware","p":"Google/ApiCore/Middleware/RequestAutoPopulationMiddleware"},{"l":4,"n":"ResponseMetadataMiddleware","p":"Google/ApiCore/Middleware/ResponseMetadataMiddleware"},{"l":4,"n":"RetryMiddleware","p":"Google/ApiCore/Middleware/RetryMiddleware"}]},{"l":3,"n":"Options","p":"Google/ApiCore/Options","c":[{"l":4,"n":"TransportOptions","p":"Google/ApiCore/Options/TransportOptions","c":[{"l":5,"n":"GrpcFallbackTransportOptions","p":"Google/ApiCore/Options/TransportOptions/GrpcFallbackTransportOptions"},{"l":5,"n":"GrpcTransportOptions","p":"Google/ApiCore/Options/TransportOptions/GrpcTransportOptions"},{"l":5,"n":"RestTransportOptions","p":"Google/ApiCore/Options/TransportOptions/RestTransportOptions"}]},{"l":4,"n":"CallOptions","p":"Google/ApiCore/Options/CallOptions"},{"l":4,"n":"ClientOptions","p":"Google/ApiCore/Options/ClientOptions"},{"l":4,"n":"OptionsTrait","p":"Google/ApiCore/Options/OptionsTrait"},{"l":4,"n":"TransportOptions","p":"Google/ApiCore/Options/TransportOptions"}]},{"l":3,"n":"ResourceTemplate","p":"Google/ApiCore/ResourceTemplate","c":[{"l":4,"n":"AbsoluteResourceTemplate","p":"Google/ApiCore/ResourceTemplate/AbsoluteResourceTemplate"},{"l":4,"n":"Parser","p":"Google/ApiCore/ResourceTemplate/Parser"},{"l":4,"n":"RelativeResourceTemplate","p":"Google/ApiCore/ResourceTemplate/RelativeResourceTemplate"},{"l":4,"n":"ResourceTemplateInterface","p":"Google/ApiCore/ResourceTemplate/ResourceTemplateInterface"},{"l":4,"n":"Segment","p":"Google/ApiCore/ResourceTemplate/Segment"}]},{"l":3,"n":"Testing","p":"Google/ApiCore/Testing","c":[{"l":4,"n":"GeneratedTest","p":"Google/ApiCore/Testing/GeneratedTest"},{"l":4,"n":"MessageAwareArrayComparator","p":"Google/ApiCore/Testing/MessageAwareArrayComparator"},{"l":4,"n":"MessageAwareExporter","p":"Google/ApiCore/Testing/MessageAwareExporter"},{"l":4,"n":"MockBidiStreamingCall","p":"Google/ApiCore/Testing/MockBidiStreamingCall"},{"l":4,"n":"MockClientStreamingCall","p":"Google/ApiCore/Testing/MockClientStreamingCall"},{"l":4,"n":"MockGrpcTransport","p":"Google/ApiCore/Testing/MockGrpcTransport"},{"l":4,"n":"MockRequest","p":"Google/ApiCore/Testing/MockRequest"},{"l":4,"n":"MockRequestBody","p":"Google/ApiCore/Testing/MockRequestBody"},{"l":4,"n":"MockResponse","p":"Google/ApiCore/Testing/MockResponse"},{"l":4,"n":"MockServerStreamingCall","p":"Google/ApiCore/Testing/MockServerStreamingCall"},{"l":4,"n":"MockStatus","p":"Google/ApiCore/Testing/MockStatus"},{"l":4,"n":"MockStubTrait","p":"Google/ApiCore/Testing/MockStubTrait"},{"l":4,"n":"MockTransport","p":"Google/ApiCore/Testing/MockTransport"},{"l":4,"n":"MockUnaryCall","p":"Google/ApiCore/Testing/MockUnaryCall"},{"l":4,"n":"ProtobufGPBEmptyComparator","p":"Google/ApiCore/Testing/ProtobufGPBEmptyComparator"},{"l":4,"n":"ProtobufMessageComparator","p":"Google/ApiCore/Testing/ProtobufMessageComparator"},{"l":4,"n":"ReceivedRequest","p":"Google/ApiCore/Testing/ReceivedRequest"},{"l":4,"n":"SerializationTrait","p":"Google/ApiCore/Testing/SerializationTrait"}]},{"l":3,"n":"Transport","p":"Google/ApiCore/Transport","c":[{"l":4,"n":"Grpc","p":"Google/ApiCore/Transport/Grpc","c":[{"l":5,"n":"ForwardingCall","p":"Google/ApiCore/Transport/Grpc/ForwardingCall"},{"l":5,"n":"ForwardingServerStreamingCall","p":"Google/ApiCore/Transport/Grpc/ForwardingServerStreamingCall"},{"l":5,"n":"ForwardingUnaryCall","p":"Google/ApiCore/Transport/Grpc/ForwardingUnaryCall"},{"l":5,"n":"ServerStreamingCallWrapper","p":"Google/ApiCore/Transport/Grpc/ServerStreamingCallWrapper"},{"l":5,"n":"UnaryInterceptorInterface","p":"Google/ApiCore/Transport/Grpc/UnaryInterceptorInterface"}]},{"l":4,"n":"Rest","p":"Google/ApiCore/Transport/Rest","c":[{"l":5,"n":"JsonStreamDecoder","p":"Google/ApiCore/Transport/Rest/JsonStreamDecoder"},{"l":5,"n":"RestServerStreamingCall","p":"Google/ApiCore/Transport/Rest/RestServerStreamingCall"}]},{"l":4,"n":"GrpcFallbackTransport","p":"Google/ApiCore/Transport/GrpcFallbackTransport"},{"l":4,"n":"GrpcTransport","p":"Google/ApiCore/Transport/GrpcTransport"},{"l":4,"n":"HttpUnaryTransportTrait","p":"Google/ApiCore/Transport/HttpUnaryTransportTrait"},{"l":4,"n":"RestTransport","p":"Google/ApiCore/Transport/RestTransport"},{"l":4,"n":"TransportInterface","p":"Google/ApiCore/Transport/TransportInterface"}]},{"l":3,"n":"AgentHeader","p":"Google/ApiCore/AgentHeader"},{"l":3,"n":"ApiException","p":"Google/ApiCore/ApiException"},{"l":3,"n":"ApiStatus","p":"Google/ApiCore/ApiStatus"},{"l":3,"n":"ArrayTrait","p":"Google/ApiCore/ArrayTrait"},{"l":3,"n":"BidiStream","p":"Google/ApiCore/BidiStream"},{"l":3,"n":"Call","p":"Google/ApiCore/Call"},{"l":3,"n":"ClientOptionsTrait","p":"Google/ApiCore/ClientOptionsTrait"},{"l":3,"n":"ClientStream","p":"Google/ApiCore/ClientStream"},{"l":3,"n":"CredentialsWrapper","p":"Google/ApiCore/CredentialsWrapper"},{"l":3,"n":"FixedSizeCollection","p":"Google/ApiCore/FixedSizeCollection"},{"l":3,"n":"GPBLabel","p":"Google/ApiCore/GPBLabel"},{"l":3,"n":"GPBType","p":"Google/ApiCore/GPBType"},{"l":3,"n":"GapicClientTrait","p":"Google/ApiCore/GapicClientTrait"},{"l":3,"n":"GrpcSupportTrait","p":"Google/ApiCore/GrpcSupportTrait"},{"l":3,"n":"InsecureCredentialsWrapper","p":"Google/ApiCore/InsecureCredentialsWrapper"},{"l":3,"n":"OperationResponse","p":"Google/ApiCore/OperationResponse"},{"l":3,"n":"Page","p":"Google/ApiCore/Page"},{"l":3,"n":"PageStreamingDescriptor","p":"Google/ApiCore/PageStreamingDescriptor"},{"l":3,"n":"PagedListResponse","p":"Google/ApiCore/PagedListResponse"},{"l":3,"n":"PathTemplate","p":"Google/ApiCore/PathTemplate"},{"l":3,"n":"PollingTrait","p":"Google/ApiCore/PollingTrait"},{"l":3,"n":"RequestBuilder","p":"Google/ApiCore/RequestBuilder"},{"l":3,"n":"RequestParamsHeaderDescriptor","p":"Google/ApiCore/RequestParamsHeaderDescriptor"},{"l":3,"n":"ResourceHelperTrait","p":"Google/ApiCore/ResourceHelperTrait"},{"l":3,"n":"RetrySettings","p":"Google/ApiCore/RetrySettings"},{"l":3,"n":"Serializer","p":"Google/ApiCore/Serializer"},{"l":3,"n":"ServerStream","p":"Google/ApiCore/ServerStream"},{"l":3,"n":"ServerStreamingCallInterface","p":"Google/ApiCore/ServerStreamingCallInterface"},{"l":3,"n":"ServiceAddressTrait","p":"Google/ApiCore/ServiceAddressTrait"},{"l":3,"n":"UriTrait","p":"Google/ApiCore/UriTrait"},{"l":3,"n":"ValidationException","p":"Google/ApiCore/ValidationException"},{"l":3,"n":"ValidationTrait","p":"Google/ApiCore/ValidationTrait"},{"l":3,"n":"Version","p":"Google/ApiCore/Version"}]}]}]},"treeOpenLevel":1}, + /** @var boolean */ + treeLoaded: false, + /** @var boolean */ + listenersRegistered: false, + autoCompleteData: null, + /** @var boolean */ + autoCompleteLoading: false, + /** @var boolean */ + autoCompleteLoaded: false, + /** @var string|null */ + rootPath: null, + /** @var string|null */ + autoCompleteDataUrl: null, + /** @var HTMLElement|null */ + doctumSearchAutoComplete: null, + /** @var HTMLElement|null */ + doctumSearchAutoCompleteProgressBarContainer: null, + /** @var HTMLElement|null */ + doctumSearchAutoCompleteProgressBar: null, + /** @var number */ + doctumSearchAutoCompleteProgressBarPercent: 0, + /** @var autoComplete|null */ + autoCompleteJS: null, + querySearchSecurityRegex: /([^0-9a-zA-Z:\\\\_\s])/gi, + buildTreeNode: function (treeNode, htmlNode, treeOpenLevel) { + var ulNode = document.createElement('ul'); + for (var childKey in treeNode.c) { + var child = treeNode.c[childKey]; + var liClass = document.createElement('li'); + var hasChildren = child.hasOwnProperty('c'); + var nodeSpecialName = (hasChildren ? 'namespace:' : 'class:') + child.p.replace(/\//g, '_'); + liClass.setAttribute('data-name', nodeSpecialName); + + // Create the node that will have the text + var divHd = document.createElement('div'); + var levelCss = child.l - 1; + divHd.className = hasChildren ? 'hd' : 'hd leaf'; + divHd.style.paddingLeft = (hasChildren ? (levelCss * 18) : (8 + (levelCss * 18))) + 'px'; + if (hasChildren) { + if (child.l <= treeOpenLevel) { + liClass.className = 'opened'; + } + var spanIcon = document.createElement('span'); + spanIcon.className = 'icon icon-play'; + divHd.appendChild(spanIcon); + } + var aLink = document.createElement('a'); + + // Edit the HTML link to work correctly based on the current depth + aLink.href = Doctum.rootPath + child.p + '.html'; + aLink.innerText = child.n; + divHd.appendChild(aLink); + liClass.appendChild(divHd); + + // It has children + if (hasChildren) { + var divBd = document.createElement('div'); + divBd.className = 'bd'; + Doctum.buildTreeNode(child, divBd, treeOpenLevel); + liClass.appendChild(divBd); + } + ulNode.appendChild(liClass); + } + htmlNode.appendChild(ulNode); + }, + initListeners: function () { + if (Doctum.listenersRegistered) { + // Quick exit, already registered + return; + } + Doctum.listenersRegistered = true; + }, + loadTree: function () { + if (Doctum.treeLoaded) { + // Quick exit, already registered + return; + } + Doctum.rootPath = document.body.getAttribute('data-root-path'); + Doctum.buildTreeNode(Doctum.treeJson.tree, document.getElementById('api-tree'), Doctum.treeJson.treeOpenLevel); + + // Toggle left-nav divs on click + $('#api-tree .hd span').on('click', function () { + $(this).parent().parent().toggleClass('opened'); + }); + + // Expand the parent namespaces of the current page. + var expected = $('body').attr('data-name'); + + if (expected) { + // Open the currently selected node and its parents. + var container = $('#api-tree'); + var node = $('#api-tree li[data-name="' + expected + '"]'); + // Node might not be found when simulating namespaces + if (node.length > 0) { + node.addClass('active').addClass('opened'); + node.parents('li').addClass('opened'); + var scrollPos = node.offset().top - container.offset().top + container.scrollTop(); + // Position the item nearer to the top of the screen. + scrollPos -= 200; + container.scrollTop(scrollPos); + } + } + Doctum.treeLoaded = true; + }, + pagePartiallyLoaded: function (event) { + Doctum.initListeners(); + Doctum.loadTree(); + Doctum.loadAutoComplete(); + }, + pageFullyLoaded: function (event) { + // it may not have received DOMContentLoaded event + Doctum.initListeners(); + Doctum.loadTree(); + Doctum.loadAutoComplete(); + // Fire the event in the search page too + if (typeof DoctumSearch === 'object') { + DoctumSearch.pageFullyLoaded(); + } + }, + loadAutoComplete: function () { + if (Doctum.autoCompleteLoaded) { + // Quick exit, already loaded + return; + } + Doctum.autoCompleteDataUrl = document.body.getAttribute('data-search-index-url'); + Doctum.doctumSearchAutoComplete = document.getElementById('doctum-search-auto-complete'); + Doctum.doctumSearchAutoCompleteProgressBarContainer = document.getElementById('search-progress-bar-container'); + Doctum.doctumSearchAutoCompleteProgressBar = document.getElementById('search-progress-bar'); + if (Doctum.doctumSearchAutoComplete !== null) { + // Wait for it to be loaded + Doctum.doctumSearchAutoComplete.addEventListener('init', function (_) { + Doctum.autoCompleteLoaded = true; + Doctum.doctumSearchAutoComplete.addEventListener('selection', function (event) { + // Go to selection page + window.location = Doctum.rootPath + event.detail.selection.value.p; + }); + Doctum.doctumSearchAutoComplete.addEventListener('navigate', function (event) { + // Set selection in text box + if (typeof event.detail.selection.value === 'object') { + Doctum.doctumSearchAutoComplete.value = event.detail.selection.value.n; + } + }); + Doctum.doctumSearchAutoComplete.addEventListener('results', function (event) { + Doctum.markProgressFinished(); + }); + }); + } + // Check if the lib is loaded + if (typeof autoComplete === 'function') { + Doctum.bootAutoComplete(); + } + }, + markInProgress: function () { + Doctum.doctumSearchAutoCompleteProgressBarContainer.className = 'search-bar'; + Doctum.doctumSearchAutoCompleteProgressBar.className = 'progress-bar indeterminate'; + if (typeof DoctumSearch === 'object' && DoctumSearch.pageFullyLoaded) { + DoctumSearch.doctumSearchPageAutoCompleteProgressBarContainer.className = 'search-bar'; + DoctumSearch.doctumSearchPageAutoCompleteProgressBar.className = 'progress-bar indeterminate'; + } + }, + markProgressFinished: function () { + Doctum.doctumSearchAutoCompleteProgressBarContainer.className = 'search-bar hidden'; + Doctum.doctumSearchAutoCompleteProgressBar.className = 'progress-bar'; + if (typeof DoctumSearch === 'object' && DoctumSearch.pageFullyLoaded) { + DoctumSearch.doctumSearchPageAutoCompleteProgressBarContainer.className = 'search-bar hidden'; + DoctumSearch.doctumSearchPageAutoCompleteProgressBar.className = 'progress-bar'; + } + }, + makeProgess: function () { + Doctum.makeProgressOnProgressBar( + Doctum.doctumSearchAutoCompleteProgressBarPercent, + Doctum.doctumSearchAutoCompleteProgressBar + ); + if (typeof DoctumSearch === 'object' && DoctumSearch.pageFullyLoaded) { + Doctum.makeProgressOnProgressBar( + Doctum.doctumSearchAutoCompleteProgressBarPercent, + DoctumSearch.doctumSearchPageAutoCompleteProgressBar + ); + } + }, + loadAutoCompleteData: function (query) { + return new Promise(function (resolve, reject) { + if (Doctum.autoCompleteData !== null) { + resolve(Doctum.autoCompleteData); + return; + } + Doctum.markInProgress(); + function reqListener() { + Doctum.autoCompleteLoading = false; + Doctum.autoCompleteData = JSON.parse(this.responseText).items; + Doctum.markProgressFinished(); + + setTimeout(function () { + resolve(Doctum.autoCompleteData); + }, 50);// Let the UI render once before sending the results for processing. This gives time to the progress bar to hide + } + function reqError(err) { + Doctum.autoCompleteLoading = false; + Doctum.autoCompleteData = null; + console.error(err); + reject(err); + } + + var oReq = new XMLHttpRequest(); + oReq.onload = reqListener; + oReq.onerror = reqError; + oReq.onprogress = function (pe) { + if (pe.lengthComputable) { + Doctum.doctumSearchAutoCompleteProgressBarPercent = parseInt(pe.loaded / pe.total * 100, 10); + Doctum.makeProgess(); + } + }; + oReq.onloadend = function (_) { + Doctum.markProgressFinished(); + }; + oReq.open('get', Doctum.autoCompleteDataUrl, true); + oReq.send(); + }); + }, + /** + * Make some progress on a progress bar + * + * @param number percentage + * @param HTMLElement progressBar + * @return void + */ + makeProgressOnProgressBar: function(percentage, progressBar) { + progressBar.className = 'progress-bar'; + progressBar.style.width = percentage + '%'; + progressBar.setAttribute( + 'aria-valuenow', percentage + ); + }, + searchEngine: function (query, record) { + if (typeof query !== 'string') { + return ''; + } + // replace all (mode = g) spaces and non breaking spaces (\s) by pipes + // g = global mode to mark also the second word searched + // i = case insensitive + // how this function works: + // First: search if the query has the keywords in sequence + // Second: replace the keywords by a mark and leave all the text in between non marked + + if (record.match(new RegExp('(' + query.replace(/\s/g, ').*(') + ')', 'gi')) === null) { + return '';// Does not match + } + + var replacedRecord = record.replace(new RegExp('(' + query.replace(/\s/g, '|') + ')', 'gi'), function (group) { + return '' + group + ''; + }); + + if (replacedRecord !== record) { + return replacedRecord;// This should not happen but just in case there was no match done + } + + return ''; + }, + /** + * Clean the search query + * + * @param string|null query + * @return string + */ + cleanSearchQuery: function (query) { + if (typeof query !== 'string') { + return ''; + } + // replace any chars that could lead to injecting code in our regex + // remove start or end spaces + // replace backslashes by an escaped version, use case in search: \myRootFunction + return query.replace(Doctum.querySearchSecurityRegex, '').trim().replace(/\\/g, '\\\\'); + }, + bootAutoComplete: function () { + Doctum.autoCompleteJS = new autoComplete( + { + selector: '#doctum-search-auto-complete', + searchEngine: function (query, record) { + return Doctum.searchEngine(query, record); + }, + submit: true, + data: { + src: function (q) { + Doctum.markInProgress(); + return Doctum.loadAutoCompleteData(q); + }, + keys: ['n'],// Data 'Object' key to be searched + cache: false, // Is not compatible with async fetch of data + }, + query: (input) => { + return Doctum.cleanSearchQuery(input); + }, + trigger: (query) => { + return Doctum.cleanSearchQuery(query).length > 0; + }, + resultsList: { + tag: 'ul', + class: 'auto-complete-dropdown-menu', + destination: '#auto-complete-results', + position: 'afterbegin', + maxResults: 500, + noResults: false, + }, + resultItem: { + tag: 'li', + class: 'auto-complete-result', + highlight: 'auto-complete-highlight', + selected: 'auto-complete-selected' + }, + } + ); + } +}; + + +document.addEventListener('DOMContentLoaded', Doctum.pagePartiallyLoaded, false); +window.addEventListener('load', Doctum.pageFullyLoaded, false); diff --git a/v1.34.1/fonts/doctum-font.css b/v1.34.1/fonts/doctum-font.css new file mode 100644 index 000000000..d022b4c34 --- /dev/null +++ b/v1.34.1/fonts/doctum-font.css @@ -0,0 +1,61 @@ +@font-face { + font-family: "doctum"; + src: url("./doctum.eot?39101248"); + src: url("./doctum.eot?39101248#iefix") format("embedded-opentype"), + url("./doctum.woff2?39101248") format("woff2"), url("./doctum.woff?39101248") format("woff"), + url("./doctum.ttf?39101248") format("truetype"), url("./doctum.svg?39101248#doctum") format("svg"); + font-weight: normal; + font-style: normal; +} +/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ +/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ +/* +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: 'doctum'; + src: url('./doctum.svg?39101248#doctum') format('svg'); + } +} +*/ + +.icon { + font-family: "doctum"; + font-style: normal; + font-weight: normal; + speak: never; + + display: inline-block; + text-decoration: inherit; + width: 1em; + margin-right: 0.2em; + text-align: center; + /* opacity: .8; */ + + /* For safety - reset parent styles, that can break glyph codes*/ + font-variant: normal; + text-transform: none; + + /* fix buttons height, for twitter bootstrap */ + line-height: 1em; + + /* Animation center compensation - margins should be symmetric */ + /* remove if not needed */ + margin-left: 0.2em; + + /* you can be more comfortable with increased icons size */ + /* font-size: 120%; */ + + /* Font smoothing. That was taken from TWBS */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + /* Uncomment for 3D effect */ + /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ +} + +.icon-search:before { + content: "\e800"; +} /* '' */ +.icon-play:before { + content: "\e801"; +} /* '' */ diff --git a/v1.34.1/fonts/doctum.eot b/v1.34.1/fonts/doctum.eot new file mode 100644 index 000000000..0daf464c7 Binary files /dev/null and b/v1.34.1/fonts/doctum.eot differ diff --git a/v1.34.1/fonts/doctum.svg b/v1.34.1/fonts/doctum.svg new file mode 100644 index 000000000..341469b6c --- /dev/null +++ b/v1.34.1/fonts/doctum.svg @@ -0,0 +1,14 @@ + + + +Material Design Icons + + + + + + + + + + \ No newline at end of file diff --git a/v1.34.1/fonts/doctum.ttf b/v1.34.1/fonts/doctum.ttf new file mode 100644 index 000000000..cf3f81625 Binary files /dev/null and b/v1.34.1/fonts/doctum.ttf differ diff --git a/v1.34.1/fonts/doctum.woff b/v1.34.1/fonts/doctum.woff new file mode 100644 index 000000000..6e1ca3b57 Binary files /dev/null and b/v1.34.1/fonts/doctum.woff differ diff --git a/v1.34.1/fonts/doctum.woff2 b/v1.34.1/fonts/doctum.woff2 new file mode 100644 index 000000000..e7b1a3e81 Binary files /dev/null and b/v1.34.1/fonts/doctum.woff2 differ diff --git a/v1.34.1/index.html b/v1.34.1/index.html new file mode 100644 index 000000000..274d542be --- /dev/null +++ b/v1.34.1/index.html @@ -0,0 +1,102 @@ + + + + + + Namespaces | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+
+ + + diff --git a/v1.34.1/interfaces.html b/v1.34.1/interfaces.html new file mode 100644 index 000000000..b6c30d186 --- /dev/null +++ b/v1.34.1/interfaces.html @@ -0,0 +1,124 @@ + + + + + + Interfaces | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + +
+
+ +

Middlewares must take a MiddlewareInterface as their first constructor +argument {Google\ApiCore\Middleware\ResponseMetadataMiddleware}, which +represents the next middleware in the chain. This next middleware MUST be +invoked by this MiddlewareInterface, and the result must be returned as part +of the __invoke method implementation.

+
+
+ +

Represents a resource template that may or may not contain a leading slash, and if a leading +slash is present may contain a trailing verb (":"). (Note that a trailing verb without a +leading slash is not permitted).

+
+ +
+ +

Temporary class to support an interceptor-like interface until gRPC interceptor support is +available.

+
+
+ +
+
+
+
+
+ + + diff --git a/v1.34.1/js/autocomplete.min.js b/v1.34.1/js/autocomplete.min.js new file mode 100644 index 000000000..f7a5838e7 --- /dev/null +++ b/v1.34.1/js/autocomplete.min.js @@ -0,0 +1,5 @@ +/*! + * AutoComplete.js v10.2.6 (https://github.com/TarekRaafat/autoComplete.js) + * Licensed under the Apache 2.0 license + */ +var t,e;t=this,e=function(){"use strict";function t(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function e(e){for(var n=1;nt.length)&&(e=t.length);for(var n=0,r=new Array(e);n=t.length?{done:!0}:{done:!1,value:t[r++]}},e:function(t){throw t},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var s,u=!0,a=!1;return{s:function(){n=n.call(t)},n:function(){var t=n.next();return u=t.done,t},e:function(t){a=!0,s=t},f:function(){try{u||null==n.return||n.return()}finally{if(a)throw s}}}}(n.keys);try{for(l.s();!(c=l.n()).done;)a(c.value)}catch(t){l.e(t)}finally{l.f()}}else a()})),n.filter&&(i=n.filter(i));var s=i.slice(0,e.resultsList.maxResults);e.feedback={query:t,matches:i,results:s},f("results",e)},m="aria-expanded",b="aria-activedescendant",y="aria-selected",v=function(t,n){t.feedback.selection=e({index:n},t.feedback.results[n])},g=function(t){t.isOpen||((t.wrapper||t.input).setAttribute(m,!0),t.list.removeAttribute("hidden"),t.isOpen=!0,f("open",t))},w=function(t){t.isOpen&&((t.wrapper||t.input).setAttribute(m,!1),t.input.setAttribute(b,""),t.list.setAttribute("hidden",""),t.isOpen=!1,f("close",t))},O=function(t,e){var n=e.resultItem,r=e.list.getElementsByTagName(n.tag),o=!!n.selected&&n.selected.split(" ");if(e.isOpen&&r.length){var s,u,a=e.cursor;t>=r.length&&(t=0),t<0&&(t=r.length-1),e.cursor=t,a>-1&&(r[a].removeAttribute(y),o&&(u=r[a].classList).remove.apply(u,i(o))),r[t].setAttribute(y,!0),o&&(s=r[t].classList).add.apply(s,i(o)),e.input.setAttribute(b,r[e.cursor].id),e.list.scrollTop=r[t].offsetTop-e.list.clientHeight+r[t].clientHeight+5,e.feedback.cursor=e.cursor,v(e,t),f("navigate",e)}},A=function(t){O(t.cursor+1,t)},k=function(t){O(t.cursor-1,t)},L=function(t,e,n){(n=n>=0?n:t.cursor)<0||(t.feedback.event=e,v(t,n),f("selection",t),w(t))};function j(t,n){var r=this;return new Promise((function(i,o){var s,u;return s=n||((u=t.input)instanceof HTMLInputElement||u instanceof HTMLTextAreaElement?u.value:u.innerHTML),function(t,e,n){return e?e(t):t.length>=n}(s=t.query?t.query(s):s,t.trigger,t.threshold)?d(t,s).then((function(n){try{return t.feedback instanceof Error?i():(h(s,t),t.resultsList&&function(t){var n=t.resultsList,r=t.list,i=t.resultItem,o=t.feedback,s=o.matches,u=o.results;if(t.cursor=-1,r.innerHTML="",s.length||n.noResults){var c=new DocumentFragment;u.forEach((function(t,n){var r=a(i.tag,e({id:"".concat(i.id,"_").concat(n),role:"option",innerHTML:t.match,inside:c},i.class&&{class:i.class}));i.element&&i.element(r,t)})),r.append(c),n.element&&n.element(r,o),g(t)}else w(t)}(t),c.call(r))}catch(t){return o(t)}}),o):(w(t),c.call(r));function c(){return i()}}))}var S=function(t,e){for(var n in t)for(var r in t[n])e(n,r)},T=function(t){var n,r,i,o=t.events,s=(n=function(){return j(t)},r=t.debounce,function(){clearTimeout(i),i=setTimeout((function(){return n()}),r)}),u=t.events=e({input:e({},o&&o.input)},t.resultsList&&{list:o?e({},o.list):{}}),a={input:{input:function(){s()},keydown:function(e){!function(t,e){switch(t.keyCode){case 40:case 38:t.preventDefault(),40===t.keyCode?A(e):k(e);break;case 13:e.submit||t.preventDefault(),e.cursor>=0&&L(e,t);break;case 9:e.resultsList.tabSelect&&e.cursor>=0&&L(e,t);break;case 27:e.input.value="",w(e)}}(e,t)},blur:function(){w(t)}},list:{mousedown:function(t){t.preventDefault()},click:function(e){!function(t,e){var n=e.resultItem.tag.toUpperCase(),r=Array.from(e.list.querySelectorAll(n)),i=t.target.closest(n);i&&i.nodeName===n&&L(e,t,r.indexOf(i))}(e,t)}}};S(a,(function(e,n){(t.resultsList||"input"===n)&&(u[e][n]||(u[e][n]=a[e][n]))})),S(u,(function(e,n){t[e].addEventListener(n,u[e][n])}))};function E(t){var n=this;return new Promise((function(r,i){var o,s,u;if(o=t.placeHolder,u={role:"combobox","aria-owns":(s=t.resultsList).id,"aria-haspopup":!0,"aria-expanded":!1},a(t.input,e(e({"aria-controls":s.id,"aria-autocomplete":"both"},o&&{placeholder:o}),!t.wrapper&&e({},u))),t.wrapper&&(t.wrapper=a("div",e({around:t.input,class:t.name+"_wrapper"},u))),s&&(t.list=a(s.tag,e({dest:[s.destination,s.position],id:s.id,role:"listbox",hidden:"hidden"},s.class&&{class:s.class}))),T(t),t.data.cache)return d(t).then((function(t){try{return c.call(n)}catch(t){return i(t)}}),i);function c(){return f("init",t),r()}return c.call(n)}))}function x(t){var e=t.prototype;e.init=function(){E(this)},e.start=function(t){j(this,t)},e.unInit=function(){if(this.wrapper){var t=this.wrapper.parentNode;t.insertBefore(this.input,this.wrapper),t.removeChild(this.wrapper)}var e;S((e=this).events,(function(t,n){e[t].removeEventListener(n,e.events[t][n])}))},e.open=function(){g(this)},e.close=function(){w(this)},e.goTo=function(t){O(t,this)},e.next=function(){A(this)},e.previous=function(){k(this)},e.select=function(t){L(this,null,t)},e.search=function(t,e,n){return p(t,e,n)}}return function t(e){this.options=e,this.id=t.instances=(t.instances||0)+1,this.name="autoComplete",this.wrapper=1,this.threshold=1,this.debounce=0,this.resultsList={position:"afterend",tag:"ul",maxResults:5},this.resultItem={tag:"li"},function(t){var e=t.name,r=t.options,i=t.resultsList,o=t.resultItem;for(var s in r)if("object"===n(r[s]))for(var a in t[s]||(t[s]={}),r[s])t[s][a]=r[s][a];else t[s]=r[s];t.selector=t.selector||"#"+e,i.destination=i.destination||t.selector,i.id=i.id||e+"_list_"+t.id,o.id=o.id||e+"_result",t.input=u(t.selector)}(this),x.call(this,t),E(this)}},"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).autoComplete=e(); diff --git a/v1.34.1/js/bootstrap.min.js b/v1.34.1/js/bootstrap.min.js new file mode 100644 index 000000000..5c8647b12 --- /dev/null +++ b/v1.34.1/js/bootstrap.min.js @@ -0,0 +1,11 @@ +/*! + * Generated using the Bootstrap Customizer (https://getbootstrap.com/docs/3.4/customize/) + */ + +/*! + * Bootstrap v3.4.1 (https://getbootstrap.com/) + * Copyright 2011-2021 Twitter, Inc. + * Licensed under the MIT license + */ + +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(t){"use strict";function e(e){var a=e.attr("data-target");a||(a=e.attr("href"),a=a&&/#[A-Za-z]/.test(a)&&a.replace(/.*(?=#[^\s]*$)/,""));var n="#"!==a?t(document).find(a):null;return n&&n.length?n:e.parent()}function a(a){a&&3===a.which||(t(i).remove(),t(s).each(function(){var n=t(this),i=e(n),s={relatedTarget:this};i.hasClass("open")&&(a&&"click"==a.type&&/input|textarea/i.test(a.target.tagName)&&t.contains(i[0],a.target)||(i.trigger(a=t.Event("hide.bs.dropdown",s)),a.isDefaultPrevented()||(n.attr("aria-expanded","false"),i.removeClass("open").trigger(t.Event("hidden.bs.dropdown",s)))))}))}function n(e){return this.each(function(){var a=t(this),n=a.data("bs.dropdown");n||a.data("bs.dropdown",n=new o(this)),"string"==typeof e&&n[e].call(a)})}var i=".dropdown-backdrop",s='[data-toggle="dropdown"]',o=function(e){t(e).on("click.bs.dropdown",this.toggle)};o.VERSION="3.4.1",o.prototype.toggle=function(n){var i=t(this);if(!i.is(".disabled, :disabled")){var s=e(i),o=s.hasClass("open");if(a(),!o){"ontouchstart"in document.documentElement&&!s.closest(".navbar-nav").length&&t(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(t(this)).on("click",a);var r={relatedTarget:this};if(s.trigger(n=t.Event("show.bs.dropdown",r)),n.isDefaultPrevented())return;i.trigger("focus").attr("aria-expanded","true"),s.toggleClass("open").trigger(t.Event("shown.bs.dropdown",r))}return!1}},o.prototype.keydown=function(a){if(/(38|40|27|32)/.test(a.which)&&!/input|textarea/i.test(a.target.tagName)){var n=t(this);if(a.preventDefault(),a.stopPropagation(),!n.is(".disabled, :disabled")){var i=e(n),o=i.hasClass("open");if(!o&&27!=a.which||o&&27==a.which)return 27==a.which&&i.find(s).trigger("focus"),n.trigger("click");var r=" li:not(.disabled):visible a",l=i.find(".dropdown-menu"+r);if(l.length){var d=l.index(a.target);38==a.which&&d>0&&d--,40==a.which&&d+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function Le(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function je(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=Fe(m.pixelPosition,function(e,t){if(t)return t=We(e,n),Ie.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 0 + + + + + Namespaces | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + + + + + diff --git a/v1.34.1/opensearch.xml b/v1.34.1/opensearch.xml new file mode 100644 index 000000000..e69de29bb diff --git a/v1.34.1/renderer.index b/v1.34.1/renderer.index new file mode 100644 index 000000000..73496ba0e --- /dev/null +++ b/v1.34.1/renderer.index @@ -0,0 +1 @@ +O:21:"Doctum\Renderer\Index":3:{i:0;a:84:{s:26:"Google\ApiCore\AgentHeader";s:40:"7d38046e0792208e27a66987a440fbec3fb2fdf9";s:27:"Google\ApiCore\ApiException";s:40:"e1f796ba02fbdc003edca27991c6b3287f735f39";s:24:"Google\ApiCore\ApiStatus";s:40:"2ba79d3202bfd9760807f2d1d6aed7ba8ec4e09f";s:25:"Google\ApiCore\ArrayTrait";s:40:"5f4b7bbc8febe9103d29abffbdd909a3143114c9";s:25:"Google\ApiCore\BidiStream";s:40:"f187ec06592124559d7919afb155d42f60d7f882";s:19:"Google\ApiCore\Call";s:40:"e92d5858f379f3c63f409b2fc78f85d078217568";s:33:"Google\ApiCore\ClientOptionsTrait";s:40:"25b1c1424e45cab978686d91834a920a5858f48a";s:27:"Google\ApiCore\ClientStream";s:40:"772acc004b35776868edd7d632a0a8891f308d93";s:33:"Google\ApiCore\CredentialsWrapper";s:40:"bb4c01f9d932733c552ed727f246678e9d3e6da1";s:34:"Google\ApiCore\FixedSizeCollection";s:40:"1028bf753f3a0c1a99b3ce7b01702d4de40f6123";s:23:"Google\ApiCore\GPBLabel";s:40:"726ea420311eee5ee0595c7d456b35b664184727";s:22:"Google\ApiCore\GPBType";s:40:"f9f2efd3d7d985056b22385dcff6863b698465d0";s:31:"Google\ApiCore\GapicClientTrait";s:40:"8386333466992287fe15cb459657f3764da02158";s:31:"Google\ApiCore\GrpcSupportTrait";s:40:"7ff202159e2c780194516fedcd5fc628f5841cb6";s:41:"Google\ApiCore\InsecureCredentialsWrapper";s:40:"b7599918c4e58db1e4503867f5c013143adac74b";s:54:"Google\ApiCore\Middleware\CredentialsWrapperMiddleware";s:40:"de0ca0a8e317dcd7c00609789782773e5ffa8e2b";s:47:"Google\ApiCore\Middleware\FixedHeaderMiddleware";s:40:"8ed1b632653b3b30d5c9b427ba3fc7193afc306d";s:45:"Google\ApiCore\Middleware\MiddlewareInterface";s:40:"0e1e8bbfed7012775009887f3583dee80fb60fbd";s:46:"Google\ApiCore\Middleware\OperationsMiddleware";s:40:"43a42c8ab032ebd9d562c927fe3bb556325bab11";s:49:"Google\ApiCore\Middleware\OptionsFilterMiddleware";s:40:"4aaafe9e5eeab61570e1372e6e96368a93e1492b";s:41:"Google\ApiCore\Middleware\PagedMiddleware";s:40:"3fb85e046ebb27dac466a4c8cc7a5aa015e102e6";s:57:"Google\ApiCore\Middleware\RequestAutoPopulationMiddleware";s:40:"62102d881e8e071a734a37e8d4b1579633503a2c";s:52:"Google\ApiCore\Middleware\ResponseMetadataMiddleware";s:40:"203d7d6d46d129b6ad42f62fa3d649ce8ac7b153";s:41:"Google\ApiCore\Middleware\RetryMiddleware";s:40:"6bdb33dcfd45673e7981d732e12d880f74c7783d";s:32:"Google\ApiCore\OperationResponse";s:40:"3dd9181c13ed80ac348ce56060635a0cdbc42fae";s:34:"Google\ApiCore\Options\CallOptions";s:40:"6dc9bba22cfbe4394e3b3a89188f9910a7643ae8";s:36:"Google\ApiCore\Options\ClientOptions";s:40:"e6986dd56617987c72f9bb4d104cb1c71617bf65";s:35:"Google\ApiCore\Options\OptionsTrait";s:40:"edee885155e969219fa9da2ac0d0e8216ae36b14";s:39:"Google\ApiCore\Options\TransportOptions";s:40:"8701da2ee27cd5bb6364ee7cb82947b91e81126e";s:68:"Google\ApiCore\Options\TransportOptions\GrpcFallbackTransportOptions";s:40:"0abb693d8a62ce689b55961e97b7691dea991ee6";s:60:"Google\ApiCore\Options\TransportOptions\GrpcTransportOptions";s:40:"5009b918c050c8166144d85491348def064e2bc2";s:60:"Google\ApiCore\Options\TransportOptions\RestTransportOptions";s:40:"a4b57c87d9d19c66d8cd1a3b37d967b491b9ac66";s:19:"Google\ApiCore\Page";s:40:"889a674efef59e5bf0b1f736e734866f4183ce33";s:38:"Google\ApiCore\PageStreamingDescriptor";s:40:"6ab1e368457e187dda9550bb79512897470e70d5";s:32:"Google\ApiCore\PagedListResponse";s:40:"07d4c5be9e9b9271adc1256cf65a5f7b91228fcc";s:27:"Google\ApiCore\PathTemplate";s:40:"25e7484b5154eabb1236347cf6344e539731f3c7";s:27:"Google\ApiCore\PollingTrait";s:40:"8be26c78565a6f548e1277b13e6ba6faec656102";s:29:"Google\ApiCore\RequestBuilder";s:40:"db0a0fed8a8514c074fab57d07b2fec9c5f8c538";s:44:"Google\ApiCore\RequestParamsHeaderDescriptor";s:40:"88dbefe4cc97e5950ee69b36538f36f388600907";s:34:"Google\ApiCore\ResourceHelperTrait";s:40:"9fe8100068908955e627960cec9c5153fb9da05c";s:56:"Google\ApiCore\ResourceTemplate\AbsoluteResourceTemplate";s:40:"7d57cdf57939accb1e300344675d8b15bc4f5dc6";s:38:"Google\ApiCore\ResourceTemplate\Parser";s:40:"b0d58b384668cacaf21c353a00a92239cd959335";s:56:"Google\ApiCore\ResourceTemplate\RelativeResourceTemplate";s:40:"bcae48c10baea429d531b0c1f2d447734fdfe835";s:57:"Google\ApiCore\ResourceTemplate\ResourceTemplateInterface";s:40:"c49153bafa0b56f0fbe672c28b060c120af28bfb";s:39:"Google\ApiCore\ResourceTemplate\Segment";s:40:"55aa2f63116a33dd4cf80a50634a9b37fec965d8";s:28:"Google\ApiCore\RetrySettings";s:40:"5f01121e1738b4e335b7d70519f66e2c8ebe3de0";s:25:"Google\ApiCore\Serializer";s:40:"6c1e73082925ed61db8d69ab64ce31e6407be916";s:27:"Google\ApiCore\ServerStream";s:40:"3545dd1fb89c62dbcdc0da2f44d63a9150d4f073";s:43:"Google\ApiCore\ServerStreamingCallInterface";s:40:"414aea97bea3e379b60e40e633ce0abad23540be";s:34:"Google\ApiCore\ServiceAddressTrait";s:40:"f5c31fccd8ec5569df4d34bd3cdeb39777f625d5";s:36:"Google\ApiCore\Testing\GeneratedTest";s:40:"3c2d2ccce7de67696731cf9ff045611965115c2b";s:50:"Google\ApiCore\Testing\MessageAwareArrayComparator";s:40:"7244849eb552c28c0881e9bce2de4677c642f269";s:43:"Google\ApiCore\Testing\MessageAwareExporter";s:40:"414a1762f707ff5f7535590575fc1c7488d77a21";s:44:"Google\ApiCore\Testing\MockBidiStreamingCall";s:40:"0c27b827c35f6c06ee2833698cabe70dfca722a5";s:46:"Google\ApiCore\Testing\MockClientStreamingCall";s:40:"801483ea5b245665240f5c55f7c713ef523b7e41";s:40:"Google\ApiCore\Testing\MockGrpcTransport";s:40:"2f819768980dae69fea323c2fcb92c9256b03250";s:34:"Google\ApiCore\Testing\MockRequest";s:40:"1f36e2ae28210ee2f064c2252df312add85a0375";s:38:"Google\ApiCore\Testing\MockRequestBody";s:40:"a50ed3c6f2bb718d90b2834d5c40d7eb0f6a0733";s:35:"Google\ApiCore\Testing\MockResponse";s:40:"8f345cbefcdb19a0f09422d36eca148aeb62885e";s:46:"Google\ApiCore\Testing\MockServerStreamingCall";s:40:"f8d3b8edb4a1397a91e37155e7d72c206ffa98e9";s:33:"Google\ApiCore\Testing\MockStatus";s:40:"3c3a4b420577db420b2ecb946b5d46ee53044b37";s:36:"Google\ApiCore\Testing\MockStubTrait";s:40:"c30735eebffa9a3ed607e266c0b496437c4e1e47";s:36:"Google\ApiCore\Testing\MockTransport";s:40:"577155eb40374714268860a737b308297737e8cd";s:36:"Google\ApiCore\Testing\MockUnaryCall";s:40:"50da2be97b6a3460639b03b98ce0f2d3234eec46";s:49:"Google\ApiCore\Testing\ProtobufGPBEmptyComparator";s:40:"e3f97801bc5cdd431e5c01e1e57ea92bc9b4c7aa";s:48:"Google\ApiCore\Testing\ProtobufMessageComparator";s:40:"575eb7047b069549198251233dba561f262808c0";s:38:"Google\ApiCore\Testing\ReceivedRequest";s:40:"0a59d1a486583cbe8de493bef601a030c5ecb899";s:41:"Google\ApiCore\Testing\SerializationTrait";s:40:"7dd6b0153557aed5905c00671227f10eb42db07c";s:46:"Google\ApiCore\Transport\GrpcFallbackTransport";s:40:"ecaa8e95728ad81d06326f86b8524175b3d3f743";s:38:"Google\ApiCore\Transport\GrpcTransport";s:40:"c5031589ce1fa85ebc1a8ab04a078b31217776eb";s:44:"Google\ApiCore\Transport\Grpc\ForwardingCall";s:40:"a5bbcdd0a4e17fc175afdfbba7d09e85697e2431";s:59:"Google\ApiCore\Transport\Grpc\ForwardingServerStreamingCall";s:40:"aad20856974c56ca04e18d597d3cd38e94ec4a32";s:49:"Google\ApiCore\Transport\Grpc\ForwardingUnaryCall";s:40:"91a02b4a8cdae4aa602b1d374deadafe4aea2033";s:56:"Google\ApiCore\Transport\Grpc\ServerStreamingCallWrapper";s:40:"d7322a828188dc81d0c27c96766a589b6ce54b46";s:55:"Google\ApiCore\Transport\Grpc\UnaryInterceptorInterface";s:40:"b64e0e820a4e1c42d976a70eb4802cb95e877afe";s:48:"Google\ApiCore\Transport\HttpUnaryTransportTrait";s:40:"e2b075b30c23ca700e8113b45eb39b5b241afbd1";s:38:"Google\ApiCore\Transport\RestTransport";s:40:"36e93a16c3f8dc30d6354beac7e27d63e6a50d2c";s:47:"Google\ApiCore\Transport\Rest\JsonStreamDecoder";s:40:"a4ac140072446a34e912da5fec47888f9ac3e1ff";s:53:"Google\ApiCore\Transport\Rest\RestServerStreamingCall";s:40:"6a5877b79a8a64a22ce9d5b199291b7bdb3e9cc0";s:43:"Google\ApiCore\Transport\TransportInterface";s:40:"56ee14f157910ee58d0758674b862cbf2caa366c";s:23:"Google\ApiCore\UriTrait";s:40:"9fd450675f130936cdbe5f8acb369f96d73137b2";s:34:"Google\ApiCore\ValidationException";s:40:"c40a1cd32081350f24a65b30edb4722f263c0da9";s:30:"Google\ApiCore\ValidationTrait";s:40:"0a85e5563716a26a0257fef86acd732fec7c92e3";s:22:"Google\ApiCore\Version";s:40:"6d9060edbadf247bb34271e7658e15be06e10a26";}i:1;a:1:{i:0;s:7:"v1.34.1";}i:2;a:10:{i:0;s:6:"Google";i:1;s:14:"Google\ApiCore";i:2;s:25:"Google\ApiCore\Middleware";i:3;s:22:"Google\ApiCore\Options";i:4;s:39:"Google\ApiCore\Options\TransportOptions";i:5;s:31:"Google\ApiCore\ResourceTemplate";i:6;s:22:"Google\ApiCore\Testing";i:7;s:24:"Google\ApiCore\Transport";i:8;s:29:"Google\ApiCore\Transport\Grpc";i:9;s:29:"Google\ApiCore\Transport\Rest";}} \ No newline at end of file diff --git a/v1.34.1/search.html b/v1.34.1/search.html new file mode 100644 index 000000000..fddbc6212 --- /dev/null +++ b/v1.34.1/search.html @@ -0,0 +1,294 @@ + + + + + + Search | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ + +

This page allows you to search through the API documentation for + specific terms. Enter your search words into the box below and click + "submit". The search will be performed on namespaces, classes, interfaces, + traits, functions, and methods.

+ +
+
+ + +
+ +
+ +

Search Results

+ +
+
+ + + + +
+
+ + + diff --git a/v1.34.1/traits.html b/v1.34.1/traits.html new file mode 100644 index 000000000..35f32d20a --- /dev/null +++ b/v1.34.1/traits.html @@ -0,0 +1,195 @@ + + + + + + Traits | Google API Core - v1.34.1 + + + + + + + + + + + + + + + + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+ + +
+ +
+
+ +
+

Provides basic array helper methods.

+
+
+
+ +
+

Common functions used to work with various clients.

+
+
+
+ +
+

Common functions used to work with various clients.

+
+
+
+ +
+

Provides helper methods for gRPC support.

+
+
+
+ +
+

Trait implemented by any class representing an associative array of PHP options.

+
+
+
+ +
+ +
+
+
+ +
+

Provides functionality for loading a resource name template map from a descriptor config, +retrieving a PathTemplate, and parsing values using registered templates.

+
+
+
+ +
+

Provides helper methods for service address handling.

+
+
+
+ +
+

The MockStubTrait is used by generated mock stub classes which extent \Grpc\BaseStub +(https://github.com/grpc/grpc/blob/master/src/php/lib/Grpc/BaseStub.php) +It provides functionality to add responses, get received calls, and overrides the _simpleRequest +method so that the elements of $responses are returned instead of making a call to the API.

+
+
+
+ +
+ +
+
+
+ +
+

A trait for shared functionality between transports that support only unary RPCs using simple +HTTP requests.

+
+
+
+
+ UriTrait +
+
+

Provides a light wrapper around often used URI related functions.

+
+
+
+ +
+ +
+
+
+
+
+ + +