google-apis-analyticshub_v1beta1 0.9.0 → 0.10.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: 89031c932c9a4f019fe61ac9ff591d9999f6a4b3344f713c9ad10b857e529908
4
- data.tar.gz: 8c72b1bc03ef25ff40de5cda02821432a81259a7b3aa74f9d9c9250922b409c8
3
+ metadata.gz: a10545dc6ec8385fae3773c4ff868dd767c6aa6f9118b546bdbdd1e4c9430a7b
4
+ data.tar.gz: 8cfdb2fd1309e4d639d1cb6f46737118145af873a90bae514b19eeb3b6fd65eb
5
5
  SHA512:
6
- metadata.gz: b041b34dd264d0a9e977fbcbc42e1b23feff941b23a1ad7e12ac95d531f860c327805bb0360eab2e675374b5af57f70bfa2008fccf4d04cd70ab7e24366a919f
7
- data.tar.gz: 0561e8855b91ddb188a09bccf613d1ca11c429e40f77696f02e106f59f8b286612bd2870a0b997642abe90ec26fcfa4f9ad43f379aaac0078913b44429237576
6
+ metadata.gz: f14080c066fa86d496c402b30831b1b95a0a1ab784813ae8e2a425cdd5ccd2944683efdb4c2ef0c61a9fa0dd7434551b4b583fd86706642ed256e2b156b93409
7
+ data.tar.gz: 55501c9a74360f9bbd75c91955516ef86362223369ade1a27c6b0a92c946832119c5b4a7c507db342d5389506d37a5ba217d8ccd2edd0f903a74e412458580ea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-analyticshub_v1beta1
2
2
 
3
+ ### v0.10.0 (2022-09-13)
4
+
5
+ * Regenerated from discovery document revision 20220909
6
+
3
7
  ### v0.9.0 (2022-09-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20220902
@@ -530,31 +530,6 @@ module Google
530
530
  end
531
531
  end
532
532
 
533
- # The response message for Locations.ListLocations.
534
- class ListLocationsResponse
535
- include Google::Apis::Core::Hashable
536
-
537
- # A list of locations that matches the specified filter in the request.
538
- # Corresponds to the JSON property `locations`
539
- # @return [Array<Google::Apis::AnalyticshubV1beta1::Location>]
540
- attr_accessor :locations
541
-
542
- # The standard List next-page token.
543
- # Corresponds to the JSON property `nextPageToken`
544
- # @return [String]
545
- attr_accessor :next_page_token
546
-
547
- def initialize(**args)
548
- update!(**args)
549
- end
550
-
551
- # Update properties of this object
552
- def update!(**args)
553
- @locations = args[:locations] if args.key?(:locations)
554
- @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
555
- end
556
- end
557
-
558
533
  # Message for response to listing data exchanges in an organization and location.
559
534
  class ListOrgDataExchangesResponse
560
535
  include Google::Apis::Core::Hashable
@@ -686,53 +661,6 @@ module Google
686
661
  end
687
662
  end
688
663
 
689
- # A resource that represents Google Cloud Platform location.
690
- class Location
691
- include Google::Apis::Core::Hashable
692
-
693
- # The friendly name for this location, typically a nearby city name. For example,
694
- # "Tokyo".
695
- # Corresponds to the JSON property `displayName`
696
- # @return [String]
697
- attr_accessor :display_name
698
-
699
- # Cross-service attributes for the location. For example `"cloud.googleapis.com/
700
- # region": "us-east1"`
701
- # Corresponds to the JSON property `labels`
702
- # @return [Hash<String,String>]
703
- attr_accessor :labels
704
-
705
- # The canonical id for this location. For example: `"us-east1"`.
706
- # Corresponds to the JSON property `locationId`
707
- # @return [String]
708
- attr_accessor :location_id
709
-
710
- # Service-specific metadata. For example the available capacity at the given
711
- # location.
712
- # Corresponds to the JSON property `metadata`
713
- # @return [Hash<String,Object>]
714
- attr_accessor :metadata
715
-
716
- # Resource name for the location, which may vary between implementations. For
717
- # example: `"projects/example-project/locations/us-east1"`
718
- # Corresponds to the JSON property `name`
719
- # @return [String]
720
- attr_accessor :name
721
-
722
- def initialize(**args)
723
- update!(**args)
724
- end
725
-
726
- # Update properties of this object
727
- def update!(**args)
728
- @display_name = args[:display_name] if args.key?(:display_name)
729
- @labels = args[:labels] if args.key?(:labels)
730
- @location_id = args[:location_id] if args.key?(:location_id)
731
- @metadata = args[:metadata] if args.key?(:metadata)
732
- @name = args[:name] if args.key?(:name)
733
- end
734
- end
735
-
736
664
  # Represents the metadata of the long-running operation.
737
665
  class OperationMetadata
738
666
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AnalyticshubV1beta1
18
18
  # Version of the google-apis-analyticshub_v1beta1 gem
19
- GEM_VERSION = "0.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220902"
25
+ REVISION = "20220909"
26
26
  end
27
27
  end
28
28
  end
@@ -106,12 +106,6 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
- class ListLocationsResponse
110
- class Representation < Google::Apis::Core::JsonRepresentation; end
111
-
112
- include Google::Apis::Core::JsonObjectSupport
113
- end
114
-
115
109
  class ListOrgDataExchangesResponse
116
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
111
 
@@ -124,12 +118,6 @@ module Google
124
118
  include Google::Apis::Core::JsonObjectSupport
125
119
  end
126
120
 
127
- class Location
128
- class Representation < Google::Apis::Core::JsonRepresentation; end
129
-
130
- include Google::Apis::Core::JsonObjectSupport
131
- end
132
-
133
121
  class OperationMetadata
134
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
123
 
@@ -302,15 +290,6 @@ module Google
302
290
  end
303
291
  end
304
292
 
305
- class ListLocationsResponse
306
- # @private
307
- class Representation < Google::Apis::Core::JsonRepresentation
308
- collection :locations, as: 'locations', class: Google::Apis::AnalyticshubV1beta1::Location, decorator: Google::Apis::AnalyticshubV1beta1::Location::Representation
309
-
310
- property :next_page_token, as: 'nextPageToken'
311
- end
312
- end
313
-
314
293
  class ListOrgDataExchangesResponse
315
294
  # @private
316
295
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -341,17 +320,6 @@ module Google
341
320
  end
342
321
  end
343
322
 
344
- class Location
345
- # @private
346
- class Representation < Google::Apis::Core::JsonRepresentation
347
- property :display_name, as: 'displayName'
348
- hash :labels, as: 'labels'
349
- property :location_id, as: 'locationId'
350
- hash :metadata, as: 'metadata'
351
- property :name, as: 'name'
352
- end
353
- end
354
-
355
323
  class OperationMetadata
356
324
  # @private
357
325
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -87,79 +87,6 @@ module Google
87
87
  execute_or_queue_command(command, &block)
88
88
  end
89
89
 
90
- # Gets information about a location.
91
- # @param [String] name
92
- # Resource name for the location.
93
- # @param [String] fields
94
- # Selector specifying which fields to include in a partial response.
95
- # @param [String] quota_user
96
- # Available to use for quota purposes for server-side applications. Can be any
97
- # arbitrary string assigned to a user, but should not exceed 40 characters.
98
- # @param [Google::Apis::RequestOptions] options
99
- # Request-specific options
100
- #
101
- # @yield [result, err] Result & error if block supplied
102
- # @yieldparam result [Google::Apis::AnalyticshubV1beta1::Location] parsed result object
103
- # @yieldparam err [StandardError] error object if request failed
104
- #
105
- # @return [Google::Apis::AnalyticshubV1beta1::Location]
106
- #
107
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
108
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
109
- # @raise [Google::Apis::AuthorizationError] Authorization is required
110
- def get_project_location(name, fields: nil, quota_user: nil, options: nil, &block)
111
- command = make_simple_command(:get, 'v1beta1/{+name}', options)
112
- command.response_representation = Google::Apis::AnalyticshubV1beta1::Location::Representation
113
- command.response_class = Google::Apis::AnalyticshubV1beta1::Location
114
- command.params['name'] = name unless name.nil?
115
- command.query['fields'] = fields unless fields.nil?
116
- command.query['quotaUser'] = quota_user unless quota_user.nil?
117
- execute_or_queue_command(command, &block)
118
- end
119
-
120
- # Lists information about the supported locations for this service.
121
- # @param [String] name
122
- # The resource that owns the locations collection, if applicable.
123
- # @param [String] filter
124
- # A filter to narrow down results to a preferred subset. The filtering language
125
- # accepts strings like `"displayName=tokyo"`, and is documented in more detail
126
- # in [AIP-160](https://google.aip.dev/160).
127
- # @param [Fixnum] page_size
128
- # The maximum number of results to return. If not set, the service selects a
129
- # default.
130
- # @param [String] page_token
131
- # A page token received from the `next_page_token` field in the response. Send
132
- # that page token to receive the subsequent page.
133
- # @param [String] fields
134
- # Selector specifying which fields to include in a partial response.
135
- # @param [String] quota_user
136
- # Available to use for quota purposes for server-side applications. Can be any
137
- # arbitrary string assigned to a user, but should not exceed 40 characters.
138
- # @param [Google::Apis::RequestOptions] options
139
- # Request-specific options
140
- #
141
- # @yield [result, err] Result & error if block supplied
142
- # @yieldparam result [Google::Apis::AnalyticshubV1beta1::ListLocationsResponse] parsed result object
143
- # @yieldparam err [StandardError] error object if request failed
144
- #
145
- # @return [Google::Apis::AnalyticshubV1beta1::ListLocationsResponse]
146
- #
147
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
148
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
149
- # @raise [Google::Apis::AuthorizationError] Authorization is required
150
- def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
151
- command = make_simple_command(:get, 'v1beta1/{+name}/locations', options)
152
- command.response_representation = Google::Apis::AnalyticshubV1beta1::ListLocationsResponse::Representation
153
- command.response_class = Google::Apis::AnalyticshubV1beta1::ListLocationsResponse
154
- command.params['name'] = name unless name.nil?
155
- command.query['filter'] = filter unless filter.nil?
156
- command.query['pageSize'] = page_size unless page_size.nil?
157
- command.query['pageToken'] = page_token unless page_token.nil?
158
- command.query['fields'] = fields unless fields.nil?
159
- command.query['quotaUser'] = quota_user unless quota_user.nil?
160
- execute_or_queue_command(command, &block)
161
- end
162
-
163
90
  # Creates a new data exchange.
164
91
  # @param [String] parent
165
92
  # Required. The parent resource path of the data exchange. e.g. `projects/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticshub_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.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-09-12 00:00:00.000000000 Z
11
+ date: 2022-09-19 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-analyticshub_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1beta1/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []