cloud.google.com/go/storage.Writer.o (field)

18 uses

	cloud.google.com/go/storage (current package)
		storage.go#L1002: 		o:           o,
		writer.go#L77: 	o   *ObjectHandle
		writer.go#L93: 	if attrs.Name != w.o.object {
		writer.go#L94: 		return fmt.Errorf("storage: Writer.Name %q does not match object name %q", attrs.Name, w.o.object)
		writer.go#L99: 	if attrs.KMSKeyName != "" && w.o.encryptionKey != nil {
		writer.go#L121: 		rawObj := attrs.toRawObject(w.o.bucket)
		writer.go#L128: 		if w.o.c.envHost != "" {
		writer.go#L129: 			w.o.c.raw.BasePath = fmt.Sprintf("%s://%s", w.o.c.scheme, w.o.c.envHost)
		writer.go#L131: 		call := w.o.c.raw.Objects.Insert(w.o.bucket, rawObj).
		writer.go#L135: 			Name(w.o.object)
		writer.go#L146: 		if err := setEncryptionHeaders(call.Header(), w.o.encryptionKey, false); err != nil {
		writer.go#L154: 		err := applyConds("NewWriter", w.o.gen, w.o.conds, call)
		writer.go#L156: 			if w.o.userProject != "" {
		writer.go#L157: 				call.UserProject(w.o.userProject)