google-apis-integrations_v1alpha 0.4.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3a88523c212592d92a67926648f1ae251cee3b3805ed1cb0880bdc19f0c6b785
4
- data.tar.gz: c0631dc299ea48855677a529e623994fe5b9a241998206dddd52d9ae4c11ee5d
3
+ metadata.gz: 51e1a8a6dfaaf1736ed87004a80a11541b4948b25795df45e55031ff931fa219
4
+ data.tar.gz: a013c74dbc73e00f308692184e1dd1efeb1528fabba059681a185884987bd85e
5
5
  SHA512:
6
- metadata.gz: 42bdb1289b17f246bf8e248d66cced3f2dc853db5d85bfbd21b17110edf789e6031e125a17a92e728eae9256446ab292dcddd36c5ed9e9f62e265a759b0039d0
7
- data.tar.gz: 330ac6d2cc1269f07ab5a6a4f43f97ad038f7c7f61b621823f55fb77005f9fe28949e9e06d4d471470e8fe51c5e391f03f17c6f6171d8323a7440f683dcf3848
6
+ metadata.gz: cd9ab2688e990ddecfcdcebfdb01f81c2b68cc13c288984df5b691e5fa88aeb9c9067c6acd3ec1aa41bcff5837e661c3f168741253bf7ce5529bba09e4494542
7
+ data.tar.gz: ed71a6c098396f8de4b5aee6256d6acd597230f02cee53f3952f4496ab661ddabb92af8183462bbf6694f1b034ba887e2a287ab78028a8096b61caacd2034ac1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-integrations_v1alpha
2
2
 
3
+ ### v0.6.0 (2023-01-15)
4
+
5
+ * Regenerated from discovery document revision 20230110
6
+
7
+ ### v0.5.0 (2023-01-08)
8
+
9
+ * Regenerated from discovery document revision 20230103
10
+ * Regenerated using generator version 0.11.1
11
+
3
12
  ### v0.4.0 (2023-01-01)
4
13
 
5
14
  * Regenerated from discovery document revision 20221220
@@ -42,185 +42,6 @@ module Google
42
42
  end
43
43
  end
44
44
 
45
- #
46
- class EnterpriseCrmCardsCellValue
47
- include Google::Apis::Core::Hashable
48
-
49
- #
50
- # Corresponds to the JSON property `booleanValue`
51
- # @return [Boolean]
52
- attr_accessor :boolean_value
53
- alias_method :boolean_value?, :boolean_value
54
-
55
- #
56
- # Corresponds to the JSON property `doubleValue`
57
- # @return [Float]
58
- attr_accessor :double_value
59
-
60
- # A generic empty message that you can re-use to avoid defining duplicated empty
61
- # messages in your APIs. A typical example is to use it as the request or the
62
- # response type of an API method. For instance: service Foo ` rpc Bar(google.
63
- # protobuf.Empty) returns (google.protobuf.Empty); `
64
- # Corresponds to the JSON property `empty`
65
- # @return [Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty]
66
- attr_accessor :empty
67
-
68
- #
69
- # Corresponds to the JSON property `longValue`
70
- # @return [Fixnum]
71
- attr_accessor :long_value
72
-
73
- #
74
- # Corresponds to the JSON property `stringValue`
75
- # @return [String]
76
- attr_accessor :string_value
77
-
78
- def initialize(**args)
79
- update!(**args)
80
- end
81
-
82
- # Update properties of this object
83
- def update!(**args)
84
- @boolean_value = args[:boolean_value] if args.key?(:boolean_value)
85
- @double_value = args[:double_value] if args.key?(:double_value)
86
- @empty = args[:empty] if args.key?(:empty)
87
- @long_value = args[:long_value] if args.key?(:long_value)
88
- @string_value = args[:string_value] if args.key?(:string_value)
89
- end
90
- end
91
-
92
- #
93
- class EnterpriseCrmCardsRow
94
- include Google::Apis::Core::Hashable
95
-
96
- # Ordered list of cell values within a row.
97
- # Corresponds to the JSON property `cells`
98
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue>]
99
- attr_accessor :cells
100
-
101
- def initialize(**args)
102
- update!(**args)
103
- end
104
-
105
- # Update properties of this object
106
- def update!(**args)
107
- @cells = args[:cells] if args.key?(:cells)
108
- end
109
- end
110
-
111
- # The generic data format returned from all connectors.
112
- class EnterpriseCrmCardsTabularData
113
- include Google::Apis::Core::Hashable
114
-
115
- # Ordered list of column headers.
116
- # Corresponds to the JSON property `headers`
117
- # @return [Array<String>]
118
- attr_accessor :headers
119
-
120
- # Ordered list of table rows.
121
- # Corresponds to the JSON property `rows`
122
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow>]
123
- attr_accessor :rows
124
-
125
- def initialize(**args)
126
- update!(**args)
127
- end
128
-
129
- # Update properties of this object
130
- def update!(**args)
131
- @headers = args[:headers] if args.key?(:headers)
132
- @rows = args[:rows] if args.key?(:rows)
133
- end
134
- end
135
-
136
- # Data used to render an Aplos Series card.
137
- class EnterpriseCrmCardsTemplatesAplosSeriesData
138
- include Google::Apis::Core::Hashable
139
-
140
- # A single Series Row
141
- # Corresponds to the JSON property `rows`
142
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow>]
143
- attr_accessor :rows
144
-
145
- def initialize(**args)
146
- update!(**args)
147
- end
148
-
149
- # Update properties of this object
150
- def update!(**args)
151
- @rows = args[:rows] if args.key?(:rows)
152
- end
153
- end
154
-
155
- # Aplos series row is exactly two columns labeled x and y.
156
- class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
157
- include Google::Apis::Core::Hashable
158
-
159
- #
160
- # Corresponds to the JSON property `x`
161
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue]
162
- attr_accessor :x
163
-
164
- #
165
- # Corresponds to the JSON property `y`
166
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue]
167
- attr_accessor :y
168
-
169
- def initialize(**args)
170
- update!(**args)
171
- end
172
-
173
- # Update properties of this object
174
- def update!(**args)
175
- @x = args[:x] if args.key?(:x)
176
- @y = args[:y] if args.key?(:y)
177
- end
178
- end
179
-
180
- # Data used for Aplos charts that accept multiple Series.
181
- class EnterpriseCrmCardsTemplatesAplosSeriesListData
182
- include Google::Apis::Core::Hashable
183
-
184
- #
185
- # Corresponds to the JSON property `series`
186
- # @return [Array<Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries>]
187
- attr_accessor :series
188
-
189
- def initialize(**args)
190
- update!(**args)
191
- end
192
-
193
- # Update properties of this object
194
- def update!(**args)
195
- @series = args[:series] if args.key?(:series)
196
- end
197
- end
198
-
199
- #
200
- class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
201
- include Google::Apis::Core::Hashable
202
-
203
- # Data used to render an Aplos Series card.
204
- # Corresponds to the JSON property `data`
205
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData]
206
- attr_accessor :data
207
-
208
- #
209
- # Corresponds to the JSON property `name`
210
- # @return [String]
211
- attr_accessor :name
212
-
213
- def initialize(**args)
214
- update!(**args)
215
- end
216
-
217
- # Update properties of this object
218
- def update!(**args)
219
- @data = args[:data] if args.key?(:data)
220
- @name = args[:name] if args.key?(:name)
221
- end
222
- end
223
-
224
45
  #
225
46
  class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
226
47
  include Google::Apis::Core::Hashable
@@ -7715,251 +7536,6 @@ module Google
7715
7536
  end
7716
7537
  end
7717
7538
 
7718
- # The request to get data for monarch connector config.
7719
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
7720
- include Google::Apis::Core::Hashable
7721
-
7722
- # How long the series data range: "1h","1d",etc.
7723
- # Corresponds to the JSON property `duration`
7724
- # @return [String]
7725
- attr_accessor :duration
7726
-
7727
- # Final time to query over, or the current time if left unset.
7728
- # Corresponds to the JSON property `endTime`
7729
- # @return [String]
7730
- attr_accessor :end_time
7731
-
7732
- # The MashQuery for searching data, set both queries for Join Operation.
7733
- # Corresponds to the JSON property `mashQuery`
7734
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery]
7735
- attr_accessor :mash_query
7736
-
7737
- # Returns a table of all possible metric field values within the specified
7738
- # duration, ignoring any data samples. Useful for autocomplete functionality.
7739
- # Corresponds to the JSON property `metricFieldTable`
7740
- # @return [Boolean]
7741
- attr_accessor :metric_field_table
7742
- alias_method :metric_field_table?, :metric_field_table
7743
-
7744
- # The output period for the query. Must be set if there is a window operation
7745
- # within the query and unset otherwise.
7746
- # Corresponds to the JSON property `outputPeriod`
7747
- # @return [String]
7748
- attr_accessor :output_period
7749
-
7750
- # Required. Template for response.
7751
- # Corresponds to the JSON property `responseTemplate`
7752
- # @return [String]
7753
- attr_accessor :response_template
7754
-
7755
- def initialize(**args)
7756
- update!(**args)
7757
- end
7758
-
7759
- # Update properties of this object
7760
- def update!(**args)
7761
- @duration = args[:duration] if args.key?(:duration)
7762
- @end_time = args[:end_time] if args.key?(:end_time)
7763
- @mash_query = args[:mash_query] if args.key?(:mash_query)
7764
- @metric_field_table = args[:metric_field_table] if args.key?(:metric_field_table)
7765
- @output_period = args[:output_period] if args.key?(:output_period)
7766
- @response_template = args[:response_template] if args.key?(:response_template)
7767
- end
7768
- end
7769
-
7770
- # MashQuery GroupBy parameters.
7771
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
7772
- include Google::Apis::Core::Hashable
7773
-
7774
- # Optional. optional, metrics list for GroupBy.
7775
- # Corresponds to the JSON property `fields`
7776
- # @return [Array<String>]
7777
- attr_accessor :fields
7778
-
7779
- # Optional. optional, reduce function for GroupBy.
7780
- # Corresponds to the JSON property `reducer`
7781
- # @return [String]
7782
- attr_accessor :reducer
7783
-
7784
- def initialize(**args)
7785
- update!(**args)
7786
- end
7787
-
7788
- # Update properties of this object
7789
- def update!(**args)
7790
- @fields = args[:fields] if args.key?(:fields)
7791
- @reducer = args[:reducer] if args.key?(:reducer)
7792
- end
7793
- end
7794
-
7795
- # The MashQuery for searching data, set both queries for Join Operation.
7796
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
7797
- include Google::Apis::Core::Hashable
7798
-
7799
- # The components for constructing MashQuery.
7800
- # Corresponds to the JSON property `firstQuery`
7801
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
7802
- attr_accessor :first_query
7803
-
7804
- # Operation between 2 query
7805
- # Corresponds to the JSON property `operationMode`
7806
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode]
7807
- attr_accessor :operation_mode
7808
-
7809
- # The components for constructing MashQuery.
7810
- # Corresponds to the JSON property `secondQuery`
7811
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent]
7812
- attr_accessor :second_query
7813
-
7814
- def initialize(**args)
7815
- update!(**args)
7816
- end
7817
-
7818
- # Update properties of this object
7819
- def update!(**args)
7820
- @first_query = args[:first_query] if args.key?(:first_query)
7821
- @operation_mode = args[:operation_mode] if args.key?(:operation_mode)
7822
- @second_query = args[:second_query] if args.key?(:second_query)
7823
- end
7824
- end
7825
-
7826
- # The components for constructing MashQuery.
7827
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
7828
- include Google::Apis::Core::Hashable
7829
-
7830
- # Required. The metric for monarch.BorgTask.
7831
- # Corresponds to the JSON property `borgTaskMetric`
7832
- # @return [String]
7833
- attr_accessor :borg_task_metric
7834
-
7835
- # Optional. optional, filters on fetched data, "metric:client_id" not supported.
7836
- # Corresponds to the JSON property `dataFilters`
7837
- # @return [Array<String>]
7838
- attr_accessor :data_filters
7839
-
7840
- # Optional. optional, filters for Fetch Raw, "metric:client_id" not supported.
7841
- # Corresponds to the JSON property `fetchFilters`
7842
- # @return [Array<String>]
7843
- attr_accessor :fetch_filters
7844
-
7845
- # MashQuery GroupBy parameters.
7846
- # Corresponds to the JSON property `groupBy`
7847
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy]
7848
- attr_accessor :group_by
7849
-
7850
- # Optional. optional, Point Operation on single query or joined query.
7851
- # Corresponds to the JSON property `pointOperation`
7852
- # @return [String]
7853
- attr_accessor :point_operation
7854
-
7855
- # Required. Window time delta.
7856
- # Corresponds to the JSON property `timeDelta`
7857
- # @return [String]
7858
- attr_accessor :time_delta
7859
-
7860
- def initialize(**args)
7861
- update!(**args)
7862
- end
7863
-
7864
- # Update properties of this object
7865
- def update!(**args)
7866
- @borg_task_metric = args[:borg_task_metric] if args.key?(:borg_task_metric)
7867
- @data_filters = args[:data_filters] if args.key?(:data_filters)
7868
- @fetch_filters = args[:fetch_filters] if args.key?(:fetch_filters)
7869
- @group_by = args[:group_by] if args.key?(:group_by)
7870
- @point_operation = args[:point_operation] if args.key?(:point_operation)
7871
- @time_delta = args[:time_delta] if args.key?(:time_delta)
7872
- end
7873
- end
7874
-
7875
- # Operation between 2 query
7876
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
7877
- include Google::Apis::Core::Hashable
7878
-
7879
- # Join Operation
7880
- # Corresponds to the JSON property `joinConfig`
7881
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig]
7882
- attr_accessor :join_config
7883
-
7884
- # Optional. optional operation types.
7885
- # Corresponds to the JSON property `operationType`
7886
- # @return [String]
7887
- attr_accessor :operation_type
7888
-
7889
- # Union operation
7890
- # Corresponds to the JSON property `unionConfig`
7891
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig]
7892
- attr_accessor :union_config
7893
-
7894
- def initialize(**args)
7895
- update!(**args)
7896
- end
7897
-
7898
- # Update properties of this object
7899
- def update!(**args)
7900
- @join_config = args[:join_config] if args.key?(:join_config)
7901
- @operation_type = args[:operation_type] if args.key?(:operation_type)
7902
- @union_config = args[:union_config] if args.key?(:union_config)
7903
- end
7904
- end
7905
-
7906
- # Join Operation
7907
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
7908
- include Google::Apis::Core::Hashable
7909
-
7910
- def initialize(**args)
7911
- update!(**args)
7912
- end
7913
-
7914
- # Update properties of this object
7915
- def update!(**args)
7916
- end
7917
- end
7918
-
7919
- # Union operation
7920
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
7921
- include Google::Apis::Core::Hashable
7922
-
7923
- # Optional. optional, reduce function
7924
- # Corresponds to the JSON property `reducer`
7925
- # @return [String]
7926
- attr_accessor :reducer
7927
-
7928
- def initialize(**args)
7929
- update!(**args)
7930
- end
7931
-
7932
- # Update properties of this object
7933
- def update!(**args)
7934
- @reducer = args[:reducer] if args.key?(:reducer)
7935
- end
7936
- end
7937
-
7938
- # The response for getting Execution stats.
7939
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
7940
- include Google::Apis::Core::Hashable
7941
-
7942
- # Data used for Aplos charts that accept multiple Series.
7943
- # Corresponds to the JSON property `aplosSeriesListData`
7944
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData]
7945
- attr_accessor :aplos_series_list_data
7946
-
7947
- # The generic data format returned from all connectors.
7948
- # Corresponds to the JSON property `tableData`
7949
- # @return [Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData]
7950
- attr_accessor :table_data
7951
-
7952
- def initialize(**args)
7953
- update!(**args)
7954
- end
7955
-
7956
- # Update properties of this object
7957
- def update!(**args)
7958
- @aplos_series_list_data = args[:aplos_series_list_data] if args.key?(:aplos_series_list_data)
7959
- @table_data = args[:table_data] if args.key?(:table_data)
7960
- end
7961
- end
7962
-
7963
7539
  # The task that is next in line to be executed, if the condition specified
7964
7540
  # evaluated to true.
7965
7541
  class GoogleCloudIntegrationsV1alphaNextTask
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module IntegrationsV1alpha
18
18
  # Version of the google-apis-integrations_v1alpha gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221220"
25
+ REVISION = "20230110"
26
26
  end
27
27
  end
28
28
  end
@@ -28,48 +28,6 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
- class EnterpriseCrmCardsCellValue
32
- class Representation < Google::Apis::Core::JsonRepresentation; end
33
-
34
- include Google::Apis::Core::JsonObjectSupport
35
- end
36
-
37
- class EnterpriseCrmCardsRow
38
- class Representation < Google::Apis::Core::JsonRepresentation; end
39
-
40
- include Google::Apis::Core::JsonObjectSupport
41
- end
42
-
43
- class EnterpriseCrmCardsTabularData
44
- class Representation < Google::Apis::Core::JsonRepresentation; end
45
-
46
- include Google::Apis::Core::JsonObjectSupport
47
- end
48
-
49
- class EnterpriseCrmCardsTemplatesAplosSeriesData
50
- class Representation < Google::Apis::Core::JsonRepresentation; end
51
-
52
- include Google::Apis::Core::JsonObjectSupport
53
- end
54
-
55
- class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
56
- class Representation < Google::Apis::Core::JsonRepresentation; end
57
-
58
- include Google::Apis::Core::JsonObjectSupport
59
- end
60
-
61
- class EnterpriseCrmCardsTemplatesAplosSeriesListData
62
- class Representation < Google::Apis::Core::JsonRepresentation; end
63
-
64
- include Google::Apis::Core::JsonObjectSupport
65
- end
66
-
67
- class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
68
- class Representation < Google::Apis::Core::JsonRepresentation; end
69
-
70
- include Google::Apis::Core::JsonObjectSupport
71
- end
72
-
73
31
  class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
74
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
33
 
@@ -1234,54 +1192,6 @@ module Google
1234
1192
  include Google::Apis::Core::JsonObjectSupport
1235
1193
  end
1236
1194
 
1237
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
1238
- class Representation < Google::Apis::Core::JsonRepresentation; end
1239
-
1240
- include Google::Apis::Core::JsonObjectSupport
1241
- end
1242
-
1243
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
1244
- class Representation < Google::Apis::Core::JsonRepresentation; end
1245
-
1246
- include Google::Apis::Core::JsonObjectSupport
1247
- end
1248
-
1249
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
1250
- class Representation < Google::Apis::Core::JsonRepresentation; end
1251
-
1252
- include Google::Apis::Core::JsonObjectSupport
1253
- end
1254
-
1255
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
1256
- class Representation < Google::Apis::Core::JsonRepresentation; end
1257
-
1258
- include Google::Apis::Core::JsonObjectSupport
1259
- end
1260
-
1261
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
1262
- class Representation < Google::Apis::Core::JsonRepresentation; end
1263
-
1264
- include Google::Apis::Core::JsonObjectSupport
1265
- end
1266
-
1267
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
1268
- class Representation < Google::Apis::Core::JsonRepresentation; end
1269
-
1270
- include Google::Apis::Core::JsonObjectSupport
1271
- end
1272
-
1273
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
1274
- class Representation < Google::Apis::Core::JsonRepresentation; end
1275
-
1276
- include Google::Apis::Core::JsonObjectSupport
1277
- end
1278
-
1279
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
1280
- class Representation < Google::Apis::Core::JsonRepresentation; end
1281
-
1282
- include Google::Apis::Core::JsonObjectSupport
1283
- end
1284
-
1285
1195
  class GoogleCloudIntegrationsV1alphaNextTask
1286
1196
  class Representation < Google::Apis::Core::JsonRepresentation; end
1287
1197
 
@@ -1529,70 +1439,6 @@ module Google
1529
1439
  end
1530
1440
  end
1531
1441
 
1532
- class EnterpriseCrmCardsCellValue
1533
- # @private
1534
- class Representation < Google::Apis::Core::JsonRepresentation
1535
- property :boolean_value, as: 'booleanValue'
1536
- property :double_value, as: 'doubleValue'
1537
- property :empty, as: 'empty', class: Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty, decorator: Google::Apis::IntegrationsV1alpha::GoogleProtobufEmpty::Representation
1538
-
1539
- property :long_value, :numeric_string => true, as: 'longValue'
1540
- property :string_value, as: 'stringValue'
1541
- end
1542
- end
1543
-
1544
- class EnterpriseCrmCardsRow
1545
- # @private
1546
- class Representation < Google::Apis::Core::JsonRepresentation
1547
- collection :cells, as: 'cells', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
1548
-
1549
- end
1550
- end
1551
-
1552
- class EnterpriseCrmCardsTabularData
1553
- # @private
1554
- class Representation < Google::Apis::Core::JsonRepresentation
1555
- collection :headers, as: 'headers'
1556
- collection :rows, as: 'rows', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsRow::Representation
1557
-
1558
- end
1559
- end
1560
-
1561
- class EnterpriseCrmCardsTemplatesAplosSeriesData
1562
- # @private
1563
- class Representation < Google::Apis::Core::JsonRepresentation
1564
- collection :rows, as: 'rows', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesDataRow::Representation
1565
-
1566
- end
1567
- end
1568
-
1569
- class EnterpriseCrmCardsTemplatesAplosSeriesDataRow
1570
- # @private
1571
- class Representation < Google::Apis::Core::JsonRepresentation
1572
- property :x, as: 'x', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
1573
-
1574
- property :y, as: 'y', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsCellValue::Representation
1575
-
1576
- end
1577
- end
1578
-
1579
- class EnterpriseCrmCardsTemplatesAplosSeriesListData
1580
- # @private
1581
- class Representation < Google::Apis::Core::JsonRepresentation
1582
- collection :series, as: 'series', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries::Representation
1583
-
1584
- end
1585
- end
1586
-
1587
- class EnterpriseCrmCardsTemplatesAplosSeriesListDataSeries
1588
- # @private
1589
- class Representation < Google::Apis::Core::JsonRepresentation
1590
- property :data, as: 'data', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesData::Representation
1591
-
1592
- property :name, as: 'name'
1593
- end
1594
- end
1595
-
1596
1442
  class EnterpriseCrmEventbusAuthconfigAuthConfigTaskParam
1597
1443
  # @private
1598
1444
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3710,86 +3556,6 @@ module Google
3710
3556
  end
3711
3557
  end
3712
3558
 
3713
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest
3714
- # @private
3715
- class Representation < Google::Apis::Core::JsonRepresentation
3716
- property :duration, as: 'duration'
3717
- property :end_time, as: 'endTime'
3718
- property :mash_query, as: 'mashQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery::Representation
3719
-
3720
- property :metric_field_table, as: 'metricFieldTable'
3721
- property :output_period, as: 'outputPeriod'
3722
- property :response_template, as: 'responseTemplate'
3723
- end
3724
- end
3725
-
3726
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy
3727
- # @private
3728
- class Representation < Google::Apis::Core::JsonRepresentation
3729
- collection :fields, as: 'fields'
3730
- property :reducer, as: 'reducer'
3731
- end
3732
- end
3733
-
3734
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQuery
3735
- # @private
3736
- class Representation < Google::Apis::Core::JsonRepresentation
3737
- property :first_query, as: 'firstQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::Representation
3738
-
3739
- property :operation_mode, as: 'operationMode', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode::Representation
3740
-
3741
- property :second_query, as: 'secondQuery', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent::Representation
3742
-
3743
- end
3744
- end
3745
-
3746
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryComponent
3747
- # @private
3748
- class Representation < Google::Apis::Core::JsonRepresentation
3749
- property :borg_task_metric, as: 'borgTaskMetric'
3750
- collection :data_filters, as: 'dataFilters'
3751
- collection :fetch_filters, as: 'fetchFilters'
3752
- property :group_by, as: 'groupBy', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestGroupBy::Representation
3753
-
3754
- property :point_operation, as: 'pointOperation'
3755
- property :time_delta, as: 'timeDelta'
3756
- end
3757
- end
3758
-
3759
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationMode
3760
- # @private
3761
- class Representation < Google::Apis::Core::JsonRepresentation
3762
- property :join_config, as: 'joinConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig::Representation
3763
-
3764
- property :operation_type, as: 'operationType'
3765
- property :union_config, as: 'unionConfig', class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig, decorator: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig::Representation
3766
-
3767
- end
3768
- end
3769
-
3770
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeJoinConfig
3771
- # @private
3772
- class Representation < Google::Apis::Core::JsonRepresentation
3773
- end
3774
- end
3775
-
3776
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequestMashQueryOperationModeUnionConfig
3777
- # @private
3778
- class Representation < Google::Apis::Core::JsonRepresentation
3779
- property :reducer, as: 'reducer'
3780
- end
3781
- end
3782
-
3783
- class GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
3784
- # @private
3785
- class Representation < Google::Apis::Core::JsonRepresentation
3786
- property :aplos_series_list_data, as: 'aplosSeriesListData', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTemplatesAplosSeriesListData::Representation
3787
-
3788
- property :table_data, as: 'tableData', class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData, decorator: Google::Apis::IntegrationsV1alpha::EnterpriseCrmCardsTabularData::Representation
3789
-
3790
- end
3791
- end
3792
-
3793
3559
  class GoogleCloudIntegrationsV1alphaNextTask
3794
3560
  # @private
3795
3561
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -755,39 +755,6 @@ module Google
755
755
  execute_or_queue_command(command, &block)
756
756
  end
757
757
 
758
- # Get execution stats
759
- # @param [String] parent
760
- # Required. The parent resource name: `parent=projects/*/locations/*`.
761
- # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest] google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
762
- # @param [String] fields
763
- # Selector specifying which fields to include in a partial response.
764
- # @param [String] quota_user
765
- # Available to use for quota purposes for server-side applications. Can be any
766
- # arbitrary string assigned to a user, but should not exceed 40 characters.
767
- # @param [Google::Apis::RequestOptions] options
768
- # Request-specific options
769
- #
770
- # @yield [result, err] Result & error if block supplied
771
- # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse] parsed result object
772
- # @yieldparam err [StandardError] error object if request failed
773
- #
774
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse]
775
- #
776
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
777
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
778
- # @raise [Google::Apis::AuthorizationError] Authorization is required
779
- def monitorexecutionstats_project_location_integration(parent, google_cloud_integrations_v1alpha_monitor_execution_stats_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
780
- command = make_simple_command(:post, 'v1alpha/{+parent}:monitorexecutionstats', options)
781
- command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest::Representation
782
- command.request_object = google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
783
- command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse::Representation
784
- command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
785
- command.params['parent'] = parent unless parent.nil?
786
- command.query['fields'] = fields unless fields.nil?
787
- command.query['quotaUser'] = quota_user unless quota_user.nil?
788
- execute_or_queue_command(command, &block)
789
- end
790
-
791
758
  # Schedules an integration for execution by passing the trigger id and the
792
759
  # scheduled time in the request body.
793
760
  # @param [String] name
@@ -924,6 +891,124 @@ module Google
924
891
  execute_or_queue_command(command, &block)
925
892
  end
926
893
 
894
+ # * Lifts suspension for advanced suspension task. Fetch corresponding
895
+ # suspension with provided suspension Id, resolve suspension, and set up
896
+ # suspension result for the Suspension Task.
897
+ # @param [String] name
898
+ # Required. The resource that the suspension belongs to. "projects/`project`/
899
+ # locations/`location`/products/`product`/integrations/`integration`/executions/`
900
+ # execution`/suspensions/`suspenion`" format.
901
+ # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaLiftSuspensionRequest] google_cloud_integrations_v1alpha_lift_suspension_request_object
902
+ # @param [String] fields
903
+ # Selector specifying which fields to include in a partial response.
904
+ # @param [String] quota_user
905
+ # Available to use for quota purposes for server-side applications. Can be any
906
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
907
+ # @param [Google::Apis::RequestOptions] options
908
+ # Request-specific options
909
+ #
910
+ # @yield [result, err] Result & error if block supplied
911
+ # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaLiftSuspensionResponse] parsed result object
912
+ # @yieldparam err [StandardError] error object if request failed
913
+ #
914
+ # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaLiftSuspensionResponse]
915
+ #
916
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
917
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
918
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
919
+ def lift_project_location_integration_execution_suspension(name, google_cloud_integrations_v1alpha_lift_suspension_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
920
+ command = make_simple_command(:post, 'v1alpha/{+name}:lift', options)
921
+ command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaLiftSuspensionRequest::Representation
922
+ command.request_object = google_cloud_integrations_v1alpha_lift_suspension_request_object
923
+ command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaLiftSuspensionResponse::Representation
924
+ command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaLiftSuspensionResponse
925
+ command.params['name'] = name unless name.nil?
926
+ command.query['fields'] = fields unless fields.nil?
927
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
928
+ execute_or_queue_command(command, &block)
929
+ end
930
+
931
+ # * Lists suspensions associated with a specific execution. Only those with
932
+ # permissions to resolve the relevant suspensions will be able to view them.
933
+ # @param [String] parent
934
+ # Required. projects/`gcp_project_id`/locations/`location`/products/`product`/
935
+ # integrations/`integration_name`/executions/`execution_name`
936
+ # @param [String] filter
937
+ # Standard filter field.
938
+ # @param [String] order_by
939
+ # Field name to order by.
940
+ # @param [Fixnum] page_size
941
+ # Maximum number of entries in the response.
942
+ # @param [String] page_token
943
+ # Token to retrieve a specific page.
944
+ # @param [String] fields
945
+ # Selector specifying which fields to include in a partial response.
946
+ # @param [String] quota_user
947
+ # Available to use for quota purposes for server-side applications. Can be any
948
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
949
+ # @param [Google::Apis::RequestOptions] options
950
+ # Request-specific options
951
+ #
952
+ # @yield [result, err] Result & error if block supplied
953
+ # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListSuspensionsResponse] parsed result object
954
+ # @yieldparam err [StandardError] error object if request failed
955
+ #
956
+ # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListSuspensionsResponse]
957
+ #
958
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
959
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
960
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
961
+ def list_project_location_integration_execution_suspensions(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
962
+ command = make_simple_command(:get, 'v1alpha/{+parent}/suspensions', options)
963
+ command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListSuspensionsResponse::Representation
964
+ command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaListSuspensionsResponse
965
+ command.params['parent'] = parent unless parent.nil?
966
+ command.query['filter'] = filter unless filter.nil?
967
+ command.query['orderBy'] = order_by unless order_by.nil?
968
+ command.query['pageSize'] = page_size unless page_size.nil?
969
+ command.query['pageToken'] = page_token unless page_token.nil?
970
+ command.query['fields'] = fields unless fields.nil?
971
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
972
+ execute_or_queue_command(command, &block)
973
+ end
974
+
975
+ # * Resolves (lifts/rejects) any number of suspensions. If the integration is
976
+ # already running, only the status of the suspension is updated. Otherwise, the
977
+ # suspended integration will begin execution again.
978
+ # @param [String] name
979
+ # Required. projects/`gcp_project_id`/locations/`location`/products/`product`/
980
+ # integrations/`integration_name`/executions/`execution_name`/suspensions/`
981
+ # suspension_id`
982
+ # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaResolveSuspensionRequest] google_cloud_integrations_v1alpha_resolve_suspension_request_object
983
+ # @param [String] fields
984
+ # Selector specifying which fields to include in a partial response.
985
+ # @param [String] quota_user
986
+ # Available to use for quota purposes for server-side applications. Can be any
987
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
988
+ # @param [Google::Apis::RequestOptions] options
989
+ # Request-specific options
990
+ #
991
+ # @yield [result, err] Result & error if block supplied
992
+ # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaResolveSuspensionResponse] parsed result object
993
+ # @yieldparam err [StandardError] error object if request failed
994
+ #
995
+ # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaResolveSuspensionResponse]
996
+ #
997
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
998
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
999
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1000
+ def resolve_project_location_integration_execution_suspension(name, google_cloud_integrations_v1alpha_resolve_suspension_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1001
+ command = make_simple_command(:post, 'v1alpha/{+name}:resolve', options)
1002
+ command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaResolveSuspensionRequest::Representation
1003
+ command.request_object = google_cloud_integrations_v1alpha_resolve_suspension_request_object
1004
+ command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaResolveSuspensionResponse::Representation
1005
+ command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaResolveSuspensionResponse
1006
+ command.params['name'] = name unless name.nil?
1007
+ command.query['fields'] = fields unless fields.nil?
1008
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1009
+ execute_or_queue_command(command, &block)
1010
+ end
1011
+
927
1012
  # Soft-deletes the integration. Changes the status of the integration to
928
1013
  # ARCHIVED. If the integration being ARCHIVED is tagged as "HEAD", the tag is
929
1014
  # removed from this snapshot and set to the previous non-ARCHIVED snapshot. The
@@ -1926,39 +2011,6 @@ module Google
1926
2011
  execute_or_queue_command(command, &block)
1927
2012
  end
1928
2013
 
1929
- # Get execution stats
1930
- # @param [String] parent
1931
- # Required. The parent resource name: `parent=projects/*/locations/*`.
1932
- # @param [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest] google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
1933
- # @param [String] fields
1934
- # Selector specifying which fields to include in a partial response.
1935
- # @param [String] quota_user
1936
- # Available to use for quota purposes for server-side applications. Can be any
1937
- # arbitrary string assigned to a user, but should not exceed 40 characters.
1938
- # @param [Google::Apis::RequestOptions] options
1939
- # Request-specific options
1940
- #
1941
- # @yield [result, err] Result & error if block supplied
1942
- # @yieldparam result [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse] parsed result object
1943
- # @yieldparam err [StandardError] error object if request failed
1944
- #
1945
- # @return [Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse]
1946
- #
1947
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1948
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1949
- # @raise [Google::Apis::AuthorizationError] Authorization is required
1950
- def monitorexecutionstats_project_location_product_integration(parent, google_cloud_integrations_v1alpha_monitor_execution_stats_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1951
- command = make_simple_command(:post, 'v1alpha/{+parent}:monitorexecutionstats', options)
1952
- command.request_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsRequest::Representation
1953
- command.request_object = google_cloud_integrations_v1alpha_monitor_execution_stats_request_object
1954
- command.response_representation = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse::Representation
1955
- command.response_class = Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaMonitorExecutionStatsResponse
1956
- command.params['parent'] = parent unless parent.nil?
1957
- command.query['fields'] = fields unless fields.nil?
1958
- command.query['quotaUser'] = quota_user unless quota_user.nil?
1959
- execute_or_queue_command(command, &block)
1960
- end
1961
-
1962
2014
  # Schedules an integration for execution by passing the trigger id and the
1963
2015
  # scheduled time in the request body.
1964
2016
  # @param [String] name
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-integrations_v1alpha
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: 2023-01-04 00:00:00.000000000 Z
11
+ date: 2023-01-15 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-integrations_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-integrations_v1alpha/v0.6.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-integrations_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Application Integration API V1alpha