google-cloud-memcache-v1beta2 0.4.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/cloud/memcache/v1beta2/cloud_memcache.proto
3
4
 
@@ -14,157 +15,35 @@ require 'google/protobuf/timestamp_pb'
14
15
  require 'google/type/dayofweek_pb'
15
16
  require 'google/type/timeofday_pb'
16
17
 
17
- Google::Protobuf::DescriptorPool.generated_pool.build do
18
- add_file("google/cloud/memcache/v1beta2/cloud_memcache.proto", :syntax => :proto3) do
19
- add_message "google.cloud.memcache.v1beta2.Instance" do
20
- optional :name, :string, 1
21
- optional :display_name, :string, 2
22
- map :labels, :string, :string, 3
23
- optional :authorized_network, :string, 4
24
- repeated :zones, :string, 5
25
- optional :node_count, :int32, 6
26
- optional :node_config, :message, 7, "google.cloud.memcache.v1beta2.Instance.NodeConfig"
27
- optional :memcache_version, :enum, 9, "google.cloud.memcache.v1beta2.MemcacheVersion"
28
- optional :parameters, :message, 11, "google.cloud.memcache.v1beta2.MemcacheParameters"
29
- repeated :memcache_nodes, :message, 12, "google.cloud.memcache.v1beta2.Instance.Node"
30
- optional :create_time, :message, 13, "google.protobuf.Timestamp"
31
- optional :update_time, :message, 14, "google.protobuf.Timestamp"
32
- optional :state, :enum, 15, "google.cloud.memcache.v1beta2.Instance.State"
33
- optional :memcache_full_version, :string, 18
34
- repeated :instance_messages, :message, 19, "google.cloud.memcache.v1beta2.Instance.InstanceMessage"
35
- optional :discovery_endpoint, :string, 20
36
- optional :update_available, :bool, 21
37
- optional :maintenance_policy, :message, 22, "google.cloud.memcache.v1beta2.MaintenancePolicy"
38
- optional :maintenance_schedule, :message, 23, "google.cloud.memcache.v1beta2.MaintenanceSchedule"
39
- end
40
- add_message "google.cloud.memcache.v1beta2.Instance.NodeConfig" do
41
- optional :cpu_count, :int32, 1
42
- optional :memory_size_mb, :int32, 2
43
- end
44
- add_message "google.cloud.memcache.v1beta2.Instance.Node" do
45
- optional :node_id, :string, 1
46
- optional :zone, :string, 2
47
- optional :state, :enum, 3, "google.cloud.memcache.v1beta2.Instance.Node.State"
48
- optional :host, :string, 4
49
- optional :port, :int32, 5
50
- optional :parameters, :message, 6, "google.cloud.memcache.v1beta2.MemcacheParameters"
51
- optional :update_available, :bool, 7
52
- end
53
- add_enum "google.cloud.memcache.v1beta2.Instance.Node.State" do
54
- value :STATE_UNSPECIFIED, 0
55
- value :CREATING, 1
56
- value :READY, 2
57
- value :DELETING, 3
58
- value :UPDATING, 4
59
- end
60
- add_message "google.cloud.memcache.v1beta2.Instance.InstanceMessage" do
61
- optional :code, :enum, 1, "google.cloud.memcache.v1beta2.Instance.InstanceMessage.Code"
62
- optional :message, :string, 2
63
- end
64
- add_enum "google.cloud.memcache.v1beta2.Instance.InstanceMessage.Code" do
65
- value :CODE_UNSPECIFIED, 0
66
- value :ZONE_DISTRIBUTION_UNBALANCED, 1
67
- end
68
- add_enum "google.cloud.memcache.v1beta2.Instance.State" do
69
- value :STATE_UNSPECIFIED, 0
70
- value :CREATING, 1
71
- value :READY, 2
72
- value :UPDATING, 3
73
- value :DELETING, 4
74
- value :PERFORMING_MAINTENANCE, 5
75
- end
76
- add_message "google.cloud.memcache.v1beta2.MaintenancePolicy" do
77
- optional :create_time, :message, 1, "google.protobuf.Timestamp"
78
- optional :update_time, :message, 2, "google.protobuf.Timestamp"
79
- optional :description, :string, 3
80
- repeated :weekly_maintenance_window, :message, 4, "google.cloud.memcache.v1beta2.WeeklyMaintenanceWindow"
81
- end
82
- add_message "google.cloud.memcache.v1beta2.WeeklyMaintenanceWindow" do
83
- optional :day, :enum, 1, "google.type.DayOfWeek"
84
- optional :start_time, :message, 2, "google.type.TimeOfDay"
85
- optional :duration, :message, 3, "google.protobuf.Duration"
86
- end
87
- add_message "google.cloud.memcache.v1beta2.MaintenanceSchedule" do
88
- optional :start_time, :message, 1, "google.protobuf.Timestamp"
89
- optional :end_time, :message, 2, "google.protobuf.Timestamp"
90
- optional :schedule_deadline_time, :message, 4, "google.protobuf.Timestamp"
91
- end
92
- add_message "google.cloud.memcache.v1beta2.ListInstancesRequest" do
93
- optional :parent, :string, 1
94
- optional :page_size, :int32, 2
95
- optional :page_token, :string, 3
96
- optional :filter, :string, 4
97
- optional :order_by, :string, 5
98
- end
99
- add_message "google.cloud.memcache.v1beta2.ListInstancesResponse" do
100
- repeated :resources, :message, 1, "google.cloud.memcache.v1beta2.Instance"
101
- optional :next_page_token, :string, 2
102
- repeated :unreachable, :string, 3
103
- end
104
- add_message "google.cloud.memcache.v1beta2.GetInstanceRequest" do
105
- optional :name, :string, 1
106
- end
107
- add_message "google.cloud.memcache.v1beta2.CreateInstanceRequest" do
108
- optional :parent, :string, 1
109
- optional :instance_id, :string, 2
110
- optional :resource, :message, 3, "google.cloud.memcache.v1beta2.Instance"
111
- end
112
- add_message "google.cloud.memcache.v1beta2.UpdateInstanceRequest" do
113
- optional :update_mask, :message, 1, "google.protobuf.FieldMask"
114
- optional :resource, :message, 2, "google.cloud.memcache.v1beta2.Instance"
115
- end
116
- add_message "google.cloud.memcache.v1beta2.DeleteInstanceRequest" do
117
- optional :name, :string, 1
118
- end
119
- add_message "google.cloud.memcache.v1beta2.RescheduleMaintenanceRequest" do
120
- optional :instance, :string, 1
121
- optional :reschedule_type, :enum, 2, "google.cloud.memcache.v1beta2.RescheduleMaintenanceRequest.RescheduleType"
122
- optional :schedule_time, :message, 3, "google.protobuf.Timestamp"
123
- end
124
- add_enum "google.cloud.memcache.v1beta2.RescheduleMaintenanceRequest.RescheduleType" do
125
- value :RESCHEDULE_TYPE_UNSPECIFIED, 0
126
- value :IMMEDIATE, 1
127
- value :NEXT_AVAILABLE_WINDOW, 2
128
- value :SPECIFIC_TIME, 3
129
- end
130
- add_message "google.cloud.memcache.v1beta2.ApplyParametersRequest" do
131
- optional :name, :string, 1
132
- repeated :node_ids, :string, 2
133
- optional :apply_all, :bool, 3
134
- end
135
- add_message "google.cloud.memcache.v1beta2.UpdateParametersRequest" do
136
- optional :name, :string, 1
137
- optional :update_mask, :message, 2, "google.protobuf.FieldMask"
138
- optional :parameters, :message, 3, "google.cloud.memcache.v1beta2.MemcacheParameters"
139
- end
140
- add_message "google.cloud.memcache.v1beta2.ApplySoftwareUpdateRequest" do
141
- optional :instance, :string, 1
142
- repeated :node_ids, :string, 2
143
- optional :apply_all, :bool, 3
144
- end
145
- add_message "google.cloud.memcache.v1beta2.MemcacheParameters" do
146
- optional :id, :string, 1
147
- map :params, :string, :string, 3
148
- end
149
- add_message "google.cloud.memcache.v1beta2.OperationMetadata" do
150
- optional :create_time, :message, 1, "google.protobuf.Timestamp"
151
- optional :end_time, :message, 2, "google.protobuf.Timestamp"
152
- optional :target, :string, 3
153
- optional :verb, :string, 4
154
- optional :status_detail, :string, 5
155
- optional :cancel_requested, :bool, 6
156
- optional :api_version, :string, 7
157
- end
158
- add_message "google.cloud.memcache.v1beta2.LocationMetadata" do
159
- map :available_zones, :string, :message, 1, "google.cloud.memcache.v1beta2.ZoneMetadata"
160
- end
161
- add_message "google.cloud.memcache.v1beta2.ZoneMetadata" do
162
- end
163
- add_enum "google.cloud.memcache.v1beta2.MemcacheVersion" do
164
- value :MEMCACHE_VERSION_UNSPECIFIED, 0
165
- value :MEMCACHE_1_5, 1
18
+
19
+ descriptor_data = "\n2google/cloud/memcache/v1beta2/cloud_memcache.proto\x12\x1dgoogle.cloud.memcache.v1beta2\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a#google/longrunning/operations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1bgoogle/type/dayofweek.proto\x1a\x1bgoogle/type/timeofday.proto\"\xc6\x0e\n\x08Instance\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x43\n\x06labels\x18\x03 \x03(\x0b\x32\x33.google.cloud.memcache.v1beta2.Instance.LabelsEntry\x12\x1a\n\x12\x61uthorized_network\x18\x04 \x01(\t\x12\r\n\x05zones\x18\x05 \x03(\t\x12\x17\n\nnode_count\x18\x06 \x01(\x05\x42\x03\xe0\x41\x02\x12L\n\x0bnode_config\x18\x07 \x01(\x0b\x32\x32.google.cloud.memcache.v1beta2.Instance.NodeConfigB\x03\xe0\x41\x02\x12H\n\x10memcache_version\x18\t \x01(\x0e\x32..google.cloud.memcache.v1beta2.MemcacheVersion\x12\x45\n\nparameters\x18\x0b \x01(\x0b\x32\x31.google.cloud.memcache.v1beta2.MemcacheParameters\x12I\n\x0ememcache_nodes\x18\x0c \x03(\x0b\x32,.google.cloud.memcache.v1beta2.Instance.NodeB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\r \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x41\n\x05state\x18\x0f \x01(\x0e\x32-.google.cloud.memcache.v1beta2.Instance.StateB\x03\xe0\x41\x03\x12\"\n\x15memcache_full_version\x18\x12 \x01(\tB\x03\xe0\x41\x03\x12R\n\x11instance_messages\x18\x13 \x03(\x0b\x32\x37.google.cloud.memcache.v1beta2.Instance.InstanceMessage\x12\x1f\n\x12\x64iscovery_endpoint\x18\x14 \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x10update_available\x18\x15 \x01(\x08\x42\x03\xe0\x41\x03\x12L\n\x12maintenance_policy\x18\x16 \x01(\x0b\x32\x30.google.cloud.memcache.v1beta2.MaintenancePolicy\x12U\n\x14maintenance_schedule\x18\x17 \x01(\x0b\x32\x32.google.cloud.memcache.v1beta2.MaintenanceScheduleB\x03\xe0\x41\x03\x1a\x41\n\nNodeConfig\x12\x16\n\tcpu_count\x18\x01 \x01(\x05\x42\x03\xe0\x41\x02\x12\x1b\n\x0ememory_size_mb\x18\x02 \x01(\x05\x42\x03\xe0\x41\x02\x1a\xd8\x02\n\x04Node\x12\x14\n\x07node_id\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04zone\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x46\n\x05state\x18\x03 \x01(\x0e\x32\x32.google.cloud.memcache.v1beta2.Instance.Node.StateB\x03\xe0\x41\x03\x12\x11\n\x04host\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04port\x18\x05 \x01(\x05\x42\x03\xe0\x41\x03\x12\x45\n\nparameters\x18\x06 \x01(\x0b\x32\x31.google.cloud.memcache.v1beta2.MemcacheParameters\x12\x1d\n\x10update_available\x18\x07 \x01(\x08\x42\x03\xe0\x41\x03\"S\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\t\n\x05READY\x10\x02\x12\x0c\n\x08\x44\x45LETING\x10\x03\x12\x0c\n\x08UPDATING\x10\x04\x1a\xae\x01\n\x0fInstanceMessage\x12J\n\x04\x63ode\x18\x01 \x01(\x0e\x32<.google.cloud.memcache.v1beta2.Instance.InstanceMessage.Code\x12\x0f\n\x07message\x18\x02 \x01(\t\">\n\x04\x43ode\x12\x14\n\x10\x43ODE_UNSPECIFIED\x10\x00\x12 \n\x1cZONE_DISTRIBUTION_UNBALANCED\x10\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"o\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\t\n\x05READY\x10\x02\x12\x0c\n\x08UPDATING\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04\x12\x1a\n\x16PERFORMING_MAINTENANCE\x10\x05:c\xea\x41`\n memcache.googleapis.com/Instance\x12<projects/{project}/locations/{location}/instances/{instance}\"\xf4\x01\n\x11MaintenancePolicy\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12^\n\x19weekly_maintenance_window\x18\x04 \x03(\x0b\x32\x36.google.cloud.memcache.v1beta2.WeeklyMaintenanceWindowB\x03\xe0\x41\x02\"\xa6\x01\n\x17WeeklyMaintenanceWindow\x12(\n\x03\x64\x61y\x18\x01 \x01(\x0e\x32\x16.google.type.DayOfWeekB\x03\xe0\x41\x02\x12/\n\nstart_time\x18\x02 \x01(\x0b\x32\x16.google.type.TimeOfDayB\x03\xe0\x41\x02\x12\x30\n\x08\x64uration\x18\x03 \x01(\x0b\x32\x19.google.protobuf.DurationB\x03\xe0\x41\x02\"\xbe\x01\n\x13MaintenanceSchedule\x12\x33\n\nstart_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12?\n\x16schedule_deadline_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"\x9a\x01\n\x14ListInstancesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\x81\x01\n\x15ListInstancesResponse\x12:\n\tresources\x18\x01 \x03(\x0b\x32\'.google.cloud.memcache.v1beta2.Instance\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"L\n\x12GetInstanceRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n memcache.googleapis.com/Instance\"\xac\x01\n\x15\x43reateInstanceRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x18\n\x0binstance_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12>\n\x08resource\x18\x03 \x01(\x0b\x32\'.google.cloud.memcache.v1beta2.InstanceB\x03\xe0\x41\x02\"\x8d\x01\n\x15UpdateInstanceRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12>\n\x08resource\x18\x02 \x01(\x0b\x32\'.google.cloud.memcache.v1beta2.InstanceB\x03\xe0\x41\x02\"O\n\x15\x44\x65leteInstanceRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n memcache.googleapis.com/Instance\"\xe7\x02\n\x1cRescheduleMaintenanceRequest\x12:\n\x08instance\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n memcache.googleapis.com/Instance\x12h\n\x0freschedule_type\x18\x02 \x01(\x0e\x32J.google.cloud.memcache.v1beta2.RescheduleMaintenanceRequest.RescheduleTypeB\x03\xe0\x41\x02\x12\x31\n\rschedule_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"n\n\x0eRescheduleType\x12\x1f\n\x1bRESCHEDULE_TYPE_UNSPECIFIED\x10\x00\x12\r\n\tIMMEDIATE\x10\x01\x12\x19\n\x15NEXT_AVAILABLE_WINDOW\x10\x02\x12\x11\n\rSPECIFIC_TIME\x10\x03\"u\n\x16\x41pplyParametersRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n memcache.googleapis.com/Instance\x12\x10\n\x08node_ids\x18\x02 \x03(\t\x12\x11\n\tapply_all\x18\x03 \x01(\x08\"\xce\x01\n\x17UpdateParametersRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n memcache.googleapis.com/Instance\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\x12\x45\n\nparameters\x18\x03 \x01(\x0b\x32\x31.google.cloud.memcache.v1beta2.MemcacheParameters\"}\n\x1a\x41pplySoftwareUpdateRequest\x12:\n\x08instance\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n memcache.googleapis.com/Instance\x12\x10\n\x08node_ids\x18\x02 \x03(\t\x12\x11\n\tapply_all\x18\x03 \x01(\x08\"\xa3\x01\n\x12MemcacheParameters\x12\x0f\n\x02id\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12M\n\x06params\x18\x03 \x03(\x0b\x32=.google.cloud.memcache.v1beta2.MemcacheParameters.ParamsEntry\x1a-\n\x0bParamsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xf9\x01\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rstatus_detail\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x10\x63\x61ncel_requested\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\"\xd9\x01\n\x10LocationMetadata\x12\x61\n\x0f\x61vailable_zones\x18\x01 \x03(\x0b\x32\x43.google.cloud.memcache.v1beta2.LocationMetadata.AvailableZonesEntryB\x03\xe0\x41\x03\x1a\x62\n\x13\x41vailableZonesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12:\n\x05value\x18\x02 \x01(\x0b\x32+.google.cloud.memcache.v1beta2.ZoneMetadata:\x02\x38\x01\"\x0e\n\x0cZoneMetadata*E\n\x0fMemcacheVersion\x12 \n\x1cMEMCACHE_VERSION_UNSPECIFIED\x10\x00\x12\x10\n\x0cMEMCACHE_1_5\x10\x01\x32\x9a\x14\n\rCloudMemcache\x12\xbf\x01\n\rListInstances\x12\x33.google.cloud.memcache.v1beta2.ListInstancesRequest\x1a\x34.google.cloud.memcache.v1beta2.ListInstancesResponse\"C\x82\xd3\xe4\x93\x02\x34\x12\x32/v1beta2/{parent=projects/*/locations/*}/instances\xda\x41\x06parent\x12\xac\x01\n\x0bGetInstance\x12\x31.google.cloud.memcache.v1beta2.GetInstanceRequest\x1a\'.google.cloud.memcache.v1beta2.Instance\"A\x82\xd3\xe4\x93\x02\x34\x12\x32/v1beta2/{name=projects/*/locations/*/instances/*}\xda\x41\x04name\x12\xa6\x02\n\x0e\x43reateInstance\x12\x34.google.cloud.memcache.v1beta2.CreateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xbe\x01\x82\xd3\xe4\x93\x02>\"2/v1beta2/{parent=projects/*/locations/*}/instances:\x08resource\xda\x41\x1bparent,instance_id,resource\xca\x41Y\n&google.cloud.memcache.v1beta2.Instance\x12/google.cloud.memcache.v1beta2.OperationMetadata\x12\xa8\x02\n\x0eUpdateInstance\x12\x34.google.cloud.memcache.v1beta2.UpdateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\xc0\x01\x82\xd3\xe4\x93\x02G2;/v1beta2/{resource.name=projects/*/locations/*/instances/*}:\x08resource\xda\x41\x14update_mask,resource\xca\x41Y\n&google.cloud.memcache.v1beta2.Instance\x12/google.cloud.memcache.v1beta2.OperationMetadata\x12\xb4\x02\n\x10UpdateParameters\x12\x36.google.cloud.memcache.v1beta2.UpdateParametersRequest\x1a\x1d.google.longrunning.Operation\"\xc8\x01\x82\xd3\xe4\x93\x02H2C/v1beta2/{name=projects/*/locations/*/instances/*}:updateParameters:\x01*\xda\x41\x1bname,update_mask,parameters\xca\x41Y\n&google.cloud.memcache.v1beta2.Instance\x12/google.cloud.memcache.v1beta2.OperationMetadata\x12\xf4\x01\n\x0e\x44\x65leteInstance\x12\x34.google.cloud.memcache.v1beta2.DeleteInstanceRequest\x1a\x1d.google.longrunning.Operation\"\x8c\x01\x82\xd3\xe4\x93\x02\x34*2/v1beta2/{name=projects/*/locations/*/instances/*}\xda\x41\x04name\xca\x41H\n\x15google.protobuf.Empty\x12/google.cloud.memcache.v1beta2.OperationMetadata\x12\xad\x02\n\x0f\x41pplyParameters\x12\x35.google.cloud.memcache.v1beta2.ApplyParametersRequest\x1a\x1d.google.longrunning.Operation\"\xc3\x01\x82\xd3\xe4\x93\x02G\"B/v1beta2/{name=projects/*/locations/*/instances/*}:applyParameters:\x01*\xda\x41\x17name,node_ids,apply_all\xca\x41Y\n&google.cloud.memcache.v1beta2.Instance\x12/google.cloud.memcache.v1beta2.OperationMetadata\x12\xc1\x02\n\x13\x41pplySoftwareUpdate\x12\x39.google.cloud.memcache.v1beta2.ApplySoftwareUpdateRequest\x1a\x1d.google.longrunning.Operation\"\xcf\x01\x82\xd3\xe4\x93\x02O\"J/v1beta2/{instance=projects/*/locations/*/instances/*}:applySoftwareUpdate:\x01*\xda\x41\x1binstance,node_ids,apply_all\xca\x41Y\n&google.cloud.memcache.v1beta2.Instance\x12/google.cloud.memcache.v1beta2.OperationMetadata\x12\xd4\x02\n\x15RescheduleMaintenance\x12;.google.cloud.memcache.v1beta2.RescheduleMaintenanceRequest\x1a\x1d.google.longrunning.Operation\"\xde\x01\x82\xd3\xe4\x93\x02Q\"L/v1beta2/{instance=projects/*/locations/*/instances/*}:rescheduleMaintenance:\x01*\xda\x41(instance, reschedule_type, schedule_time\xca\x41Y\n&google.cloud.memcache.v1beta2.Instance\x12/google.cloud.memcache.v1beta2.OperationMetadata\x1aK\xca\x41\x17memcache.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformBx\n!com.google.cloud.memcache.v1beta2B\x12\x43loudMemcacheProtoP\x01Z=cloud.google.com/go/memcache/apiv1beta2/memcachepb;memcachepbb\x06proto3"
20
+
21
+ pool = Google::Protobuf::DescriptorPool.generated_pool
22
+
23
+ begin
24
+ pool.add_serialized_file(descriptor_data)
25
+ rescue TypeError => e
26
+ # Compatibility code: will be removed in the next major version.
27
+ require 'google/protobuf/descriptor_pb'
28
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
29
+ parsed.clear_dependency
30
+ serialized = parsed.class.encode(parsed)
31
+ file = pool.add_serialized_file(serialized)
32
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
33
+ imports = [
34
+ ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
35
+ ["google.type.TimeOfDay", "google/type/timeofday.proto"],
36
+ ["google.protobuf.Duration", "google/protobuf/duration.proto"],
37
+ ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
38
+ ]
39
+ imports.each do |type_name, expected_filename|
40
+ import_file = pool.lookup(type_name).file_descriptor
41
+ if import_file.name != expected_filename
42
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
166
43
  end
167
44
  end
45
+ warn "Each proto file must use a consistent fully-qualified name."
46
+ warn "This will become an error in the next major version."
168
47
  end
169
48
 
170
49
  module Google
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "google/cloud/memcache/v1beta2/cloud_memcache/rest"
20
+ require "google/cloud/memcache/v1beta2/bindings_override"
21
+ require "google/cloud/memcache/v1beta2/version"
22
+
23
+ module Google
24
+ module Cloud
25
+ module Memcache
26
+ ##
27
+ # To load just the REST part of this package, including all its services, and instantiate a REST client:
28
+ #
29
+ # @example
30
+ #
31
+ # require "google/cloud/memcache/v1beta2/rest"
32
+ # client = ::Google::Cloud::Memcache::V1beta2::CloudMemcache::Rest::Client.new
33
+ #
34
+ module V1beta2
35
+ end
36
+ end
37
+ end
38
+ end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Memcache
23
23
  module V1beta2
24
- VERSION = "0.4.0"
24
+ VERSION = "0.6.0"
25
25
  end
26
26
  end
27
27
  end
@@ -23,13 +23,18 @@ module Google
23
23
  module Cloud
24
24
  module Memcache
25
25
  ##
26
- # To load this package, including all its services, and instantiate a client:
26
+ # API client module.
27
27
  #
28
- # @example
28
+ # @example Load this package, including all its services, and instantiate a gRPC client
29
29
  #
30
30
  # require "google/cloud/memcache/v1beta2"
31
31
  # client = ::Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
32
32
  #
33
+ # @example Load this package, including all its services, and instantiate a REST client
34
+ #
35
+ # require "google/cloud/memcache/v1beta2"
36
+ # client = ::Google::Cloud::Memcache::V1beta2::CloudMemcache::Rest::Client.new
37
+ #
33
38
  module V1beta2
34
39
  end
35
40
  end
@@ -35,7 +35,9 @@ module Google
35
35
  # Details about how and where to publish client libraries.
36
36
  # @!attribute [rw] version
37
37
  # @return [::String]
38
- # Version of the API to apply these settings to.
38
+ # Version of the API to apply these settings to. This is the full protobuf
39
+ # package for the API, ending in the version element.
40
+ # Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
39
41
  # @!attribute [rw] launch_stage
40
42
  # @return [::Google::Api::LaunchStage]
41
43
  # Launch stage of this version of the API.
@@ -81,7 +83,7 @@ module Google
81
83
  # long-running operation pattern.
82
84
  # @!attribute [rw] new_issue_uri
83
85
  # @return [::String]
84
- # Link to a place that API users can report issues. Example:
86
+ # Link to a *public* URI where users can report issues. Example:
85
87
  # https://issuetracker.google.com/issues/new?component=190865&template=1161103
86
88
  # @!attribute [rw] documentation_uri
87
89
  # @return [::String]
@@ -111,6 +113,10 @@ module Google
111
113
  # Client library settings. If the same version string appears multiple
112
114
  # times in this list, then the last one wins. Settings from earlier
113
115
  # settings with the same version string are discarded.
116
+ # @!attribute [rw] proto_reference_documentation_uri
117
+ # @return [::String]
118
+ # Optional link to proto reference documentation. Example:
119
+ # https://cloud.google.com/pubsub/lite/docs/reference/rpc
114
120
  class Publishing
115
121
  include ::Google::Protobuf::MessageExts
116
122
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -203,9 +209,57 @@ module Google
203
209
  # @!attribute [rw] common
204
210
  # @return [::Google::Api::CommonLanguageSettings]
205
211
  # Some settings.
212
+ # @!attribute [rw] renamed_services
213
+ # @return [::Google::Protobuf::Map{::String => ::String}]
214
+ # Map from original service names to renamed versions.
215
+ # This is used when the default generated types
216
+ # would cause a naming conflict. (Neither name is
217
+ # fully-qualified.)
218
+ # Example: Subscriber to SubscriberServiceApi.
219
+ # @!attribute [rw] renamed_resources
220
+ # @return [::Google::Protobuf::Map{::String => ::String}]
221
+ # Map from full resource types to the effective short name
222
+ # for the resource. This is used when otherwise resource
223
+ # named from different services would cause naming collisions.
224
+ # Example entry:
225
+ # "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
226
+ # @!attribute [rw] ignored_resources
227
+ # @return [::Array<::String>]
228
+ # List of full resource types to ignore during generation.
229
+ # This is typically used for API-specific Location resources,
230
+ # which should be handled by the generator as if they were actually
231
+ # the common Location resources.
232
+ # Example entry: "documentai.googleapis.com/Location"
233
+ # @!attribute [rw] forced_namespace_aliases
234
+ # @return [::Array<::String>]
235
+ # Namespaces which must be aliased in snippets due to
236
+ # a known (but non-generator-predictable) naming collision
237
+ # @!attribute [rw] handwritten_signatures
238
+ # @return [::Array<::String>]
239
+ # Method signatures (in the form "service.method(signature)")
240
+ # which are provided separately, so shouldn't be generated.
241
+ # Snippets *calling* these methods are still generated, however.
206
242
  class DotnetSettings
207
243
  include ::Google::Protobuf::MessageExts
208
244
  extend ::Google::Protobuf::MessageExts::ClassMethods
245
+
246
+ # @!attribute [rw] key
247
+ # @return [::String]
248
+ # @!attribute [rw] value
249
+ # @return [::String]
250
+ class RenamedServicesEntry
251
+ include ::Google::Protobuf::MessageExts
252
+ extend ::Google::Protobuf::MessageExts::ClassMethods
253
+ end
254
+
255
+ # @!attribute [rw] key
256
+ # @return [::String]
257
+ # @!attribute [rw] value
258
+ # @return [::String]
259
+ class RenamedResourcesEntry
260
+ include ::Google::Protobuf::MessageExts
261
+ extend ::Google::Protobuf::MessageExts::ClassMethods
262
+ end
209
263
  end
210
264
 
211
265
  # Settings for Ruby client libraries.
@@ -240,8 +294,8 @@ module Google
240
294
  # Example of a YAML configuration::
241
295
  #
242
296
  # publishing:
243
- # method_behavior:
244
- # - selector: CreateAdDomain
297
+ # method_settings:
298
+ # - selector: google.cloud.speech.v2.Speech.BatchRecognize
245
299
  # long_running:
246
300
  # initial_poll_delay:
247
301
  # seconds: 60 # 1 minute
@@ -299,6 +353,15 @@ module Google
299
353
 
300
354
  # Street View Org.
301
355
  STREET_VIEW = 4
356
+
357
+ # Shopping Org.
358
+ SHOPPING = 5
359
+
360
+ # Geo Org.
361
+ GEO = 6
362
+
363
+ # Generative AI - https://developers.generativeai.google
364
+ GENERATIVE_AI = 7
302
365
  end
303
366
 
304
367
  # To where should client libraries be published?
@@ -43,8 +43,12 @@ module Google
43
43
  # if (any.is(Foo.class)) {
44
44
  # foo = any.unpack(Foo.class);
45
45
  # }
46
+ # // or ...
47
+ # if (any.isSameTypeAs(Foo.getDefaultInstance())) {
48
+ # foo = any.unpack(Foo.getDefaultInstance());
49
+ # }
46
50
  #
47
- # Example 3: Pack and unpack a message in Python.
51
+ # Example 3: Pack and unpack a message in Python.
48
52
  #
49
53
  # foo = Foo(...)
50
54
  # any = Any()
@@ -54,7 +58,7 @@ module Google
54
58
  # any.Unpack(foo)
55
59
  # ...
56
60
  #
57
- # Example 4: Pack and unpack a message in Go
61
+ # Example 4: Pack and unpack a message in Go
58
62
  #
59
63
  # foo := &pb.Foo{...}
60
64
  # any, err := anypb.New(foo)
@@ -73,9 +77,8 @@ module Google
73
77
  # in the type URL, for example "foo.bar.com/x/y.z" will yield type
74
78
  # name "y.z".
75
79
  #
76
- #
77
80
  # JSON
78
- #
81
+ # ====
79
82
  # The JSON representation of an `Any` value uses the regular
80
83
  # representation of the deserialized, embedded message, with an
81
84
  # additional field `@type` which contains the type URL. Example:
@@ -69,7 +69,6 @@ module Google
69
69
  # Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
70
70
  # .setNanos((int) ((millis % 1000) * 1000000)).build();
71
71
  #
72
- #
73
72
  # Example 5: Compute Timestamp from Java `Instant.now()`.
74
73
  #
75
74
  # Instant now = Instant.now();
@@ -78,7 +77,6 @@ module Google
78
77
  # Timestamp.newBuilder().setSeconds(now.getEpochSecond())
79
78
  # .setNanos(now.getNano()).build();
80
79
  #
81
- #
82
80
  # Example 6: Compute Timestamp from current time in Python.
83
81
  #
84
82
  # timestamp = Timestamp()
@@ -108,7 +106,7 @@ module Google
108
106
  # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
109
107
  # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
110
108
  # the Joda Time's [`ISODateTimeFormat.dateTime()`](
111
- # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
109
+ # http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
112
110
  # ) to obtain a formatter capable of generating timestamps in this format.
113
111
  # @!attribute [rw] seconds
114
112
  # @return [::Integer]
@@ -28,12 +28,14 @@ module Google
28
28
  # [API Design Guide](https://cloud.google.com/apis/design/errors).
29
29
  # @!attribute [rw] code
30
30
  # @return [::Integer]
31
- # The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
31
+ # The status code, which should be an enum value of
32
+ # [google.rpc.Code][google.rpc.Code].
32
33
  # @!attribute [rw] message
33
34
  # @return [::String]
34
35
  # A developer-facing error message, which should be in English. Any
35
36
  # user-facing error message should be localized and sent in the
36
- # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized by the client.
37
+ # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
38
+ # by the client.
37
39
  # @!attribute [rw] details
38
40
  # @return [::Array<::Google::Protobuf::Any>]
39
41
  # A list of messages that carry the error details. There is a common set of
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-memcache-v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.6.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: 2022-12-07 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.12'
19
+ version: 0.19.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.12'
29
+ version: 0.19.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: '0.0'
53
+ version: '0.4'
54
54
  - - "<"
55
55
  - !ruby/object:Gem::Version
56
56
  version: 2.a
@@ -60,7 +60,7 @@ dependencies:
60
60
  requirements:
61
61
  - - ">="
62
62
  - !ruby/object:Gem::Version
63
- version: '0.0'
63
+ version: '0.4'
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
66
  version: 2.a
@@ -70,14 +70,14 @@ dependencies:
70
70
  requirements:
71
71
  - - "~>"
72
72
  - !ruby/object:Gem::Version
73
- version: 1.26.1
73
+ version: 1.26.3
74
74
  type: :development
75
75
  prerelease: false
76
76
  version_requirements: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - "~>"
79
79
  - !ruby/object:Gem::Version
80
- version: 1.26.1
80
+ version: 1.26.3
81
81
  - !ruby/object:Gem::Dependency
82
82
  name: minitest
83
83
  requirement: !ruby/object:Gem::Requirement
@@ -191,13 +191,19 @@ files:
191
191
  - README.md
192
192
  - lib/google-cloud-memcache-v1beta2.rb
193
193
  - lib/google/cloud/memcache/v1beta2.rb
194
+ - lib/google/cloud/memcache/v1beta2/bindings_override.rb
194
195
  - lib/google/cloud/memcache/v1beta2/cloud_memcache.rb
195
196
  - lib/google/cloud/memcache/v1beta2/cloud_memcache/client.rb
196
197
  - lib/google/cloud/memcache/v1beta2/cloud_memcache/credentials.rb
197
198
  - lib/google/cloud/memcache/v1beta2/cloud_memcache/operations.rb
198
199
  - lib/google/cloud/memcache/v1beta2/cloud_memcache/paths.rb
200
+ - lib/google/cloud/memcache/v1beta2/cloud_memcache/rest.rb
201
+ - lib/google/cloud/memcache/v1beta2/cloud_memcache/rest/client.rb
202
+ - lib/google/cloud/memcache/v1beta2/cloud_memcache/rest/operations.rb
203
+ - lib/google/cloud/memcache/v1beta2/cloud_memcache/rest/service_stub.rb
199
204
  - lib/google/cloud/memcache/v1beta2/cloud_memcache_pb.rb
200
205
  - lib/google/cloud/memcache/v1beta2/cloud_memcache_services_pb.rb
206
+ - lib/google/cloud/memcache/v1beta2/rest.rb
201
207
  - lib/google/cloud/memcache/v1beta2/version.rb
202
208
  - proto_docs/README.md
203
209
  - proto_docs/google/api/client.rb
@@ -233,8 +239,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
233
239
  - !ruby/object:Gem::Version
234
240
  version: '0'
235
241
  requirements: []
236
- rubygems_version: 3.3.14
242
+ rubygems_version: 3.4.2
237
243
  signing_key:
238
244
  specification_version: 4
239
- summary: API Client library for the Google Cloud Memorystore for Memcached API
245
+ summary: Google Cloud Memorystore for Memcached API is used for creating and managing
246
+ Memcached instances in GCP.
240
247
  test_files: []