_id stringlengths 2 7 | text stringlengths 6 2.61k | title stringclasses 1
value |
|---|---|---|
c500 | // SetHasFlaggedResources sets the HasFlaggedResources field's value. | |
c501 | // SetEstimatedMonthlySavings sets the EstimatedMonthlySavings field's value. | |
c502 | // SetEstimatedPercentMonthlySavings sets the EstimatedPercentMonthlySavings field's value. | |
c503 | // SetIsSuppressed sets the IsSuppressed field's value. | |
c504 | // SetResourcesFlagged sets the ResourcesFlagged field's value. | |
c505 | // SetResourcesIgnored sets the ResourcesIgnored field's value. | |
c506 | // SetResourcesProcessed sets the ResourcesProcessed field's value. | |
c507 | // SetResourcesSuppressed sets the ResourcesSuppressed field's value. | |
c508 | // GoFmt returns the Go formated string of the input.
//
// Panics if the format fails. | |
c509 | // Capitalize capitalizes the first character of the string. | |
c510 | // SortXML sorts the reader's XML elements | |
c511 | // PrettyPrint generates a human readable representation of the value v.
// All values of v are recursively found and pretty printed also. | |
c512 | // SetForceDeleteWithoutRecovery sets the ForceDeleteWithoutRecovery field's value. | |
c513 | // SetRecoveryWindowInDays sets the RecoveryWindowInDays field's value. | |
c514 | // SetVersionIdsToStages sets the VersionIdsToStages field's value. | |
c515 | // SetExcludeCharacters sets the ExcludeCharacters field's value. | |
c516 | // SetExcludeLowercase sets the ExcludeLowercase field's value. | |
c517 | // SetExcludeNumbers sets the ExcludeNumbers field's value. | |
c518 | // SetExcludePunctuation sets the ExcludePunctuation field's value. | |
c519 | // SetExcludeUppercase sets the ExcludeUppercase field's value. | |
c520 | // SetIncludeSpace sets the IncludeSpace field's value. | |
c521 | // SetPasswordLength sets the PasswordLength field's value. | |
c522 | // SetRequireEachIncludedType sets the RequireEachIncludedType field's value. | |
c523 | // SetRandomPassword sets the RandomPassword field's value. | |
c524 | // SetIncludeDeprecated sets the IncludeDeprecated field's value. | |
c525 | // SetSecretList sets the SecretList field's value. | |
c526 | // SetAutomaticallyAfterDays sets the AutomaticallyAfterDays field's value. | |
c527 | // SetSecretVersionsToStages sets the SecretVersionsToStages field's value. | |
c528 | // SetMoveToVersionId sets the MoveToVersionId field's value. | |
c529 | // SetRemoveFromVersionId sets the RemoveFromVersionId field's value. | |
c530 | // SetAuthorizationToken sets the AuthorizationToken field's value. | |
c531 | // SetProxyEndpoint sets the ProxyEndpoint field's value. | |
c532 | // SetAcceptedMediaTypes sets the AcceptedMediaTypes field's value. | |
c533 | // SetImageDetails sets the ImageDetails field's value. | |
c534 | // SetRegistryIds sets the RegistryIds field's value. | |
c535 | // SetAuthorizationData sets the AuthorizationData field's value. | |
c536 | // SetPreviewResults sets the PreviewResults field's value. | |
c537 | // SetImageSizeInBytes sets the ImageSizeInBytes field's value. | |
c538 | // SetLayerAvailability sets the LayerAvailability field's value. | |
c539 | // SetLayerSize sets the LayerSize field's value. | |
c540 | // SetAppliedRulePriority sets the AppliedRulePriority field's value. | |
c541 | // SetExpiringImageTotalCount sets the ExpiringImageTotalCount field's value. | |
c542 | // SetRepositoryArn sets the RepositoryArn field's value. | |
c543 | // SetRepositoryUri sets the RepositoryUri field's value. | |
c544 | // SetLayerPartBlob sets the LayerPartBlob field's value. | |
c545 | // SetPartFirstByte sets the PartFirstByte field's value. | |
c546 | // SetPartLastByte sets the PartLastByte field's value. | |
c547 | // SetLastByteReceived sets the LastByteReceived field's value. | |
c548 | // UnmarshalXML deserializes an xml.Decoder into the container v. V
// needs to match the shape of the XML expected to be decoded.
// If the shape doesn't match unmarshaling will fail. | |
c549 | // parse deserializes any value from the XMLNode. The type tag is used to infer the type, or reflect
// will be used to determine the type from r. | |
c550 | // parseStruct deserializes a structure and its fields from an XMLNode. Any nested
// types in the structure will also be deserialized. | |
c551 | // parseList deserializes a list of values from an XML node. Each list entry
// will also be deserialized. | |
c552 | // parseMap deserializes a map from an XMLNode. The direct children of the XMLNode
// will also be deserialized as map entries. | |
c553 | // parseMapEntry deserializes a map entry from a XML node. | |
c554 | // parseScaller deserializes an XMLNode value into a concrete type based on the
// interface type of r.
//
// Error is returned if the deserialization fails due to invalid type conversion,
// or unsupported interface type. | |
c555 | // Copy returns of this handler's lists. | |
c556 | // Clear removes callback functions for all handlers | |
c557 | // copy creates a copy of the handler list. | |
c558 | // PushBackNamed pushes named handler f to the back of the handler list. | |
c559 | // PushFrontNamed pushes named handler f to the front of the handler list. | |
c560 | // RemoveByName removes a NamedHandler by name. | |
c561 | // SwapNamed will swap out any existing handlers with the same name as the
// passed in NamedHandler returning true if handlers were swapped. False is
// returned otherwise. | |
c562 | // Swap will swap out all handlers matching the name passed in. The matched
// handlers will be swapped in. True is returned if the handlers were swapped. | |
c563 | // SetBackNamed will replace the named handler if it exists in the handler list.
// If the handler does not exist the handler will be added to the end of the list. | |
c564 | // SetFrontNamed will replace the named handler if it exists in the handler list.
// If the handler does not exist the handler will be added to the beginning of
// the list. | |
c565 | // Run executes all handlers in the list with a given request object. | |
c566 | // HandlerListLogItem logs the request handler and the state of the
// request's Error value. Always returns true to continue iterating
// request handlers in a HandlerList. | |
c567 | // WithAppendUserAgent will add a string to the user agent prefixed with a
// single white space. | |
c568 | // BuildXML will serialize params into an xml.Encoder. Error will be returned
// if the serialization of any of the params or nested values fails. | |
c569 | // Returns the reflection element of a value, if it is a pointer. | |
c570 | // buildValue generic XMLNode builder for any type. Will build value for their specific type
// struct, list, map, scalar.
//
// Also takes a "type" tag value to set what type a value should be converted to XMLNode as. If
// type is not provided reflect will be used to determine the value's type. | |
c571 | // buildStruct adds a struct and its fields to the current XMLNode. All fields and any nested
// types are converted to XMLNodes also. | |
c572 | // buildList adds the value's list items to the current XMLNode as children nodes. All
// nested values in the list are converted to XMLNodes also. | |
c573 | // buildScalar will convert the value into a string and append it as a attribute or child
// of the current XMLNode.
//
// The value will be added as an attribute if tag contains a "xmlAttribute" attribute value.
//
// Error will be returned if the value type is unsupported. | |
c574 | // WaitUntilIdentityExists uses the Amazon SES API operation
// GetIdentityVerificationAttributes to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c575 | // WaitUntilDistributionDeployed uses the CloudFront API operation
// GetDistribution to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c576 | // WaitUntilInvalidationCompleted uses the CloudFront API operation
// GetInvalidation to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c577 | // WaitUntilStreamingDistributionDeployed uses the CloudFront API operation
// GetStreamingDistribution to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c578 | // WaitUntilAppExists uses the AWS OpsWorks API operation
// DescribeApps to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c579 | // WaitUntilDeploymentSuccessful uses the AWS OpsWorks API operation
// DescribeDeployments to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c580 | // WaitUntilInstanceOnline uses the AWS OpsWorks API operation
// DescribeInstances to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c581 | // WaitUntilInstanceRegistered uses the AWS OpsWorks API operation
// DescribeInstances to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c582 | // WaitUntilInstanceTerminated uses the AWS OpsWorks API operation
// DescribeInstances to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | |
c583 | // SetSharedDirectory sets the SharedDirectory field's value. | |
c584 | // SetIpRoutes sets the IpRoutes field's value. | |
c585 | // SetUpdateSecurityGroupForDirectoryControllers sets the UpdateSecurityGroupForDirectoryControllers field's value. | |
c586 | // SetComputerId sets the ComputerId field's value. | |
c587 | // SetReplicationScope sets the ReplicationScope field's value. | |
c588 | // SetComputer sets the Computer field's value. | |
c589 | // SetConditionalForwarderIpAddrs sets the ConditionalForwarderIpAddrs field's value. | |
c590 | // SetTrustPassword sets the TrustPassword field's value. | |
c591 | // SetDeleteAssociatedConditionalForwarder sets the DeleteAssociatedConditionalForwarder field's value. | |
c592 | // SetRemoteDomainNames sets the RemoteDomainNames field's value. | |
c593 | // SetConditionalForwarders sets the ConditionalForwarders field's value. | |
c594 | // SetDirectoryDescriptions sets the DirectoryDescriptions field's value. | |
c595 | // SetDomainControllerIds sets the DomainControllerIds field's value. | |
c596 | // SetTopicNames sets the TopicNames field's value. | |
c597 | // SetEventTopics sets the EventTopics field's value. | |
c598 | // SetSharedDirectoryIds sets the SharedDirectoryIds field's value. | |
c599 | // SetSharedDirectories sets the SharedDirectories field's value. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.