anchor
dict
positive
dict
negative
dict
{ "audio": "", "image": "", "text": "func (s *ListOriginEndpointsOutput) SetOriginEndpoints(v", "video": "" }
{ "audio": "", "image": "", "text": " []*OriginEndpoint) *ListOriginEndpointsOutput {\n\ts.OriginEndpoints = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *RotateIngestEndpointCredentialsInput) SetIngestEndpointId(v", "video": "" }
{ "audio": "", "image": "", "text": " string) *RotateIngestEndpointCredentialsInput {\n\ts.IngestEndpointId = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *StreamSelection) SetMaxVideoBitsPerSecond(v int64) *StreamSelection {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.MaxVideoBitsPerSecond = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": " v.Int64 != 0 {\n\t\tenc.Int64(v.Int64)\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (s *StreamSelection) SetMinVideoBitsPerSecond(v int64) *StreamSelection {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.MinVideoBitsPerSecond = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": " v.Int64 != 0 {\n\t\tenc.Int64(v.Int64)\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (s *StreamSelection) SetStreamOrder(v string) *StreamSelection {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.StreamOrder = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func WithDownloaderRequestOptions(opts ...request.Option) func(*Downloader)", "video": "" }
{ "audio": "", "image": "", "text": " {\n\treturn func(d *Downloader) {\n\t\td.RequestOptions = append(d.RequestOptions, opts...)\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": " Option {\n\treturn func(opts *options) error {\n\t\topts.Service = service\n\t\treturn nil\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (d *downloader) download() (n int64, err error) {\n\t// If range is specified fall back to single download of that range\n\t// this enables the functionality of ranged gets with the downloader but\n\t// at the cost of no multipart downloads.\n\tif rng := aws.StringValue(d...
{ "audio": "", "image": "", "text": "\n\t\t// Wait for completion\n\t\tclose(ch)\n\t\td.wg.Wait()\n\t} else {\n\t\t// Checking if we read anything new\n\t\tfor d.err == nil {\n\t\t\td.getChunk()\n\t\t}\n\n\t\t// We expect a 416 error letting us know we are done downloading the\n\t\t// total bytes. Since we do not...
{ "audio": "", "image": "", "text": "\t}\n\td.cols--\n\td.headers = append(d.headers[:colIndex], d.headers[colIndex+1:]...)\n\t// remove the column\n\tfor i := range d.data {\n\t\td.data[i] = append(d.data[i][:colIndex], d.data[i][colIndex+1:]...)\n\t}\n\treturn nil\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (d *downloader) downloadPart(ch chan dlchunk) {\n\tdefer d.wg.Done()\n\tfor {\n\t\tchunk, ok := <-ch\n\t\tif !ok {\n\t\t\tbreak\n\t\t}\n\t\tif d.getErr() != nil {\n\t\t\t// Drain the channel if there is an error, to prevent deadlocking", "video": "" }
{ "audio": "", "image": "", "text": "\n\t\t\t// of download producer.\n\t\t\tcontinue\n\t\t}\n\n\t\tif err := d.downloadChunk(chunk); err != nil {\n\t\t\td.setErr(err)\n\t\t}\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": " since we don't need it and we don't want to cache an\n\t// image being there if it has possibly been manually deleted (outside of\n\t// Nomad).\n\tif _, ok := d.pullFutures[image]; ok {\n\t\tdelete(d.pullFutures, image)\n\t}\n\n\t// If we are cleaning up, we increment the ref...
{ "audio": "", "image": "", "text": "func (d *downloader) getChunk() {\n\tif d.getErr() != nil {\n\t\treturn\n\t}\n\n\tchunk := dlchunk{w: d.w, start: d.pos, size: d.cfg.PartSize}\n\td.pos += d.cfg.PartSize", "video": "" }
{ "audio": "", "image": "", "text": "\n\n\tif err := d.downloadChunk(chunk); err != nil {\n\t\td.setErr(err)\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t}\n\td.cols--\n\td.headers = append(d.headers[:colIndex], d.headers[colIndex+1:]...)\n\t// remove the column\n\tfor i := range d.data {\n\t\td.data[i] = append(d.data[i][:colIndex], d.data[i][colIndex+1:]...)\n\t}\n\treturn nil\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (d *downloader) downloadRange(rng string) {\n\tif d.getErr() != nil {\n\t\treturn\n\t}\n\n\tchunk := dlchunk{w: d.w, start: d.pos}\n\t// Ranges specified will short circuit the multipart download\n\tchunk.withRange = rng\n\n\tif err := d.downloadChunk(chunk); err !=", "...
{ "audio": "", "image": "", "text": " nil {\n\t\td.setErr(err)\n\t}\n\n\t// Update the position based on the amount of data received.\n\td.pos = d.written\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t}\n\td.cols--\n\td.headers = append(d.headers[:colIndex], d.headers[colIndex+1:]...)\n\t// remove the column\n\tfor i := range d.data {\n\t\td.data[i] = append(d.data[i][:colIndex], d.data[i][colIndex+1:]...)\n\t}\n\treturn nil\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (d *downloader) downloadChunk(chunk dlchunk) error {\n\tin := &s3.GetObjectInput{}\n\tawsutil.Copy(in, d.in)\n\n\t// Get the next byte range of data\n\tin.Range = aws.String(chunk.ByteRange())\n\n\tvar n int64\n\tvar err error\n\tfor retry := 0; retry <= d.partBodyMaxRetr...
{ "audio": "", "image": "", "text": "\t\tresp.Body.Close()\n\t\tif err == nil {\n\t\t\tbreak\n\t\t}\n\n\t\tchunk.cur = 0\n\t\tlogMessage(d.cfg.S3, aws.LogDebugWithRequestRetries,\n\t\t\tfmt.Sprintf(\"DEBUG: object part body download interrupted %s, err, %v, retrying attempt %d\",\n\t\t\t\taws.StringValue(in.Key),...
{ "audio": "", "image": "", "text": "\t}\n\td.cols--\n\td.headers = append(d.headers[:colIndex], d.headers[colIndex+1:]...)\n\t// remove the column\n\tfor i := range d.data {\n\t\td.data[i] = append(d.data[i][:colIndex], d.data[i][colIndex+1:]...)\n\t}\n\treturn nil\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (d *downloader) getTotalBytes() int64 {\n\td.m.Lock()\n", "video": "" }
{ "audio": "", "image": "", "text": "\tdefer d.m.Unlock()\n\n\treturn d.totalBytes\n}", "video": "" }
{ "audio": "", "image": "", "text": " {\n\t\td.Lock()\n\t\tdelete(d.filesystemsCache, name)\n\t\td.Unlock()\n\t}\n\treturn err\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (d *downloader) setTotalBytes(resp *s3.GetObjectOutput) {\n\td.m.Lock()\n\tdefer d.m.Unlock()\n\n\tif d.totalBytes >= 0 {\n\t\treturn\n\t}\n\n\tif resp.ContentRange == nil {\n\t\t// ContentRange is nil when the full file contents is provided, and\n\t\t// is not chunked. U...
{ "audio": "", "image": "", "text": " a numbered total exists\n\t\t// If one does not exist, we will assume the total to be -1, undefined,\n\t\t// and sequentially download each chunk until hitting a 416 error\n\t\ttotalStr := parts[len(parts)-1]\n\t\tif totalStr != \"*\" {\n\t\t\ttotal, err = strconv.ParseInt(to...
{ "audio": "", "image": "", "text": " stream.\n\t\t\td.chunked = true\n\t\t} else {\n\t\t\t// via https://tools.ietf.org/html/rfc7230#section-3.3.2\n\t\t\td.req.ContentLength = 0\n\t\t}\n\t}\n\n\t// check \"Connection\" for \"Keep-Alive\"\n\td.kalive = d.req.Header.Get(\"Connection\") == \"Keep-Alive\"\n\n\tlog.V...
{ "audio": "", "image": "", "text": "func (d *downloader) getErr() error {\n\td.m.Lock()\n", "video": "" }
{ "audio": "", "image": "", "text": "\tdefer d.m.Unlock()\n\n\treturn d.err\n}", "video": "" }
{ "audio": "", "image": "", "text": " {\n\t\td.Lock()\n\t\tdelete(d.filesystemsCache, name)\n\t\td.Unlock()\n\t}\n\treturn err\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (d *downloader) setErr(e error) {\n\td.m.Lock()\n", "video": "" }
{ "audio": "", "image": "", "text": "\tdefer d.m.Unlock()\n\n\td.err = e\n}", "video": "" }
{ "audio": "", "image": "", "text": " {\n\t\td.Lock()\n\t\tdelete(d.filesystemsCache, name)\n\t\td.Unlock()\n\t}\n\treturn err\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *dlchunk) ByteRange() string {\n\tif len(c.withRange) != 0 {\n\t\treturn c.withRange\n\t}\n", "video": "" }
{ "audio": "", "image": "", "text": "\n\treturn fmt.Sprintf(\"bytes=%d-%d\", c.start, c.start+c.size-1)\n}", "video": "" }
{ "audio": "", "image": "", "text": " {\n\t\tv.Set(\"channels\", c.channels)\n\t}\n\n\tif len(c.description) > 0 {\n\t\tv.Set(\"description\", c.description)\n\t}\n\n\tif len(c.handle) > 0 {\n\t\tv.Set(\"handle\", c.handle)\n\t}\n\n\tif c.includeCount {\n\t\tv.Set(\"include_count\", \"true\")\n\t}\n\n\tif len(c.n...
{ "audio": "", "image": "", "text": "func (s *BrokerNodeGroupInfo) SetBrokerAZDistribution(v string) *BrokerNodeGroupInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.BrokerAZDistribution = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *BrokerNodeGroupInfo) SetClientSubnets(v []*string) *BrokerNodeGroupInfo", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.ClientSubnets = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *BrokerNodeGroupInfo) SetStorageInfo(v", "video": "" }
{ "audio": "", "image": "", "text": " *StorageInfo) *BrokerNodeGroupInfo {\n\ts.StorageInfo = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *BrokerNodeInfo) SetClientSubnet(v string) *BrokerNodeInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.ClientSubnet = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *BrokerSoftwareInfo) SetConfigurationArn(v string) *BrokerSoftwareInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.ConfigurationArn = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ClusterInfo) SetZookeeperConnectString(v string) *ClusterInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.ZookeeperConnectString = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *DescribeClusterOutput) SetClusterInfo(v", "video": "" }
{ "audio": "", "image": "", "text": " *ClusterInfo) *DescribeClusterOutput {\n\ts.ClusterInfo = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *EncryptionAtRest) SetDataVolumeKMSKeyId(v string) *EncryptionAtRest {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.DataVolumeKMSKeyId = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetBootstrapBrokersOutput) SetBootstrapBrokerString(v string) *GetBootstrapBrokersOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.BootstrapBrokerString = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListClustersInput) SetClusterNameFilter(v string) *ListClustersInput {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.ClusterNameFilter = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListClustersOutput) SetClusterInfoList(v []*ClusterInfo) *ListClustersOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.ClusterInfoList = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListNodesOutput) SetNodeInfoList(v []*NodeInfo) *ListNodesOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.NodeInfoList = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *NodeInfo) SetAddedToClusterTime(v string) *NodeInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.AddedToClusterTime = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *NodeInfo) SetBrokerNodeInfo(v *BrokerNodeInfo)", "video": "" }
{ "audio": "", "image": "", "text": " *NodeInfo {\n\ts.BrokerNodeInfo = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *NodeInfo) SetNodeARN(v string) *NodeInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.NodeARN = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *NodeInfo) SetZookeeperNodeInfo(v *ZookeeperNodeInfo)", "video": "" }
{ "audio": "", "image": "", "text": " *NodeInfo {\n\ts.ZookeeperNodeInfo = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *StorageInfo) SetEbsStorageInfo(v *EBSStorageInfo)", "video": "" }
{ "audio": "", "image": "", "text": " *StorageInfo {\n\ts.EbsStorageInfo = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ZookeeperNodeInfo) SetZookeeperId(v", "video": "" }
{ "audio": "", "image": "", "text": " float64) *ZookeeperNodeInfo {\n\ts.ZookeeperId = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ZookeeperNodeInfo) SetZookeeperVersion(v string) *ZookeeperNodeInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.ZookeeperVersion = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *BusinessReport) SetDeliveryTime(v time.Time) *BusinessReport {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.DeliveryTime = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\tnowFunc: func() time.Time { return time.Now().In(time.UTC) },\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (s *BusinessReportSchedule) SetLastBusinessReport(v", "video": "" }
{ "audio": "", "image": "", "text": " *BusinessReport) *BusinessReportSchedule {\n\ts.LastBusinessReport = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *Category) SetCategoryName(v string) *Category {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.CategoryName = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ConferencePreference) SetDefaultConferenceProviderArn(v string) *ConferencePreference {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.DefaultConferenceProviderArn = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *Content) SetAudioList(v []*Audio) *Content {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.AudioList = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *Content) SetSsmlList(v []*Ssml) *Content {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.SsmlList = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *CreateConferenceProviderInput) SetConferenceProviderName(v", "video": "" }
{ "audio": "", "image": "", "text": " string) *CreateConferenceProviderInput {\n\ts.ConferenceProviderName = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *DeveloperInfo) SetDeveloperName(v string) *DeveloperInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.DeveloperName = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *DeveloperInfo) SetPrivacyPolicy(v string) *DeveloperInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.PrivacyPolicy = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *DeviceStatusInfo) SetConnectionStatus(v string) *DeviceStatusInfo {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.ConnectionStatus = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *DeviceStatusInfo) SetDeviceStatusDetails(v []*DeviceStatusDetail)", "video": "" }
{ "audio": "", "image": "", "text": " *DeviceStatusInfo {\n\ts.DeviceStatusDetails = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetAddressBookOutput) SetAddressBook(v", "video": "" }
{ "audio": "", "image": "", "text": " *AddressBook) *GetAddressBookOutput {\n\ts.AddressBook = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetConferencePreferenceOutput) SetPreference(v *ConferencePreference)", "video": "" }
{ "audio": "", "image": "", "text": " *GetConferencePreferenceOutput {\n\ts.Preference = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetConferenceProviderOutput) SetConferenceProvider(v", "video": "" }
{ "audio": "", "image": "", "text": " *ConferenceProvider) *GetConferenceProviderOutput {\n\ts.ConferenceProvider = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetContactOutput) SetContact(v *Contact) *GetContactOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.Contact = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetGatewayGroupOutput) SetGatewayGroup(v", "video": "" }
{ "audio": "", "image": "", "text": " *GatewayGroup) *GetGatewayGroupOutput {\n\ts.GatewayGroup = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetGatewayOutput) SetGateway(v *Gateway) *GetGatewayOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.Gateway = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetRoomOutput) SetRoom(v *Room) *GetRoomOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.Room = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *GetSkillGroupOutput) SetSkillGroup(v", "video": "" }
{ "audio": "", "image": "", "text": " *SkillGroup) *GetSkillGroupOutput {\n\ts.SkillGroup = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *IPDialIn) SetCommsProtocol(v string) *IPDialIn {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.CommsProtocol = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListBusinessReportSchedulesOutput) SetBusinessReportSchedules(v", "video": "" }
{ "audio": "", "image": "", "text": " []*BusinessReportSchedule) *ListBusinessReportSchedulesOutput {\n\ts.BusinessReportSchedules = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListConferenceProvidersOutput) SetConferenceProviders(v", "video": "" }
{ "audio": "", "image": "", "text": " []*ConferenceProvider) *ListConferenceProvidersOutput {\n\ts.ConferenceProviders = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListDeviceEventsOutput) SetDeviceEvents(v", "video": "" }
{ "audio": "", "image": "", "text": " []*DeviceEvent) *ListDeviceEventsOutput {\n\ts.DeviceEvents = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListGatewayGroupsOutput) SetGatewayGroups(v []*GatewayGroupSummary)", "video": "" }
{ "audio": "", "image": "", "text": " *ListGatewayGroupsOutput {\n\ts.GatewayGroups = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListSkillsOutput) SetSkillSummaries(v []*SkillSummary) *ListSkillsOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.SkillSummaries = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListSkillsStoreCategoriesOutput) SetCategoryList(v", "video": "" }
{ "audio": "", "image": "", "text": " []*Category) *ListSkillsStoreCategoriesOutput {\n\ts.CategoryList = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListSkillsStoreSkillsByCategoryOutput) SetSkillsStoreSkills(v", "video": "" }
{ "audio": "", "image": "", "text": " []*SkillsStoreSkill) *ListSkillsStoreSkillsByCategoryOutput {\n\ts.SkillsStoreSkills = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ListSmartHomeAppliancesOutput) SetSmartHomeAppliances(v", "video": "" }
{ "audio": "", "image": "", "text": " []*SmartHomeAppliance) *ListSmartHomeAppliancesOutput {\n\ts.SmartHomeAppliances = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *MeetingSetting) SetRequirePin(v string) *MeetingSetting {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.RequirePin = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *PSTNDialIn) SetOneClickIdDelay(v string) *PSTNDialIn {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.OneClickIdDelay = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *PSTNDialIn) SetOneClickPinDelay(v string) *PSTNDialIn {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.OneClickPinDelay = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *PutConferencePreferenceInput) SetConferencePreference(v", "video": "" }
{ "audio": "", "image": "", "text": " *ConferencePreference) *PutConferencePreferenceInput {\n\ts.ConferencePreference = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *PutSkillAuthorizationInput) SetAuthorizationResult(v", "video": "" }
{ "audio": "", "image": "", "text": " map[string]*string) *PutSkillAuthorizationInput {\n\ts.AuthorizationResult = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *RegisterAVSDeviceInput) SetAmazonId(v", "video": "" }
{ "audio": "", "image": "", "text": " string) *RegisterAVSDeviceInput {\n\ts.AmazonId = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *ResolveRoomOutput) SetRoomSkillParameters(v []*RoomSkillParameter)", "video": "" }
{ "audio": "", "image": "", "text": " *ResolveRoomOutput {\n\ts.RoomSkillParameters = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SearchAddressBooksOutput) SetAddressBooks(v", "video": "" }
{ "audio": "", "image": "", "text": " []*AddressBookData) *SearchAddressBooksOutput {\n\ts.AddressBooks = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SearchContactsOutput) SetContacts(v", "video": "" }
{ "audio": "", "image": "", "text": " []*ContactData) *SearchContactsOutput {\n\ts.Contacts = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SearchRoomsOutput) SetRooms(v", "video": "" }
{ "audio": "", "image": "", "text": " []*RoomData) *SearchRoomsOutput {\n\ts.Rooms = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SearchSkillGroupsOutput) SetSkillGroups(v", "video": "" }
{ "audio": "", "image": "", "text": " []*SkillGroupData) *SearchSkillGroupsOutput {\n\ts.SkillGroups = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SendAnnouncementInput) SetRoomFilters(v", "video": "" }
{ "audio": "", "image": "", "text": " []*Filter) *SendAnnouncementInput {\n\ts.RoomFilters = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SendAnnouncementInput) SetTimeToLiveInSeconds(v int64) *SendAnnouncementInput {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.TimeToLiveInSeconds = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": " v.Int64 != 0 {\n\t\tenc.Int64(v.Int64)\n\t}\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (s *SendAnnouncementOutput) SetAnnouncementArn(v string) *SendAnnouncementOutput", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.AnnouncementArn = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetBulletPoints(v []*string) *SkillDetails {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.BulletPoints = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetDeveloperInfo(v *DeveloperInfo)", "video": "" }
{ "audio": "", "image": "", "text": " *SkillDetails {\n\ts.DeveloperInfo = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetEndUserLicenseAgreement(v string) *SkillDetails {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.EndUserLicenseAgreement = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetGenericKeywords(v []*string) *SkillDetails {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.GenericKeywords = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetInvocationPhrase(v string) *SkillDetails {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.InvocationPhrase = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetNewInThisVersionBulletPoints(v []*string) *SkillDetails {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.NewInThisVersionBulletPoints = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetReviews(v map[string]*string)", "video": "" }
{ "audio": "", "image": "", "text": " *SkillDetails {\n\ts.Reviews = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillDetails) SetSkillTypes(v []*string) *SkillDetails {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.SkillTypes = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SkillsStoreSkill) SetSkillDetails(v *SkillDetails) *SkillsStoreSkill", "video": "" }
{ "audio": "", "image": "", "text": " {\n\ts.SkillDetails = v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (s *SmartHomeAppliance) SetManufacturerName(v string) *SmartHomeAppliance {\n", "video": "" }
{ "audio": "", "image": "", "text": "\ts.ManufacturerName = &v\n\treturn s\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\tverStr = v.String()\n\t\t\t}\n\t\t\ts.goAttach(func() { s.updateClusterVersion(verStr) })\n\t\t\tcontinue\n\t\t}\n\n\t\t// update cluster version only if the decided version is greater than\n\t\t// the current cluster version\n\t\tif v != nil && s.cluster.Version().LessTha...
{ "audio": "", "image": "", "text": "func (c *Client) DestroyApplications(in DestroyApplicationsParams) ([]params.DestroyApplicationResult, error) {\n\targsV5 := params.DestroyApplicationsParams{\n\t\tApplications: make([]params.DestroyApplicationParams, 0, len(in.Applications)),\n\t}\n\tallResults := make([]para...
{ "audio": "", "image": "", "text": "\treturn nil, errors.New(\"this controller does not support --destroy-storage\")\n\t\t}\n\t\targsV4 := params.Entities{\n\t\t\tEntities: make([]params.Entity, len(argsV5.Applications)),\n\t\t}\n\t\tfor i, arg := range argsV5.Applications {\n\t\t\targsV4.Entities[i].Tag = arg.A...
{ "audio": "", "image": "", "text": " := make([]ProvisionTokenV1, len(in))\n\tfor i := range in {\n\t\tout[i] = *in[i].V1()\n\t}\n\treturn out\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *Client) ScaleApplication(in ScaleApplicationParams) (params.ScaleApplicationResult, error) {\n\tif !names.IsValidApplication(in.ApplicationName) {\n\t\treturn params.ScaleApplicationResult{}, errors.NotValidf(\"application %q\", in.ApplicationName)\n\t}\n\n\tif err :=...
{ "audio": "", "image": "", "text": " names.NewApplicationTag(in.ApplicationName).String(),\n\t\t\tScale: in.Scale,\n\t\t\tScaleChange: in.ScaleChange,\n\t\t\tForce: in.Force,\n\t\t}},\n\t}\n\tvar results params.ScaleApplicationResults\n\tif err := c.facade.FacadeCall(\"ScaleApplications\", a...
{ "audio": "", "image": "", "text": "\tif err != nil {\n\t\treturn nil, errors.Trace(err)\n\t}\n\tvar info jujuclient.RegistrationInfo\n\tif _, err := asn1.Unmarshal(decodedData, &info); err != nil {\n\t\treturn nil, errors.Trace(err)\n\t}\n\n\tparams.controllerAddrs = info.Addrs\n\tparams.userTag = names.NewUser...
{ "audio": "", "image": "", "text": "func (c *Client) GetConstraints(applications ...string) ([]constraints.Value, error) {\n\tvar allConstraints []constraints.Value\n\tif c.BestAPIVersion() < 5 {\n\t\tfor _, application := range applications {\n\t\t\tvar result params.GetConstraintsResults\n\t\t\terr := c.facade...
{ "audio": "", "image": "", "text": " applications {\n\t\targs.Entities = append(args.Entities,\n\t\t\tparams.Entity{Tag: names.NewApplicationTag(application).String()})\n\t}\n\terr := c.facade.FacadeCall(\"GetConstraints\", args, &results)\n\tif err != nil {\n\t\treturn nil, errors.Trace(err)\n\t}\n\tfor i, resu...
{ "audio": "", "image": "", "text": "\n\t}\n\tvar results params.ErrorResults\n\terr := st.facade.FacadeCall(\"SetMachineBlockDevices\", args, &results)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn results.OneError()\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *Client) SetConstraints(application string, constraints constraints.Value) error {\n\targs := params.SetConstraints{\n\t\tApplicationName: application,\n\t\tConstraints: ", "video": "" }
{ "audio": "", "image": "", "text": " constraints,\n\t}\n\treturn c.facade.FacadeCall(\"SetConstraints\", args, nil)\n}", "video": "" }
{ "audio": "", "image": "", "text": " a match\n\tcache := ctx.VersionConstraintCache()\n\tconstraints := cache[constraintStr]\n\n\t// Parse the constraints\n\tif constraints == nil {\n\t\tconstraints, err = version.NewConstraint(constraintStr)\n\t\tif err != nil {\n\t\t\treturn false\n\t\t}\n\t\tcache[constraintS...
{ "audio": "", "image": "", "text": "func (c *Client) Get(branchName, application string) (*params.ApplicationGetResults, error) {\n\tvar results params.ApplicationGetResults\n\targs := params.ApplicationGet{\n\t\tApplicationName: application,\n", "video": "" }
{ "audio": "", "image": "", "text": "\t\tBranchName: branchName,\n\t}\n\terr := c.facade.FacadeCall(\"Get\", args, &results)\n\treturn &results, err\n}", "video": "" }
{ "audio": "", "image": "", "text": " unit)\n\t\t\t}\n\t\t\tentities[i].Tag = names.NewUnitTag(unit).String()\n\t\t}\n\t\targs.Tags = params.Entities{Entities: entities}\n\t}\n\n\tresults := new(params.ErrorResults)\n\terr := c.facade.FacadeCall(\"ResolveUnitErrors\", args, results)\n\tif err != nil {\n\t\treturn...
{ "audio": "", "image": "", "text": "func (c *Client) Set(application string, options map[string]string) error {\n\tp := params.ApplicationSet{", "video": "" }
{ "audio": "", "image": "", "text": "\n\t\tApplicationName: application,\n\t\tOptions: options,\n\t}\n\treturn c.facade.FacadeCall(\"Set\", p, nil)\n}", "video": "" }
{ "audio": "", "image": "", "text": "\tparams.Set(\"isfeatured\", \"true\")\n\t}\n\tif options.Ispublic {\n\t\tparams.Set(\"ispublic\", \"true\")\n\t}\n\tif options.Passwordenabled {\n\t\tparams.Set(\"passwordenabled\", \"true\")\n\t}\n\n\tresponse, err := NewRequest(c, \"createTemplate\", params)\n\tif err != ni...
{ "audio": "", "image": "", "text": "func (c *Client) Unset(application string, options []string) error {\n\tp := params.ApplicationUnset{\n\t\tApplicationName: application,\n\t\tOptions: ", "video": "" }
{ "audio": "", "image": "", "text": " options,\n\t}\n\treturn c.facade.FacadeCall(\"Unset\", p, nil)\n}", "video": "" }
{ "audio": "", "image": "", "text": " (string, string, string, error) {\n\treturn api.SendMessageContext(context.Background(), channelID, MsgOptionUnfurl(timestamp, unfurls), MsgOptionCompose(options...))\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *Client) CharmRelations(application string) ([]string, error) {\n\tvar results params.ApplicationCharmRelationsResults", "video": "" }
{ "audio": "", "image": "", "text": "\n\targs := params.ApplicationCharmRelations{ApplicationName: application}\n\terr := c.facade.FacadeCall(\"CharmRelations\", args, &results)\n\treturn results.CharmRelations, err\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t}\n\tif len(results.Results) != 1 {\n\t\treturn params.ControllersChanges{}, errors.Errorf(\"expected 1 result, got %d\", len(results.Results))\n\t}\n\tresult := results.Results[0]\n\tif result.Error != nil {\n\t\treturn params.ControllersChanges{}, result.Error\n\t}\n\tretu...
{ "audio": "", "image": "", "text": "func (c *Client) DestroyRelation(force *bool, maxWait *time.Duration, endpoints ...string) error {\n\targs :=", "video": "" }
{ "audio": "", "image": "", "text": " params.DestroyRelation{\n\t\tEndpoints: endpoints,\n\t\tForce: force,\n\t\tMaxWait: maxWait,\n\t}\n\treturn c.facade.FacadeCall(\"DestroyRelation\", args, nil)\n}", "video": "" }
{ "audio": "", "image": "", "text": " *Client {\n\tc.Username = u\n\treturn c\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *Client) DestroyRelationId(relationId int, force *bool, maxWait *time.Duration) error {\n\targs := params.DestroyRelation{", "video": "" }
{ "audio": "", "image": "", "text": "\n\t\tRelationId: relationId,\n\t\tForce: force,\n\t\tMaxWait: maxWait,\n\t}\n\treturn c.facade.FacadeCall(\"DestroyRelation\", args, nil)\n}", "video": "" }
{ "audio": "", "image": "", "text": " *time.Duration {\n\tCommandLine.FlagLong(&value, \"\", name, helpvalue...)\n\treturn &value\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *Client) SetRelationSuspended(relationIds []int, suspended bool, message string) error {\n\tvar args params.RelationSuspendedArgs\n\tfor _, relId := range relationIds {\n\t\targs.Args = append(args.Args, params.RelationSuspendedArg{\n\t\t\tRelationId: relId,\n\t\t\tSus...
{ "audio": "", "image": "", "text": "\treturn errors.Trace(err)\n\t}\n\tif len(results.Results) != len(args.Args) {\n\t\treturn errors.Errorf(\"expected %d results, got %d\", len(args.Args), len(results.Results))\n\t}\n\treturn results.Combine()\n}", "video": "" }
{ "audio": "", "image": "", "text": "\n\t}\n\tvar results params.ErrorResults\n\terr := st.facade.FacadeCall(\"SetMachineBlockDevices\", args, &results)\n\tif err != nil {\n\t\treturn err\n\t}\n\treturn results.OneError()\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *Client) Consume(arg crossmodel.ConsumeApplicationArgs) (string, error) {\n\tvar consumeRes params.ErrorResults\n\targs := params.ConsumeApplicationArgs{\n\t\tArgs: []params.ConsumeApplicationArg{{\n\t\t\tApplicationOfferDetails: arg.Offer,\n\t\t\tApplicationAlias: ...
{ "audio": "", "image": "", "text": "\t\t\tAlias: arg.ControllerInfo.Alias,\n\t\t\tAddrs: arg.ControllerInfo.Addrs,\n\t\t\tCACert: arg.ControllerInfo.CACert,\n\t\t}\n\t}\n\terr := c.facade.FacadeCall(\"Consume\", args, &consumeRes)\n\tif err != nil {\n\t\treturn \"\", errors.Trace(err)\n\t}...
{ "audio": "", "image": "", "text": " {\n\treturn s.debugger.SetVariableInScope(arg.Scope, arg.Symbol, arg.Value)\n}", "video": "" }
{ "audio": "", "image": "", "text": "func (c *Client) SetApplicationConfig(branchName, application string, config map[string]string) error {\n\tif c.BestAPIVersion() < 6 {\n\t\treturn errors.NotSupportedf(\"SetApplicationsConfig not supported by this version of Juju\")\n\t}\n\targs := params.ApplicationConfigSetA...
{ "audio": "", "image": "", "text": "\t}},\n\t}\n\tvar results params.ErrorResults\n\terr := c.facade.FacadeCall(\"SetApplicationsConfig\", args, &results)\n\tif err != nil {\n\t\treturn errors.Trace(err)\n\t}\n\treturn results.OneError()\n}", "video": "" }
{ "audio": "", "image": "", "text": "\t\t\tlogger.Warningf(\"the configuration setting %q already has the value %q\", k, v)\n\t\t\t}\n\t\t}\n\t}\n\n\tif client.BestAPIVersion() < 6 {\n\t\terr = client.Set(c.applicationName, settings)\n\t} else {\n\t\terr = client.SetApplicationConfig(c.branchName, c.applicationNa...