google.golang.org/api/storage/v1.BucketLifecycleRule.Condition (field)

13 uses

	google.golang.org/api/storage/v1 (current package)
		storage-gen.go#L689: 	Condition *BucketLifecycleRuleCondition `json:"condition,omitempty"`

	cloud.google.com/go/storage
		bucket.go#L948: 			Condition: &raw.BucketLifecycleRuleCondition{
		bucket.go#L957: 			rr.Condition.IsLive = nil
		bucket.go#L959: 			rr.Condition.IsLive = googleapi.Bool(true)
		bucket.go#L961: 			rr.Condition.IsLive = googleapi.Bool(false)
		bucket.go#L965: 			rr.Condition.CreatedBefore = r.Condition.CreatedBefore.Format(rfc3339Date)
		bucket.go#L984: 				AgeInDays:             rr.Condition.Age,
		bucket.go#L985: 				MatchesStorageClasses: rr.Condition.MatchesStorageClass,
		bucket.go#L986: 				NumNewerVersions:      rr.Condition.NumNewerVersions,
		bucket.go#L990: 		if rr.Condition.IsLive == nil {
		bucket.go#L992: 		} else if *rr.Condition.IsLive {
		bucket.go#L998: 		if rr.Condition.CreatedBefore != "" {
		bucket.go#L999: 			r.Condition.CreatedBefore, _ = time.Parse(rfc3339Date, rr.Condition.CreatedBefore)