google-apis-redis_v1 0.46.0 → 0.48.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e081759852f72fc815c9cabe4b45ef461da6c5a90b5b394e8f8c899d0e9e8b5e
4
- data.tar.gz: e27c3ba006ce44425f8668b4f7de6e87606224a860a1ede5f691991983e26e59
3
+ metadata.gz: 913ca549ca81125e9510638fc6e573b633b938077c8aa1da1936b3b10c78055b
4
+ data.tar.gz: 7f1cde727e061705744b33ea16c2c8a99f0661586d5333fe94c2d8ff6e8a55f9
5
5
  SHA512:
6
- metadata.gz: 23840ce0881196fb5363a1e878a55aee95ecbcef3cd68e403cf1db3195db08734e1e4112aea19deed9adbe3d90d080b557762bfc95ed95130c1050353a931aa0
7
- data.tar.gz: d0db79de4ca8fd8acd5498bb3f1cd1b7403b2fa961659d2d38dca41ddcf65961ca96b25dcc8e18f15d481bb598f01d8a673119f2c0238e84ca3b62099bf5e4aa
6
+ metadata.gz: '054974d84109cb4057f9c6083654707a9ea1258c1a50c159ca12a628e227c1792224066958c858ae83e1ed9e6d246d4512276a5daf8c1067d5a244fd87cb4302'
7
+ data.tar.gz: cfea1ecd3a16c1ea174251171779ac8900126730f3a3ebe1f411684e758de0372a4927b802202693eff60785f7b50e96b8b9f592b78e174a16b817bd46990aa9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.48.0 (2024-03-17)
4
+
5
+ * Regenerated from discovery document revision 20240307
6
+
7
+ ### v0.47.0 (2024-03-03)
8
+
9
+ * Regenerated from discovery document revision 20240226
10
+
3
11
  ### v0.46.0 (2024-02-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240220
@@ -22,6 +22,114 @@ module Google
22
22
  module Apis
23
23
  module RedisV1
24
24
 
25
+ # Configuration for availability of database instance
26
+ class AvailabilityConfiguration
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Availability type. Potential values: * `ZONAL`: The instance serves data from
30
+ # only one zone. Outages in that zone affect data accessibility. * `REGIONAL`:
31
+ # The instance can serve data from more than one zone in a region (it is highly
32
+ # available).
33
+ # Corresponds to the JSON property `availabilityType`
34
+ # @return [String]
35
+ attr_accessor :availability_type
36
+
37
+ #
38
+ # Corresponds to the JSON property `externalReplicaConfigured`
39
+ # @return [Boolean]
40
+ attr_accessor :external_replica_configured
41
+ alias_method :external_replica_configured?, :external_replica_configured
42
+
43
+ #
44
+ # Corresponds to the JSON property `promotableReplicaConfigured`
45
+ # @return [Boolean]
46
+ attr_accessor :promotable_replica_configured
47
+ alias_method :promotable_replica_configured?, :promotable_replica_configured
48
+
49
+ def initialize(**args)
50
+ update!(**args)
51
+ end
52
+
53
+ # Update properties of this object
54
+ def update!(**args)
55
+ @availability_type = args[:availability_type] if args.key?(:availability_type)
56
+ @external_replica_configured = args[:external_replica_configured] if args.key?(:external_replica_configured)
57
+ @promotable_replica_configured = args[:promotable_replica_configured] if args.key?(:promotable_replica_configured)
58
+ end
59
+ end
60
+
61
+ # Configuration for automatic backups
62
+ class BackupConfiguration
63
+ include Google::Apis::Core::Hashable
64
+
65
+ # Whether customer visible automated backups are enabled on the instance.
66
+ # Corresponds to the JSON property `automatedBackupEnabled`
67
+ # @return [Boolean]
68
+ attr_accessor :automated_backup_enabled
69
+ alias_method :automated_backup_enabled?, :automated_backup_enabled
70
+
71
+ # Backup retention settings.
72
+ # Corresponds to the JSON property `backupRetentionSettings`
73
+ # @return [Google::Apis::RedisV1::RetentionSettings]
74
+ attr_accessor :backup_retention_settings
75
+
76
+ # Whether point-in-time recovery is enabled. This is optional field, if the
77
+ # database service does not have this feature or metadata is not available in
78
+ # control plane, this can be omitted.
79
+ # Corresponds to the JSON property `pointInTimeRecoveryEnabled`
80
+ # @return [Boolean]
81
+ attr_accessor :point_in_time_recovery_enabled
82
+ alias_method :point_in_time_recovery_enabled?, :point_in_time_recovery_enabled
83
+
84
+ def initialize(**args)
85
+ update!(**args)
86
+ end
87
+
88
+ # Update properties of this object
89
+ def update!(**args)
90
+ @automated_backup_enabled = args[:automated_backup_enabled] if args.key?(:automated_backup_enabled)
91
+ @backup_retention_settings = args[:backup_retention_settings] if args.key?(:backup_retention_settings)
92
+ @point_in_time_recovery_enabled = args[:point_in_time_recovery_enabled] if args.key?(:point_in_time_recovery_enabled)
93
+ end
94
+ end
95
+
96
+ # A backup run.
97
+ class BackupRun
98
+ include Google::Apis::Core::Hashable
99
+
100
+ # The time the backup operation completed. REQUIRED
101
+ # Corresponds to the JSON property `endTime`
102
+ # @return [String]
103
+ attr_accessor :end_time
104
+
105
+ # An error that occurred during a backup creation operation.
106
+ # Corresponds to the JSON property `error`
107
+ # @return [Google::Apis::RedisV1::OperationError]
108
+ attr_accessor :error
109
+
110
+ # The time the backup operation started. REQUIRED
111
+ # Corresponds to the JSON property `startTime`
112
+ # @return [String]
113
+ attr_accessor :start_time
114
+
115
+ # The status of this run. REQUIRED
116
+ # Corresponds to the JSON property `status`
117
+ # @return [String]
118
+ attr_accessor :status
119
+
120
+ def initialize(**args)
121
+ update!(**args)
122
+ end
123
+
124
+ # Update properties of this object
125
+ def update!(**args)
126
+ @end_time = args[:end_time] if args.key?(:end_time)
127
+ @error = args[:error] if args.key?(:error)
128
+ @start_time = args[:start_time] if args.key?(:start_time)
129
+ @status = args[:status] if args.key?(:status)
130
+ end
131
+ end
132
+
25
133
  #
26
134
  class CertChain
27
135
  include Google::Apis::Core::Hashable
@@ -169,6 +277,502 @@ module Google
169
277
  end
170
278
  end
171
279
 
280
+ # Contains compliance information about a security standard indicating unmet
281
+ # recommendations.
282
+ class Compliance
283
+ include Google::Apis::Core::Hashable
284
+
285
+ # Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
286
+ # Corresponds to the JSON property `standard`
287
+ # @return [String]
288
+ attr_accessor :standard
289
+
290
+ # Version of the standard or benchmark, for example, 1.1
291
+ # Corresponds to the JSON property `version`
292
+ # @return [String]
293
+ attr_accessor :version
294
+
295
+ def initialize(**args)
296
+ update!(**args)
297
+ end
298
+
299
+ # Update properties of this object
300
+ def update!(**args)
301
+ @standard = args[:standard] if args.key?(:standard)
302
+ @version = args[:version] if args.key?(:version)
303
+ end
304
+ end
305
+
306
+ # Any custom metadata associated with the resource. i.e. A spanner instance can
307
+ # have multiple databases with its own unique metadata. Information for these
308
+ # individual databases can be captured in custom metadata data
309
+ class CustomMetadataData
310
+ include Google::Apis::Core::Hashable
311
+
312
+ #
313
+ # Corresponds to the JSON property `databaseMetadata`
314
+ # @return [Array<Google::Apis::RedisV1::DatabaseMetadata>]
315
+ attr_accessor :database_metadata
316
+
317
+ def initialize(**args)
318
+ update!(**args)
319
+ end
320
+
321
+ # Update properties of this object
322
+ def update!(**args)
323
+ @database_metadata = args[:database_metadata] if args.key?(:database_metadata)
324
+ end
325
+ end
326
+
327
+ # Metadata for individual databases created in an instance. i.e. spanner
328
+ # instance can have multiple databases with unique configuration settings.
329
+ class DatabaseMetadata
330
+ include Google::Apis::Core::Hashable
331
+
332
+ # Configuration for automatic backups
333
+ # Corresponds to the JSON property `backupConfiguration`
334
+ # @return [Google::Apis::RedisV1::BackupConfiguration]
335
+ attr_accessor :backup_configuration
336
+
337
+ # A backup run.
338
+ # Corresponds to the JSON property `backupRun`
339
+ # @return [Google::Apis::RedisV1::BackupRun]
340
+ attr_accessor :backup_run
341
+
342
+ # Product specification for Condor resources.
343
+ # Corresponds to the JSON property `product`
344
+ # @return [Google::Apis::RedisV1::Product]
345
+ attr_accessor :product
346
+
347
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
348
+ # Corresponds to the JSON property `resourceId`
349
+ # @return [Google::Apis::RedisV1::DatabaseResourceId]
350
+ attr_accessor :resource_id
351
+
352
+ # Required. Database name. Resource name to follow CAIS resource_name format as
353
+ # noted here go/condor-common-datamodel
354
+ # Corresponds to the JSON property `resourceName`
355
+ # @return [String]
356
+ attr_accessor :resource_name
357
+
358
+ def initialize(**args)
359
+ update!(**args)
360
+ end
361
+
362
+ # Update properties of this object
363
+ def update!(**args)
364
+ @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
365
+ @backup_run = args[:backup_run] if args.key?(:backup_run)
366
+ @product = args[:product] if args.key?(:product)
367
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
368
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
369
+ end
370
+ end
371
+
372
+ # DatabaseResourceFeed is the top level proto to be used to ingest different
373
+ # database resource level events into Condor platform.
374
+ class DatabaseResourceFeed
375
+ include Google::Apis::Core::Hashable
376
+
377
+ # Required. Timestamp when feed is generated.
378
+ # Corresponds to the JSON property `feedTimestamp`
379
+ # @return [String]
380
+ attr_accessor :feed_timestamp
381
+
382
+ # Required. Type feed to be ingested into condor
383
+ # Corresponds to the JSON property `feedType`
384
+ # @return [String]
385
+ attr_accessor :feed_type
386
+
387
+ # Common model for database resource recommendation signal data.
388
+ # Corresponds to the JSON property `recommendationSignalData`
389
+ # @return [Google::Apis::RedisV1::DatabaseResourceRecommendationSignalData]
390
+ attr_accessor :recommendation_signal_data
391
+
392
+ # Common model for database resource health signal data.
393
+ # Corresponds to the JSON property `resourceHealthSignalData`
394
+ # @return [Google::Apis::RedisV1::DatabaseResourceHealthSignalData]
395
+ attr_accessor :resource_health_signal_data
396
+
397
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
398
+ # Corresponds to the JSON property `resourceId`
399
+ # @return [Google::Apis::RedisV1::DatabaseResourceId]
400
+ attr_accessor :resource_id
401
+
402
+ # Common model for database resource instance metadata.
403
+ # Corresponds to the JSON property `resourceMetadata`
404
+ # @return [Google::Apis::RedisV1::DatabaseResourceMetadata]
405
+ attr_accessor :resource_metadata
406
+
407
+ def initialize(**args)
408
+ update!(**args)
409
+ end
410
+
411
+ # Update properties of this object
412
+ def update!(**args)
413
+ @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
414
+ @feed_type = args[:feed_type] if args.key?(:feed_type)
415
+ @recommendation_signal_data = args[:recommendation_signal_data] if args.key?(:recommendation_signal_data)
416
+ @resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
417
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
418
+ @resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
419
+ end
420
+ end
421
+
422
+ # Common model for database resource health signal data.
423
+ class DatabaseResourceHealthSignalData
424
+ include Google::Apis::Core::Hashable
425
+
426
+ # Any other additional metadata
427
+ # Corresponds to the JSON property `additionalMetadata`
428
+ # @return [Hash<String,Object>]
429
+ attr_accessor :additional_metadata
430
+
431
+ # Industry standards associated with this signal; if this signal is an issue,
432
+ # that could be a violation of the associated industry standard(s). For example,
433
+ # AUTO_BACKUP_DISABLED signal is associated with CIS GCP 1.1, CIS GCP 1.2, CIS
434
+ # GCP 1.3, NIST 800-53 and ISO-27001 compliance standards. If a database
435
+ # resource does not have automated backup enable, it will violate these
436
+ # following industry standards.
437
+ # Corresponds to the JSON property `compliance`
438
+ # @return [Array<Google::Apis::RedisV1::Compliance>]
439
+ attr_accessor :compliance
440
+
441
+ # Description associated with signal
442
+ # Corresponds to the JSON property `description`
443
+ # @return [String]
444
+ attr_accessor :description
445
+
446
+ # Required. The last time at which the event described by this signal took place
447
+ # Corresponds to the JSON property `eventTime`
448
+ # @return [String]
449
+ attr_accessor :event_time
450
+
451
+ # The external-uri of the signal, using which more information about this signal
452
+ # can be obtained. In GCP, this will take user to SCC page to get more details
453
+ # about signals.
454
+ # Corresponds to the JSON property `externalUri`
455
+ # @return [String]
456
+ attr_accessor :external_uri
457
+
458
+ # Required. The name of the signal, ex: PUBLIC_SQL_INSTANCE,
459
+ # SQL_LOG_ERROR_VERBOSITY etc.
460
+ # Corresponds to the JSON property `name`
461
+ # @return [String]
462
+ attr_accessor :name
463
+
464
+ # Cloud provider name. Ex: GCP/AWS/Azure/OnPrem/SelfManaged
465
+ # Corresponds to the JSON property `provider`
466
+ # @return [String]
467
+ attr_accessor :provider
468
+
469
+ # Closest parent container of this resource. In GCP, 'container' refers to a
470
+ # Cloud Resource Manager project. It must be resource name of a Cloud Resource
471
+ # Manager project with the format of "provider//", such as "projects/123". For
472
+ # GCP provided resources, number should be project number.
473
+ # Corresponds to the JSON property `resourceContainer`
474
+ # @return [String]
475
+ attr_accessor :resource_container
476
+
477
+ # Required. Database resource name associated with the signal. Resource name to
478
+ # follow CAIS resource_name format as noted here go/condor-common-datamodel
479
+ # Corresponds to the JSON property `resourceName`
480
+ # @return [String]
481
+ attr_accessor :resource_name
482
+
483
+ # Required. The class of the signal, such as if it's a THREAT or VULNERABILITY.
484
+ # Corresponds to the JSON property `signalClass`
485
+ # @return [String]
486
+ attr_accessor :signal_class
487
+
488
+ # Required. Unique identifier for the signal. This is an unique id which would
489
+ # be mainatined by partner to identify a signal.
490
+ # Corresponds to the JSON property `signalId`
491
+ # @return [String]
492
+ attr_accessor :signal_id
493
+
494
+ # Required. Type of signal, for example, `AVAILABLE_IN_MULTIPLE_ZONES`, `
495
+ # LOGGING_MOST_ERRORS`, etc.
496
+ # Corresponds to the JSON property `signalType`
497
+ # @return [String]
498
+ attr_accessor :signal_type
499
+
500
+ #
501
+ # Corresponds to the JSON property `state`
502
+ # @return [String]
503
+ attr_accessor :state
504
+
505
+ def initialize(**args)
506
+ update!(**args)
507
+ end
508
+
509
+ # Update properties of this object
510
+ def update!(**args)
511
+ @additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
512
+ @compliance = args[:compliance] if args.key?(:compliance)
513
+ @description = args[:description] if args.key?(:description)
514
+ @event_time = args[:event_time] if args.key?(:event_time)
515
+ @external_uri = args[:external_uri] if args.key?(:external_uri)
516
+ @name = args[:name] if args.key?(:name)
517
+ @provider = args[:provider] if args.key?(:provider)
518
+ @resource_container = args[:resource_container] if args.key?(:resource_container)
519
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
520
+ @signal_class = args[:signal_class] if args.key?(:signal_class)
521
+ @signal_id = args[:signal_id] if args.key?(:signal_id)
522
+ @signal_type = args[:signal_type] if args.key?(:signal_type)
523
+ @state = args[:state] if args.key?(:state)
524
+ end
525
+ end
526
+
527
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
528
+ class DatabaseResourceId
529
+ include Google::Apis::Core::Hashable
530
+
531
+ # Required. Cloud provider name. Ex: GCP/AWS/Azure/OnPrem/SelfManaged
532
+ # Corresponds to the JSON property `provider`
533
+ # @return [String]
534
+ attr_accessor :provider
535
+
536
+ # Optional. Needs to be used only when the provider is PROVIDER_OTHER.
537
+ # Corresponds to the JSON property `providerDescription`
538
+ # @return [String]
539
+ attr_accessor :provider_description
540
+
541
+ # Required. The type of resource this ID is identifying. Ex redis.googleapis.com/
542
+ # Instance, redis.googleapis.com/Cluster, alloydb.googleapis.com/Cluster,
543
+ # alloydb.googleapis.com/Instance, spanner.googleapis.com/Instance REQUIRED
544
+ # Please refer go/condor-common-datamodel
545
+ # Corresponds to the JSON property `resourceType`
546
+ # @return [String]
547
+ attr_accessor :resource_type
548
+
549
+ # Required. A service-local token that distinguishes this resource from other
550
+ # resources within the same service.
551
+ # Corresponds to the JSON property `uniqueId`
552
+ # @return [String]
553
+ attr_accessor :unique_id
554
+
555
+ def initialize(**args)
556
+ update!(**args)
557
+ end
558
+
559
+ # Update properties of this object
560
+ def update!(**args)
561
+ @provider = args[:provider] if args.key?(:provider)
562
+ @provider_description = args[:provider_description] if args.key?(:provider_description)
563
+ @resource_type = args[:resource_type] if args.key?(:resource_type)
564
+ @unique_id = args[:unique_id] if args.key?(:unique_id)
565
+ end
566
+ end
567
+
568
+ # Common model for database resource instance metadata.
569
+ class DatabaseResourceMetadata
570
+ include Google::Apis::Core::Hashable
571
+
572
+ # Configuration for availability of database instance
573
+ # Corresponds to the JSON property `availabilityConfiguration`
574
+ # @return [Google::Apis::RedisV1::AvailabilityConfiguration]
575
+ attr_accessor :availability_configuration
576
+
577
+ # Configuration for automatic backups
578
+ # Corresponds to the JSON property `backupConfiguration`
579
+ # @return [Google::Apis::RedisV1::BackupConfiguration]
580
+ attr_accessor :backup_configuration
581
+
582
+ # A backup run.
583
+ # Corresponds to the JSON property `backupRun`
584
+ # @return [Google::Apis::RedisV1::BackupRun]
585
+ attr_accessor :backup_run
586
+
587
+ # The creation time of the resource, i.e. the time when resource is created and
588
+ # recorded in partner service.
589
+ # Corresponds to the JSON property `creationTime`
590
+ # @return [String]
591
+ attr_accessor :creation_time
592
+
593
+ # Current state of the instance.
594
+ # Corresponds to the JSON property `currentState`
595
+ # @return [String]
596
+ attr_accessor :current_state
597
+
598
+ # Any custom metadata associated with the resource. i.e. A spanner instance can
599
+ # have multiple databases with its own unique metadata. Information for these
600
+ # individual databases can be captured in custom metadata data
601
+ # Corresponds to the JSON property `customMetadata`
602
+ # @return [Google::Apis::RedisV1::CustomMetadataData]
603
+ attr_accessor :custom_metadata
604
+
605
+ # Entitlements associated with the resource
606
+ # Corresponds to the JSON property `entitlements`
607
+ # @return [Array<Google::Apis::RedisV1::Entitlement>]
608
+ attr_accessor :entitlements
609
+
610
+ # The state that the instance is expected to be in. For example, an instance
611
+ # state can transition to UNHEALTHY due to wrong patch update, while the
612
+ # expected state will remain at the HEALTHY.
613
+ # Corresponds to the JSON property `expectedState`
614
+ # @return [String]
615
+ attr_accessor :expected_state
616
+
617
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
618
+ # Corresponds to the JSON property `id`
619
+ # @return [Google::Apis::RedisV1::DatabaseResourceId]
620
+ attr_accessor :id
621
+
622
+ # The type of the instance. Specified at creation time.
623
+ # Corresponds to the JSON property `instanceType`
624
+ # @return [String]
625
+ attr_accessor :instance_type
626
+
627
+ # The resource location. REQUIRED
628
+ # Corresponds to the JSON property `location`
629
+ # @return [String]
630
+ attr_accessor :location
631
+
632
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
633
+ # Corresponds to the JSON property `primaryResourceId`
634
+ # @return [Google::Apis::RedisV1::DatabaseResourceId]
635
+ attr_accessor :primary_resource_id
636
+
637
+ # Product specification for Condor resources.
638
+ # Corresponds to the JSON property `product`
639
+ # @return [Google::Apis::RedisV1::Product]
640
+ attr_accessor :product
641
+
642
+ # Closest parent Cloud Resource Manager container of this resource. It must be
643
+ # resource name of a Cloud Resource Manager project with the format of "/", such
644
+ # as "projects/123". For GCP provided resources, number should be project number.
645
+ # Corresponds to the JSON property `resourceContainer`
646
+ # @return [String]
647
+ attr_accessor :resource_container
648
+
649
+ # Required. Different from DatabaseResourceId.unique_id, a resource name can be
650
+ # reused over time. That is, after a resource named "ABC" is deleted, the name "
651
+ # ABC" can be used to to create a new resource within the same source. Resource
652
+ # name to follow CAIS resource_name format as noted here go/condor-common-
653
+ # datamodel
654
+ # Corresponds to the JSON property `resourceName`
655
+ # @return [String]
656
+ attr_accessor :resource_name
657
+
658
+ # The time at which the resource was updated and recorded at partner service.
659
+ # Corresponds to the JSON property `updationTime`
660
+ # @return [String]
661
+ attr_accessor :updation_time
662
+
663
+ # Message type for storing user labels. User labels are used to tag App Engine
664
+ # resources, allowing users to search for resources matching a set of labels and
665
+ # to aggregate usage data by labels.
666
+ # Corresponds to the JSON property `userLabelSet`
667
+ # @return [Google::Apis::RedisV1::UserLabels]
668
+ attr_accessor :user_label_set
669
+
670
+ # User-provided labels, represented as a dictionary where each label is a single
671
+ # key value pair.
672
+ # Corresponds to the JSON property `userLabels`
673
+ # @return [Hash<String,String>]
674
+ attr_accessor :user_labels
675
+
676
+ def initialize(**args)
677
+ update!(**args)
678
+ end
679
+
680
+ # Update properties of this object
681
+ def update!(**args)
682
+ @availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
683
+ @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
684
+ @backup_run = args[:backup_run] if args.key?(:backup_run)
685
+ @creation_time = args[:creation_time] if args.key?(:creation_time)
686
+ @current_state = args[:current_state] if args.key?(:current_state)
687
+ @custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
688
+ @entitlements = args[:entitlements] if args.key?(:entitlements)
689
+ @expected_state = args[:expected_state] if args.key?(:expected_state)
690
+ @id = args[:id] if args.key?(:id)
691
+ @instance_type = args[:instance_type] if args.key?(:instance_type)
692
+ @location = args[:location] if args.key?(:location)
693
+ @primary_resource_id = args[:primary_resource_id] if args.key?(:primary_resource_id)
694
+ @product = args[:product] if args.key?(:product)
695
+ @resource_container = args[:resource_container] if args.key?(:resource_container)
696
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
697
+ @updation_time = args[:updation_time] if args.key?(:updation_time)
698
+ @user_label_set = args[:user_label_set] if args.key?(:user_label_set)
699
+ @user_labels = args[:user_labels] if args.key?(:user_labels)
700
+ end
701
+ end
702
+
703
+ # Common model for database resource recommendation signal data.
704
+ class DatabaseResourceRecommendationSignalData
705
+ include Google::Apis::Core::Hashable
706
+
707
+ # Optional. Any other additional metadata specific to recommendation
708
+ # Corresponds to the JSON property `additionalMetadata`
709
+ # @return [Hash<String,Object>]
710
+ attr_accessor :additional_metadata
711
+
712
+ # Required. last time recommendationw as refreshed
713
+ # Corresponds to the JSON property `lastRefreshTime`
714
+ # @return [String]
715
+ attr_accessor :last_refresh_time
716
+
717
+ # Required. Recommendation state
718
+ # Corresponds to the JSON property `recommendationState`
719
+ # @return [String]
720
+ attr_accessor :recommendation_state
721
+
722
+ # Required. Name of recommendation. Examples: organizations/1234/locations/us-
723
+ # central1/recommenders/google.cloudsql.instance.PerformanceRecommender/
724
+ # recommendations/9876
725
+ # Corresponds to the JSON property `recommender`
726
+ # @return [String]
727
+ attr_accessor :recommender
728
+
729
+ # Required. ID of recommender. Examples: "google.cloudsql.instance.
730
+ # PerformanceRecommender"
731
+ # Corresponds to the JSON property `recommenderId`
732
+ # @return [String]
733
+ attr_accessor :recommender_id
734
+
735
+ # Required. Contains an identifier for a subtype of recommendations produced for
736
+ # the same recommender. Subtype is a function of content and impact, meaning a
737
+ # new subtype might be added when significant changes to `content` or `
738
+ # primary_impact.category` are introduced. See the Recommenders section to see a
739
+ # list of subtypes for a given Recommender. Examples: For recommender = "google.
740
+ # cloudsql.instance.PerformanceRecommender", recommender_subtype can be "
741
+ # MYSQL_HIGH_NUMBER_OF_OPEN_TABLES_BEST_PRACTICE"/"
742
+ # POSTGRES_HIGH_TRANSACTION_ID_UTILIZATION_BEST_PRACTICE"
743
+ # Corresponds to the JSON property `recommenderSubtype`
744
+ # @return [String]
745
+ attr_accessor :recommender_subtype
746
+
747
+ # Required. Database resource name associated with the signal. Resource name to
748
+ # follow CAIS resource_name format as noted here go/condor-common-datamodel
749
+ # Corresponds to the JSON property `resourceName`
750
+ # @return [String]
751
+ attr_accessor :resource_name
752
+
753
+ # Required. Type of signal, for example, `SIGNAL_TYPE_IDLE`, `
754
+ # SIGNAL_TYPE_HIGH_NUMBER_OF_TABLES`, etc.
755
+ # Corresponds to the JSON property `signalType`
756
+ # @return [String]
757
+ attr_accessor :signal_type
758
+
759
+ def initialize(**args)
760
+ update!(**args)
761
+ end
762
+
763
+ # Update properties of this object
764
+ def update!(**args)
765
+ @additional_metadata = args[:additional_metadata] if args.key?(:additional_metadata)
766
+ @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
767
+ @recommendation_state = args[:recommendation_state] if args.key?(:recommendation_state)
768
+ @recommender = args[:recommender] if args.key?(:recommender)
769
+ @recommender_id = args[:recommender_id] if args.key?(:recommender_id)
770
+ @recommender_subtype = args[:recommender_subtype] if args.key?(:recommender_subtype)
771
+ @resource_name = args[:resource_name] if args.key?(:resource_name)
772
+ @signal_type = args[:signal_type] if args.key?(:signal_type)
773
+ end
774
+ end
775
+
172
776
  # Endpoints on each network, for Redis clients to connect to the cluster.
173
777
  class DiscoveryEndpoint
174
778
  include Google::Apis::Core::Hashable
@@ -218,6 +822,32 @@ module Google
218
822
  end
219
823
  end
220
824
 
825
+ # Proto representing the access that a user has to a specific feature/service.
826
+ # NextId: 3.
827
+ class Entitlement
828
+ include Google::Apis::Core::Hashable
829
+
830
+ # The current state of user's accessibility to a feature/benefit.
831
+ # Corresponds to the JSON property `entitlementState`
832
+ # @return [String]
833
+ attr_accessor :entitlement_state
834
+
835
+ # An enum that represents the type of this entitlement.
836
+ # Corresponds to the JSON property `type`
837
+ # @return [String]
838
+ attr_accessor :type
839
+
840
+ def initialize(**args)
841
+ update!(**args)
842
+ end
843
+
844
+ # Update properties of this object
845
+ def update!(**args)
846
+ @entitlement_state = args[:entitlement_state] if args.key?(:entitlement_state)
847
+ @type = args[:type] if args.key?(:type)
848
+ end
849
+ end
850
+
221
851
  # Request for Export.
222
852
  class ExportInstanceRequest
223
853
  include Google::Apis::Core::Hashable
@@ -1110,6 +1740,37 @@ module Google
1110
1740
  end
1111
1741
  end
1112
1742
 
1743
+ # An error that occurred during a backup creation operation.
1744
+ class OperationError
1745
+ include Google::Apis::Core::Hashable
1746
+
1747
+ # Identifies the specific error that occurred. REQUIRED
1748
+ # Corresponds to the JSON property `code`
1749
+ # @return [String]
1750
+ attr_accessor :code
1751
+
1752
+ #
1753
+ # Corresponds to the JSON property `errorType`
1754
+ # @return [String]
1755
+ attr_accessor :error_type
1756
+
1757
+ # Additional information about the error encountered. REQUIRED
1758
+ # Corresponds to the JSON property `message`
1759
+ # @return [String]
1760
+ attr_accessor :message
1761
+
1762
+ def initialize(**args)
1763
+ update!(**args)
1764
+ end
1765
+
1766
+ # Update properties of this object
1767
+ def update!(**args)
1768
+ @code = args[:code] if args.key?(:code)
1769
+ @error_type = args[:error_type] if args.key?(:error_type)
1770
+ @message = args[:message] if args.key?(:message)
1771
+ end
1772
+ end
1773
+
1113
1774
  # Pre-defined metadata fields.
1114
1775
  class OperationMetadata
1115
1776
  include Google::Apis::Core::Hashable
@@ -1233,6 +1894,38 @@ module Google
1233
1894
  end
1234
1895
  end
1235
1896
 
1897
+ # Product specification for Condor resources.
1898
+ class Product
1899
+ include Google::Apis::Core::Hashable
1900
+
1901
+ # The specific engine that the underlying database is running.
1902
+ # Corresponds to the JSON property `engine`
1903
+ # @return [String]
1904
+ attr_accessor :engine
1905
+
1906
+ # Type of specific database product. It could be CloudSQL, AlloyDB etc..
1907
+ # Corresponds to the JSON property `type`
1908
+ # @return [String]
1909
+ attr_accessor :type
1910
+
1911
+ # Version of the underlying database engine. Example values: For MySQL, it could
1912
+ # be "8.0", "5.7" etc.. For Postgres, it could be "14", "15" etc..
1913
+ # Corresponds to the JSON property `version`
1914
+ # @return [String]
1915
+ attr_accessor :version
1916
+
1917
+ def initialize(**args)
1918
+ update!(**args)
1919
+ end
1920
+
1921
+ # Update properties of this object
1922
+ def update!(**args)
1923
+ @engine = args[:engine] if args.key?(:engine)
1924
+ @type = args[:type] if args.key?(:type)
1925
+ @version = args[:version] if args.key?(:version)
1926
+ end
1927
+ end
1928
+
1236
1929
  #
1237
1930
  class PscConfig
1238
1931
  include Google::Apis::Core::Hashable
@@ -1355,6 +2048,37 @@ module Google
1355
2048
  end
1356
2049
  end
1357
2050
 
2051
+ #
2052
+ class RetentionSettings
2053
+ include Google::Apis::Core::Hashable
2054
+
2055
+ #
2056
+ # Corresponds to the JSON property `quantityBasedRetention`
2057
+ # @return [Fixnum]
2058
+ attr_accessor :quantity_based_retention
2059
+
2060
+ # The unit that 'retained_backups' represents.
2061
+ # Corresponds to the JSON property `retentionUnit`
2062
+ # @return [String]
2063
+ attr_accessor :retention_unit
2064
+
2065
+ #
2066
+ # Corresponds to the JSON property `timeBasedRetention`
2067
+ # @return [String]
2068
+ attr_accessor :time_based_retention
2069
+
2070
+ def initialize(**args)
2071
+ update!(**args)
2072
+ end
2073
+
2074
+ # Update properties of this object
2075
+ def update!(**args)
2076
+ @quantity_based_retention = args[:quantity_based_retention] if args.key?(:quantity_based_retention)
2077
+ @retention_unit = args[:retention_unit] if args.key?(:retention_unit)
2078
+ @time_based_retention = args[:time_based_retention] if args.key?(:time_based_retention)
2079
+ end
2080
+ end
2081
+
1358
2082
  # Represents additional information about the state of the cluster.
1359
2083
  class StateInfo
1360
2084
  include Google::Apis::Core::Hashable
@@ -1543,6 +2267,27 @@ module Google
1543
2267
  end
1544
2268
  end
1545
2269
 
2270
+ # Message type for storing user labels. User labels are used to tag App Engine
2271
+ # resources, allowing users to search for resources matching a set of labels and
2272
+ # to aggregate usage data by labels.
2273
+ class UserLabels
2274
+ include Google::Apis::Core::Hashable
2275
+
2276
+ #
2277
+ # Corresponds to the JSON property `labels`
2278
+ # @return [Hash<String,String>]
2279
+ attr_accessor :labels
2280
+
2281
+ def initialize(**args)
2282
+ update!(**args)
2283
+ end
2284
+
2285
+ # Update properties of this object
2286
+ def update!(**args)
2287
+ @labels = args[:labels] if args.key?(:labels)
2288
+ end
2289
+ end
2290
+
1546
2291
  # Time window in which disruptive maintenance updates occur. Non-disruptive
1547
2292
  # updates can occur inside or outside this window.
1548
2293
  class WeeklyMaintenanceWindow
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RedisV1
18
18
  # Version of the google-apis-redis_v1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240220"
25
+ REVISION = "20240307"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,24 @@ module Google
22
22
  module Apis
23
23
  module RedisV1
24
24
 
25
+ class AvailabilityConfiguration
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class BackupConfiguration
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class BackupRun
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
25
43
  class CertChain
26
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
45
 
@@ -40,6 +58,54 @@ module Google
40
58
  include Google::Apis::Core::JsonObjectSupport
41
59
  end
42
60
 
61
+ class Compliance
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
67
+ class CustomMetadataData
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class DatabaseMetadata
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
79
+ class DatabaseResourceFeed
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
85
+ class DatabaseResourceHealthSignalData
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
91
+ class DatabaseResourceId
92
+ class Representation < Google::Apis::Core::JsonRepresentation; end
93
+
94
+ include Google::Apis::Core::JsonObjectSupport
95
+ end
96
+
97
+ class DatabaseResourceMetadata
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
103
+ class DatabaseResourceRecommendationSignalData
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
43
109
  class DiscoveryEndpoint
44
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
111
 
@@ -52,6 +118,12 @@ module Google
52
118
  include Google::Apis::Core::JsonObjectSupport
53
119
  end
54
120
 
121
+ class Entitlement
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
55
127
  class ExportInstanceRequest
56
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
129
 
@@ -178,6 +250,12 @@ module Google
178
250
  include Google::Apis::Core::JsonObjectSupport
179
251
  end
180
252
 
253
+ class OperationError
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
181
259
  class OperationMetadata
182
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
261
 
@@ -196,6 +274,12 @@ module Google
196
274
  include Google::Apis::Core::JsonObjectSupport
197
275
  end
198
276
 
277
+ class Product
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
199
283
  class PscConfig
200
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
285
 
@@ -220,6 +304,12 @@ module Google
220
304
  include Google::Apis::Core::JsonObjectSupport
221
305
  end
222
306
 
307
+ class RetentionSettings
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
223
313
  class StateInfo
224
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
315
 
@@ -256,12 +346,48 @@ module Google
256
346
  include Google::Apis::Core::JsonObjectSupport
257
347
  end
258
348
 
349
+ class UserLabels
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
259
355
  class WeeklyMaintenanceWindow
260
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
357
 
262
358
  include Google::Apis::Core::JsonObjectSupport
263
359
  end
264
360
 
361
+ class AvailabilityConfiguration
362
+ # @private
363
+ class Representation < Google::Apis::Core::JsonRepresentation
364
+ property :availability_type, as: 'availabilityType'
365
+ property :external_replica_configured, as: 'externalReplicaConfigured'
366
+ property :promotable_replica_configured, as: 'promotableReplicaConfigured'
367
+ end
368
+ end
369
+
370
+ class BackupConfiguration
371
+ # @private
372
+ class Representation < Google::Apis::Core::JsonRepresentation
373
+ property :automated_backup_enabled, as: 'automatedBackupEnabled'
374
+ property :backup_retention_settings, as: 'backupRetentionSettings', class: Google::Apis::RedisV1::RetentionSettings, decorator: Google::Apis::RedisV1::RetentionSettings::Representation
375
+
376
+ property :point_in_time_recovery_enabled, as: 'pointInTimeRecoveryEnabled'
377
+ end
378
+ end
379
+
380
+ class BackupRun
381
+ # @private
382
+ class Representation < Google::Apis::Core::JsonRepresentation
383
+ property :end_time, as: 'endTime'
384
+ property :error, as: 'error', class: Google::Apis::RedisV1::OperationError, decorator: Google::Apis::RedisV1::OperationError::Representation
385
+
386
+ property :start_time, as: 'startTime'
387
+ property :status, as: 'status'
388
+ end
389
+ end
390
+
265
391
  class CertChain
266
392
  # @private
267
393
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -301,6 +427,130 @@ module Google
301
427
  end
302
428
  end
303
429
 
430
+ class Compliance
431
+ # @private
432
+ class Representation < Google::Apis::Core::JsonRepresentation
433
+ property :standard, as: 'standard'
434
+ property :version, as: 'version'
435
+ end
436
+ end
437
+
438
+ class CustomMetadataData
439
+ # @private
440
+ class Representation < Google::Apis::Core::JsonRepresentation
441
+ collection :database_metadata, as: 'databaseMetadata', class: Google::Apis::RedisV1::DatabaseMetadata, decorator: Google::Apis::RedisV1::DatabaseMetadata::Representation
442
+
443
+ end
444
+ end
445
+
446
+ class DatabaseMetadata
447
+ # @private
448
+ class Representation < Google::Apis::Core::JsonRepresentation
449
+ property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::RedisV1::BackupConfiguration, decorator: Google::Apis::RedisV1::BackupConfiguration::Representation
450
+
451
+ property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1::BackupRun, decorator: Google::Apis::RedisV1::BackupRun::Representation
452
+
453
+ property :product, as: 'product', class: Google::Apis::RedisV1::Product, decorator: Google::Apis::RedisV1::Product::Representation
454
+
455
+ property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
456
+
457
+ property :resource_name, as: 'resourceName'
458
+ end
459
+ end
460
+
461
+ class DatabaseResourceFeed
462
+ # @private
463
+ class Representation < Google::Apis::Core::JsonRepresentation
464
+ property :feed_timestamp, as: 'feedTimestamp'
465
+ property :feed_type, as: 'feedType'
466
+ property :recommendation_signal_data, as: 'recommendationSignalData', class: Google::Apis::RedisV1::DatabaseResourceRecommendationSignalData, decorator: Google::Apis::RedisV1::DatabaseResourceRecommendationSignalData::Representation
467
+
468
+ property :resource_health_signal_data, as: 'resourceHealthSignalData', class: Google::Apis::RedisV1::DatabaseResourceHealthSignalData, decorator: Google::Apis::RedisV1::DatabaseResourceHealthSignalData::Representation
469
+
470
+ property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
471
+
472
+ property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::RedisV1::DatabaseResourceMetadata, decorator: Google::Apis::RedisV1::DatabaseResourceMetadata::Representation
473
+
474
+ end
475
+ end
476
+
477
+ class DatabaseResourceHealthSignalData
478
+ # @private
479
+ class Representation < Google::Apis::Core::JsonRepresentation
480
+ hash :additional_metadata, as: 'additionalMetadata'
481
+ collection :compliance, as: 'compliance', class: Google::Apis::RedisV1::Compliance, decorator: Google::Apis::RedisV1::Compliance::Representation
482
+
483
+ property :description, as: 'description'
484
+ property :event_time, as: 'eventTime'
485
+ property :external_uri, as: 'externalUri'
486
+ property :name, as: 'name'
487
+ property :provider, as: 'provider'
488
+ property :resource_container, as: 'resourceContainer'
489
+ property :resource_name, as: 'resourceName'
490
+ property :signal_class, as: 'signalClass'
491
+ property :signal_id, as: 'signalId'
492
+ property :signal_type, as: 'signalType'
493
+ property :state, as: 'state'
494
+ end
495
+ end
496
+
497
+ class DatabaseResourceId
498
+ # @private
499
+ class Representation < Google::Apis::Core::JsonRepresentation
500
+ property :provider, as: 'provider'
501
+ property :provider_description, as: 'providerDescription'
502
+ property :resource_type, as: 'resourceType'
503
+ property :unique_id, as: 'uniqueId'
504
+ end
505
+ end
506
+
507
+ class DatabaseResourceMetadata
508
+ # @private
509
+ class Representation < Google::Apis::Core::JsonRepresentation
510
+ property :availability_configuration, as: 'availabilityConfiguration', class: Google::Apis::RedisV1::AvailabilityConfiguration, decorator: Google::Apis::RedisV1::AvailabilityConfiguration::Representation
511
+
512
+ property :backup_configuration, as: 'backupConfiguration', class: Google::Apis::RedisV1::BackupConfiguration, decorator: Google::Apis::RedisV1::BackupConfiguration::Representation
513
+
514
+ property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1::BackupRun, decorator: Google::Apis::RedisV1::BackupRun::Representation
515
+
516
+ property :creation_time, as: 'creationTime'
517
+ property :current_state, as: 'currentState'
518
+ property :custom_metadata, as: 'customMetadata', class: Google::Apis::RedisV1::CustomMetadataData, decorator: Google::Apis::RedisV1::CustomMetadataData::Representation
519
+
520
+ collection :entitlements, as: 'entitlements', class: Google::Apis::RedisV1::Entitlement, decorator: Google::Apis::RedisV1::Entitlement::Representation
521
+
522
+ property :expected_state, as: 'expectedState'
523
+ property :id, as: 'id', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
524
+
525
+ property :instance_type, as: 'instanceType'
526
+ property :location, as: 'location'
527
+ property :primary_resource_id, as: 'primaryResourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
528
+
529
+ property :product, as: 'product', class: Google::Apis::RedisV1::Product, decorator: Google::Apis::RedisV1::Product::Representation
530
+
531
+ property :resource_container, as: 'resourceContainer'
532
+ property :resource_name, as: 'resourceName'
533
+ property :updation_time, as: 'updationTime'
534
+ property :user_label_set, as: 'userLabelSet', class: Google::Apis::RedisV1::UserLabels, decorator: Google::Apis::RedisV1::UserLabels::Representation
535
+
536
+ hash :user_labels, as: 'userLabels'
537
+ end
538
+ end
539
+
540
+ class DatabaseResourceRecommendationSignalData
541
+ # @private
542
+ class Representation < Google::Apis::Core::JsonRepresentation
543
+ hash :additional_metadata, as: 'additionalMetadata'
544
+ property :last_refresh_time, as: 'lastRefreshTime'
545
+ property :recommendation_state, as: 'recommendationState'
546
+ property :recommender, as: 'recommender'
547
+ property :recommender_id, as: 'recommenderId'
548
+ property :recommender_subtype, as: 'recommenderSubtype'
549
+ property :resource_name, as: 'resourceName'
550
+ property :signal_type, as: 'signalType'
551
+ end
552
+ end
553
+
304
554
  class DiscoveryEndpoint
305
555
  # @private
306
556
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -317,6 +567,14 @@ module Google
317
567
  end
318
568
  end
319
569
 
570
+ class Entitlement
571
+ # @private
572
+ class Representation < Google::Apis::Core::JsonRepresentation
573
+ property :entitlement_state, as: 'entitlementState'
574
+ property :type, as: 'type'
575
+ end
576
+ end
577
+
320
578
  class ExportInstanceRequest
321
579
  # @private
322
580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -542,6 +800,15 @@ module Google
542
800
  end
543
801
  end
544
802
 
803
+ class OperationError
804
+ # @private
805
+ class Representation < Google::Apis::Core::JsonRepresentation
806
+ property :code, as: 'code'
807
+ property :error_type, as: 'errorType'
808
+ property :message, as: 'message'
809
+ end
810
+ end
811
+
545
812
  class OperationMetadata
546
813
  # @private
547
814
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -573,6 +840,15 @@ module Google
573
840
  end
574
841
  end
575
842
 
843
+ class Product
844
+ # @private
845
+ class Representation < Google::Apis::Core::JsonRepresentation
846
+ property :engine, as: 'engine'
847
+ property :type, as: 'type'
848
+ property :version, as: 'version'
849
+ end
850
+ end
851
+
576
852
  class PscConfig
577
853
  # @private
578
854
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -607,6 +883,15 @@ module Google
607
883
  end
608
884
  end
609
885
 
886
+ class RetentionSettings
887
+ # @private
888
+ class Representation < Google::Apis::Core::JsonRepresentation
889
+ property :quantity_based_retention, as: 'quantityBasedRetention'
890
+ property :retention_unit, as: 'retentionUnit'
891
+ property :time_based_retention, as: 'timeBasedRetention'
892
+ end
893
+ end
894
+
610
895
  class StateInfo
611
896
  # @private
612
897
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -660,6 +945,13 @@ module Google
660
945
  end
661
946
  end
662
947
 
948
+ class UserLabels
949
+ # @private
950
+ class Representation < Google::Apis::Core::JsonRepresentation
951
+ hash :labels, as: 'labels'
952
+ end
953
+ end
954
+
663
955
  class WeeklyMaintenanceWindow
664
956
  # @private
665
957
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.48.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []