google-analytics-admin-v1alpha 0.36.1 → 0.38.1
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 +4 -4
 - data/lib/google/analytics/admin/v1alpha/analytics_admin_pb.rb +2 -12
 - data/lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb +133 -549
 - data/lib/google/analytics/admin/v1alpha/analytics_admin_service/paths.rb +14 -0
 - data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb +106 -552
 - data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb +61 -359
 - data/lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb +5 -25
 - data/lib/google/analytics/admin/v1alpha/resources_pb.rb +3 -2
 - data/lib/google/analytics/admin/v1alpha/version.rb +1 -1
 - data/proto_docs/google/analytics/admin/v1alpha/analytics_admin.rb +28 -132
 - data/proto_docs/google/analytics/admin/v1alpha/resources.rb +73 -49
 - metadata +3 -3
 
| 
         @@ -4233,86 +4233,6 @@ module Google 
     | 
|
| 
       4233 
4233 
     | 
    
         
             
                            end
         
     | 
| 
       4234 
4234 
     | 
    
         
             
                          end
         
     | 
| 
       4235 
4235 
     | 
    
         | 
| 
       4236 
     | 
    
         
            -
                          ##
         
     | 
| 
       4237 
     | 
    
         
            -
                          # Baseline implementation for the set_automated_ga4_configuration_opt_out REST call
         
     | 
| 
       4238 
     | 
    
         
            -
                          #
         
     | 
| 
       4239 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::SetAutomatedGa4ConfigurationOptOutRequest]
         
     | 
| 
       4240 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       4241 
     | 
    
         
            -
                          # @param options [::Gapic::CallOptions]
         
     | 
| 
       4242 
     | 
    
         
            -
                          #   Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
         
     | 
| 
       4243 
     | 
    
         
            -
                          #
         
     | 
| 
       4244 
     | 
    
         
            -
                          # @yield [result, operation] Access the result along with the TransportOperation object
         
     | 
| 
       4245 
     | 
    
         
            -
                          # @yieldparam result [::Google::Analytics::Admin::V1alpha::SetAutomatedGa4ConfigurationOptOutResponse]
         
     | 
| 
       4246 
     | 
    
         
            -
                          # @yieldparam operation [::Gapic::Rest::TransportOperation]
         
     | 
| 
       4247 
     | 
    
         
            -
                          #
         
     | 
| 
       4248 
     | 
    
         
            -
                          # @return [::Google::Analytics::Admin::V1alpha::SetAutomatedGa4ConfigurationOptOutResponse]
         
     | 
| 
       4249 
     | 
    
         
            -
                          #   A result object deserialized from the server's reply
         
     | 
| 
       4250 
     | 
    
         
            -
                          def set_automated_ga4_configuration_opt_out request_pb, options = nil
         
     | 
| 
       4251 
     | 
    
         
            -
                            raise ::ArgumentError, "request must be provided" if request_pb.nil?
         
     | 
| 
       4252 
     | 
    
         
            -
             
     | 
| 
       4253 
     | 
    
         
            -
                            verb, uri, query_string_params, body = ServiceStub.transcode_set_automated_ga4_configuration_opt_out_request request_pb
         
     | 
| 
       4254 
     | 
    
         
            -
                            query_string_params = if query_string_params.any?
         
     | 
| 
       4255 
     | 
    
         
            -
                                                    query_string_params.to_h { |p| p.split "=", 2 }
         
     | 
| 
       4256 
     | 
    
         
            -
                                                  else
         
     | 
| 
       4257 
     | 
    
         
            -
                                                    {}
         
     | 
| 
       4258 
     | 
    
         
            -
                                                  end
         
     | 
| 
       4259 
     | 
    
         
            -
             
     | 
| 
       4260 
     | 
    
         
            -
                            response = @client_stub.make_http_request(
         
     | 
| 
       4261 
     | 
    
         
            -
                              verb,
         
     | 
| 
       4262 
     | 
    
         
            -
                              uri: uri,
         
     | 
| 
       4263 
     | 
    
         
            -
                              body: body || "",
         
     | 
| 
       4264 
     | 
    
         
            -
                              params: query_string_params,
         
     | 
| 
       4265 
     | 
    
         
            -
                              method_name: "set_automated_ga4_configuration_opt_out",
         
     | 
| 
       4266 
     | 
    
         
            -
                              options: options
         
     | 
| 
       4267 
     | 
    
         
            -
                            )
         
     | 
| 
       4268 
     | 
    
         
            -
                            operation = ::Gapic::Rest::TransportOperation.new response
         
     | 
| 
       4269 
     | 
    
         
            -
                            result = ::Google::Analytics::Admin::V1alpha::SetAutomatedGa4ConfigurationOptOutResponse.decode_json response.body, ignore_unknown_fields: true
         
     | 
| 
       4270 
     | 
    
         
            -
                            catch :response do
         
     | 
| 
       4271 
     | 
    
         
            -
                              yield result, operation if block_given?
         
     | 
| 
       4272 
     | 
    
         
            -
                              result
         
     | 
| 
       4273 
     | 
    
         
            -
                            end
         
     | 
| 
       4274 
     | 
    
         
            -
                          end
         
     | 
| 
       4275 
     | 
    
         
            -
             
     | 
| 
       4276 
     | 
    
         
            -
                          ##
         
     | 
| 
       4277 
     | 
    
         
            -
                          # Baseline implementation for the fetch_automated_ga4_configuration_opt_out REST call
         
     | 
| 
       4278 
     | 
    
         
            -
                          #
         
     | 
| 
       4279 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::FetchAutomatedGa4ConfigurationOptOutRequest]
         
     | 
| 
       4280 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       4281 
     | 
    
         
            -
                          # @param options [::Gapic::CallOptions]
         
     | 
| 
       4282 
     | 
    
         
            -
                          #   Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
         
     | 
| 
       4283 
     | 
    
         
            -
                          #
         
     | 
| 
       4284 
     | 
    
         
            -
                          # @yield [result, operation] Access the result along with the TransportOperation object
         
     | 
| 
       4285 
     | 
    
         
            -
                          # @yieldparam result [::Google::Analytics::Admin::V1alpha::FetchAutomatedGa4ConfigurationOptOutResponse]
         
     | 
| 
       4286 
     | 
    
         
            -
                          # @yieldparam operation [::Gapic::Rest::TransportOperation]
         
     | 
| 
       4287 
     | 
    
         
            -
                          #
         
     | 
| 
       4288 
     | 
    
         
            -
                          # @return [::Google::Analytics::Admin::V1alpha::FetchAutomatedGa4ConfigurationOptOutResponse]
         
     | 
| 
       4289 
     | 
    
         
            -
                          #   A result object deserialized from the server's reply
         
     | 
| 
       4290 
     | 
    
         
            -
                          def fetch_automated_ga4_configuration_opt_out request_pb, options = nil
         
     | 
| 
       4291 
     | 
    
         
            -
                            raise ::ArgumentError, "request must be provided" if request_pb.nil?
         
     | 
| 
       4292 
     | 
    
         
            -
             
     | 
| 
       4293 
     | 
    
         
            -
                            verb, uri, query_string_params, body = ServiceStub.transcode_fetch_automated_ga4_configuration_opt_out_request request_pb
         
     | 
| 
       4294 
     | 
    
         
            -
                            query_string_params = if query_string_params.any?
         
     | 
| 
       4295 
     | 
    
         
            -
                                                    query_string_params.to_h { |p| p.split "=", 2 }
         
     | 
| 
       4296 
     | 
    
         
            -
                                                  else
         
     | 
| 
       4297 
     | 
    
         
            -
                                                    {}
         
     | 
| 
       4298 
     | 
    
         
            -
                                                  end
         
     | 
| 
       4299 
     | 
    
         
            -
             
     | 
| 
       4300 
     | 
    
         
            -
                            response = @client_stub.make_http_request(
         
     | 
| 
       4301 
     | 
    
         
            -
                              verb,
         
     | 
| 
       4302 
     | 
    
         
            -
                              uri: uri,
         
     | 
| 
       4303 
     | 
    
         
            -
                              body: body || "",
         
     | 
| 
       4304 
     | 
    
         
            -
                              params: query_string_params,
         
     | 
| 
       4305 
     | 
    
         
            -
                              method_name: "fetch_automated_ga4_configuration_opt_out",
         
     | 
| 
       4306 
     | 
    
         
            -
                              options: options
         
     | 
| 
       4307 
     | 
    
         
            -
                            )
         
     | 
| 
       4308 
     | 
    
         
            -
                            operation = ::Gapic::Rest::TransportOperation.new response
         
     | 
| 
       4309 
     | 
    
         
            -
                            result = ::Google::Analytics::Admin::V1alpha::FetchAutomatedGa4ConfigurationOptOutResponse.decode_json response.body, ignore_unknown_fields: true
         
     | 
| 
       4310 
     | 
    
         
            -
                            catch :response do
         
     | 
| 
       4311 
     | 
    
         
            -
                              yield result, operation if block_given?
         
     | 
| 
       4312 
     | 
    
         
            -
                              result
         
     | 
| 
       4313 
     | 
    
         
            -
                            end
         
     | 
| 
       4314 
     | 
    
         
            -
                          end
         
     | 
| 
       4315 
     | 
    
         
            -
             
     | 
| 
       4316 
4236 
     | 
    
         
             
                          ##
         
     | 
| 
       4317 
4237 
     | 
    
         
             
                          # Baseline implementation for the create_big_query_link REST call
         
     | 
| 
       4318 
4238 
     | 
    
         
             
                          #
         
     | 
| 
         @@ -4593,166 +4513,6 @@ module Google 
     | 
|
| 
       4593 
4513 
     | 
    
         
             
                            end
         
     | 
| 
       4594 
4514 
     | 
    
         
             
                          end
         
     | 
| 
       4595 
4515 
     | 
    
         | 
| 
       4596 
     | 
    
         
            -
                          ##
         
     | 
| 
       4597 
     | 
    
         
            -
                          # Baseline implementation for the create_connected_site_tag REST call
         
     | 
| 
       4598 
     | 
    
         
            -
                          #
         
     | 
| 
       4599 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::CreateConnectedSiteTagRequest]
         
     | 
| 
       4600 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       4601 
     | 
    
         
            -
                          # @param options [::Gapic::CallOptions]
         
     | 
| 
       4602 
     | 
    
         
            -
                          #   Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
         
     | 
| 
       4603 
     | 
    
         
            -
                          #
         
     | 
| 
       4604 
     | 
    
         
            -
                          # @yield [result, operation] Access the result along with the TransportOperation object
         
     | 
| 
       4605 
     | 
    
         
            -
                          # @yieldparam result [::Google::Analytics::Admin::V1alpha::CreateConnectedSiteTagResponse]
         
     | 
| 
       4606 
     | 
    
         
            -
                          # @yieldparam operation [::Gapic::Rest::TransportOperation]
         
     | 
| 
       4607 
     | 
    
         
            -
                          #
         
     | 
| 
       4608 
     | 
    
         
            -
                          # @return [::Google::Analytics::Admin::V1alpha::CreateConnectedSiteTagResponse]
         
     | 
| 
       4609 
     | 
    
         
            -
                          #   A result object deserialized from the server's reply
         
     | 
| 
       4610 
     | 
    
         
            -
                          def create_connected_site_tag request_pb, options = nil
         
     | 
| 
       4611 
     | 
    
         
            -
                            raise ::ArgumentError, "request must be provided" if request_pb.nil?
         
     | 
| 
       4612 
     | 
    
         
            -
             
     | 
| 
       4613 
     | 
    
         
            -
                            verb, uri, query_string_params, body = ServiceStub.transcode_create_connected_site_tag_request request_pb
         
     | 
| 
       4614 
     | 
    
         
            -
                            query_string_params = if query_string_params.any?
         
     | 
| 
       4615 
     | 
    
         
            -
                                                    query_string_params.to_h { |p| p.split "=", 2 }
         
     | 
| 
       4616 
     | 
    
         
            -
                                                  else
         
     | 
| 
       4617 
     | 
    
         
            -
                                                    {}
         
     | 
| 
       4618 
     | 
    
         
            -
                                                  end
         
     | 
| 
       4619 
     | 
    
         
            -
             
     | 
| 
       4620 
     | 
    
         
            -
                            response = @client_stub.make_http_request(
         
     | 
| 
       4621 
     | 
    
         
            -
                              verb,
         
     | 
| 
       4622 
     | 
    
         
            -
                              uri: uri,
         
     | 
| 
       4623 
     | 
    
         
            -
                              body: body || "",
         
     | 
| 
       4624 
     | 
    
         
            -
                              params: query_string_params,
         
     | 
| 
       4625 
     | 
    
         
            -
                              method_name: "create_connected_site_tag",
         
     | 
| 
       4626 
     | 
    
         
            -
                              options: options
         
     | 
| 
       4627 
     | 
    
         
            -
                            )
         
     | 
| 
       4628 
     | 
    
         
            -
                            operation = ::Gapic::Rest::TransportOperation.new response
         
     | 
| 
       4629 
     | 
    
         
            -
                            result = ::Google::Analytics::Admin::V1alpha::CreateConnectedSiteTagResponse.decode_json response.body, ignore_unknown_fields: true
         
     | 
| 
       4630 
     | 
    
         
            -
                            catch :response do
         
     | 
| 
       4631 
     | 
    
         
            -
                              yield result, operation if block_given?
         
     | 
| 
       4632 
     | 
    
         
            -
                              result
         
     | 
| 
       4633 
     | 
    
         
            -
                            end
         
     | 
| 
       4634 
     | 
    
         
            -
                          end
         
     | 
| 
       4635 
     | 
    
         
            -
             
     | 
| 
       4636 
     | 
    
         
            -
                          ##
         
     | 
| 
       4637 
     | 
    
         
            -
                          # Baseline implementation for the delete_connected_site_tag REST call
         
     | 
| 
       4638 
     | 
    
         
            -
                          #
         
     | 
| 
       4639 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::DeleteConnectedSiteTagRequest]
         
     | 
| 
       4640 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       4641 
     | 
    
         
            -
                          # @param options [::Gapic::CallOptions]
         
     | 
| 
       4642 
     | 
    
         
            -
                          #   Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
         
     | 
| 
       4643 
     | 
    
         
            -
                          #
         
     | 
| 
       4644 
     | 
    
         
            -
                          # @yield [result, operation] Access the result along with the TransportOperation object
         
     | 
| 
       4645 
     | 
    
         
            -
                          # @yieldparam result [::Google::Protobuf::Empty]
         
     | 
| 
       4646 
     | 
    
         
            -
                          # @yieldparam operation [::Gapic::Rest::TransportOperation]
         
     | 
| 
       4647 
     | 
    
         
            -
                          #
         
     | 
| 
       4648 
     | 
    
         
            -
                          # @return [::Google::Protobuf::Empty]
         
     | 
| 
       4649 
     | 
    
         
            -
                          #   A result object deserialized from the server's reply
         
     | 
| 
       4650 
     | 
    
         
            -
                          def delete_connected_site_tag request_pb, options = nil
         
     | 
| 
       4651 
     | 
    
         
            -
                            raise ::ArgumentError, "request must be provided" if request_pb.nil?
         
     | 
| 
       4652 
     | 
    
         
            -
             
     | 
| 
       4653 
     | 
    
         
            -
                            verb, uri, query_string_params, body = ServiceStub.transcode_delete_connected_site_tag_request request_pb
         
     | 
| 
       4654 
     | 
    
         
            -
                            query_string_params = if query_string_params.any?
         
     | 
| 
       4655 
     | 
    
         
            -
                                                    query_string_params.to_h { |p| p.split "=", 2 }
         
     | 
| 
       4656 
     | 
    
         
            -
                                                  else
         
     | 
| 
       4657 
     | 
    
         
            -
                                                    {}
         
     | 
| 
       4658 
     | 
    
         
            -
                                                  end
         
     | 
| 
       4659 
     | 
    
         
            -
             
     | 
| 
       4660 
     | 
    
         
            -
                            response = @client_stub.make_http_request(
         
     | 
| 
       4661 
     | 
    
         
            -
                              verb,
         
     | 
| 
       4662 
     | 
    
         
            -
                              uri: uri,
         
     | 
| 
       4663 
     | 
    
         
            -
                              body: body || "",
         
     | 
| 
       4664 
     | 
    
         
            -
                              params: query_string_params,
         
     | 
| 
       4665 
     | 
    
         
            -
                              method_name: "delete_connected_site_tag",
         
     | 
| 
       4666 
     | 
    
         
            -
                              options: options
         
     | 
| 
       4667 
     | 
    
         
            -
                            )
         
     | 
| 
       4668 
     | 
    
         
            -
                            operation = ::Gapic::Rest::TransportOperation.new response
         
     | 
| 
       4669 
     | 
    
         
            -
                            result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
         
     | 
| 
       4670 
     | 
    
         
            -
                            catch :response do
         
     | 
| 
       4671 
     | 
    
         
            -
                              yield result, operation if block_given?
         
     | 
| 
       4672 
     | 
    
         
            -
                              result
         
     | 
| 
       4673 
     | 
    
         
            -
                            end
         
     | 
| 
       4674 
     | 
    
         
            -
                          end
         
     | 
| 
       4675 
     | 
    
         
            -
             
     | 
| 
       4676 
     | 
    
         
            -
                          ##
         
     | 
| 
       4677 
     | 
    
         
            -
                          # Baseline implementation for the list_connected_site_tags REST call
         
     | 
| 
       4678 
     | 
    
         
            -
                          #
         
     | 
| 
       4679 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::ListConnectedSiteTagsRequest]
         
     | 
| 
       4680 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       4681 
     | 
    
         
            -
                          # @param options [::Gapic::CallOptions]
         
     | 
| 
       4682 
     | 
    
         
            -
                          #   Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
         
     | 
| 
       4683 
     | 
    
         
            -
                          #
         
     | 
| 
       4684 
     | 
    
         
            -
                          # @yield [result, operation] Access the result along with the TransportOperation object
         
     | 
| 
       4685 
     | 
    
         
            -
                          # @yieldparam result [::Google::Analytics::Admin::V1alpha::ListConnectedSiteTagsResponse]
         
     | 
| 
       4686 
     | 
    
         
            -
                          # @yieldparam operation [::Gapic::Rest::TransportOperation]
         
     | 
| 
       4687 
     | 
    
         
            -
                          #
         
     | 
| 
       4688 
     | 
    
         
            -
                          # @return [::Google::Analytics::Admin::V1alpha::ListConnectedSiteTagsResponse]
         
     | 
| 
       4689 
     | 
    
         
            -
                          #   A result object deserialized from the server's reply
         
     | 
| 
       4690 
     | 
    
         
            -
                          def list_connected_site_tags request_pb, options = nil
         
     | 
| 
       4691 
     | 
    
         
            -
                            raise ::ArgumentError, "request must be provided" if request_pb.nil?
         
     | 
| 
       4692 
     | 
    
         
            -
             
     | 
| 
       4693 
     | 
    
         
            -
                            verb, uri, query_string_params, body = ServiceStub.transcode_list_connected_site_tags_request request_pb
         
     | 
| 
       4694 
     | 
    
         
            -
                            query_string_params = if query_string_params.any?
         
     | 
| 
       4695 
     | 
    
         
            -
                                                    query_string_params.to_h { |p| p.split "=", 2 }
         
     | 
| 
       4696 
     | 
    
         
            -
                                                  else
         
     | 
| 
       4697 
     | 
    
         
            -
                                                    {}
         
     | 
| 
       4698 
     | 
    
         
            -
                                                  end
         
     | 
| 
       4699 
     | 
    
         
            -
             
     | 
| 
       4700 
     | 
    
         
            -
                            response = @client_stub.make_http_request(
         
     | 
| 
       4701 
     | 
    
         
            -
                              verb,
         
     | 
| 
       4702 
     | 
    
         
            -
                              uri: uri,
         
     | 
| 
       4703 
     | 
    
         
            -
                              body: body || "",
         
     | 
| 
       4704 
     | 
    
         
            -
                              params: query_string_params,
         
     | 
| 
       4705 
     | 
    
         
            -
                              method_name: "list_connected_site_tags",
         
     | 
| 
       4706 
     | 
    
         
            -
                              options: options
         
     | 
| 
       4707 
     | 
    
         
            -
                            )
         
     | 
| 
       4708 
     | 
    
         
            -
                            operation = ::Gapic::Rest::TransportOperation.new response
         
     | 
| 
       4709 
     | 
    
         
            -
                            result = ::Google::Analytics::Admin::V1alpha::ListConnectedSiteTagsResponse.decode_json response.body, ignore_unknown_fields: true
         
     | 
| 
       4710 
     | 
    
         
            -
                            catch :response do
         
     | 
| 
       4711 
     | 
    
         
            -
                              yield result, operation if block_given?
         
     | 
| 
       4712 
     | 
    
         
            -
                              result
         
     | 
| 
       4713 
     | 
    
         
            -
                            end
         
     | 
| 
       4714 
     | 
    
         
            -
                          end
         
     | 
| 
       4715 
     | 
    
         
            -
             
     | 
| 
       4716 
     | 
    
         
            -
                          ##
         
     | 
| 
       4717 
     | 
    
         
            -
                          # Baseline implementation for the fetch_connected_ga4_property REST call
         
     | 
| 
       4718 
     | 
    
         
            -
                          #
         
     | 
| 
       4719 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::FetchConnectedGa4PropertyRequest]
         
     | 
| 
       4720 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       4721 
     | 
    
         
            -
                          # @param options [::Gapic::CallOptions]
         
     | 
| 
       4722 
     | 
    
         
            -
                          #   Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
         
     | 
| 
       4723 
     | 
    
         
            -
                          #
         
     | 
| 
       4724 
     | 
    
         
            -
                          # @yield [result, operation] Access the result along with the TransportOperation object
         
     | 
| 
       4725 
     | 
    
         
            -
                          # @yieldparam result [::Google::Analytics::Admin::V1alpha::FetchConnectedGa4PropertyResponse]
         
     | 
| 
       4726 
     | 
    
         
            -
                          # @yieldparam operation [::Gapic::Rest::TransportOperation]
         
     | 
| 
       4727 
     | 
    
         
            -
                          #
         
     | 
| 
       4728 
     | 
    
         
            -
                          # @return [::Google::Analytics::Admin::V1alpha::FetchConnectedGa4PropertyResponse]
         
     | 
| 
       4729 
     | 
    
         
            -
                          #   A result object deserialized from the server's reply
         
     | 
| 
       4730 
     | 
    
         
            -
                          def fetch_connected_ga4_property request_pb, options = nil
         
     | 
| 
       4731 
     | 
    
         
            -
                            raise ::ArgumentError, "request must be provided" if request_pb.nil?
         
     | 
| 
       4732 
     | 
    
         
            -
             
     | 
| 
       4733 
     | 
    
         
            -
                            verb, uri, query_string_params, body = ServiceStub.transcode_fetch_connected_ga4_property_request request_pb
         
     | 
| 
       4734 
     | 
    
         
            -
                            query_string_params = if query_string_params.any?
         
     | 
| 
       4735 
     | 
    
         
            -
                                                    query_string_params.to_h { |p| p.split "=", 2 }
         
     | 
| 
       4736 
     | 
    
         
            -
                                                  else
         
     | 
| 
       4737 
     | 
    
         
            -
                                                    {}
         
     | 
| 
       4738 
     | 
    
         
            -
                                                  end
         
     | 
| 
       4739 
     | 
    
         
            -
             
     | 
| 
       4740 
     | 
    
         
            -
                            response = @client_stub.make_http_request(
         
     | 
| 
       4741 
     | 
    
         
            -
                              verb,
         
     | 
| 
       4742 
     | 
    
         
            -
                              uri: uri,
         
     | 
| 
       4743 
     | 
    
         
            -
                              body: body || "",
         
     | 
| 
       4744 
     | 
    
         
            -
                              params: query_string_params,
         
     | 
| 
       4745 
     | 
    
         
            -
                              method_name: "fetch_connected_ga4_property",
         
     | 
| 
       4746 
     | 
    
         
            -
                              options: options
         
     | 
| 
       4747 
     | 
    
         
            -
                            )
         
     | 
| 
       4748 
     | 
    
         
            -
                            operation = ::Gapic::Rest::TransportOperation.new response
         
     | 
| 
       4749 
     | 
    
         
            -
                            result = ::Google::Analytics::Admin::V1alpha::FetchConnectedGa4PropertyResponse.decode_json response.body, ignore_unknown_fields: true
         
     | 
| 
       4750 
     | 
    
         
            -
                            catch :response do
         
     | 
| 
       4751 
     | 
    
         
            -
                              yield result, operation if block_given?
         
     | 
| 
       4752 
     | 
    
         
            -
                              result
         
     | 
| 
       4753 
     | 
    
         
            -
                            end
         
     | 
| 
       4754 
     | 
    
         
            -
                          end
         
     | 
| 
       4755 
     | 
    
         
            -
             
     | 
| 
       4756 
4516 
     | 
    
         
             
                          ##
         
     | 
| 
       4757 
4517 
     | 
    
         
             
                          # Baseline implementation for the get_ad_sense_link REST call
         
     | 
| 
       4758 
4518 
     | 
    
         
             
                          #
         
     | 
| 
         @@ -6433,6 +6193,46 @@ module Google 
     | 
|
| 
       6433 
6193 
     | 
    
         
             
                            end
         
     | 
| 
       6434 
6194 
     | 
    
         
             
                          end
         
     | 
| 
       6435 
6195 
     | 
    
         | 
| 
      
 6196 
     | 
    
         
            +
                          ##
         
     | 
| 
      
 6197 
     | 
    
         
            +
                          # Baseline implementation for the get_reporting_identity_settings REST call
         
     | 
| 
      
 6198 
     | 
    
         
            +
                          #
         
     | 
| 
      
 6199 
     | 
    
         
            +
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::GetReportingIdentitySettingsRequest]
         
     | 
| 
      
 6200 
     | 
    
         
            +
                          #   A request object representing the call parameters. Required.
         
     | 
| 
      
 6201 
     | 
    
         
            +
                          # @param options [::Gapic::CallOptions]
         
     | 
| 
      
 6202 
     | 
    
         
            +
                          #   Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
         
     | 
| 
      
 6203 
     | 
    
         
            +
                          #
         
     | 
| 
      
 6204 
     | 
    
         
            +
                          # @yield [result, operation] Access the result along with the TransportOperation object
         
     | 
| 
      
 6205 
     | 
    
         
            +
                          # @yieldparam result [::Google::Analytics::Admin::V1alpha::ReportingIdentitySettings]
         
     | 
| 
      
 6206 
     | 
    
         
            +
                          # @yieldparam operation [::Gapic::Rest::TransportOperation]
         
     | 
| 
      
 6207 
     | 
    
         
            +
                          #
         
     | 
| 
      
 6208 
     | 
    
         
            +
                          # @return [::Google::Analytics::Admin::V1alpha::ReportingIdentitySettings]
         
     | 
| 
      
 6209 
     | 
    
         
            +
                          #   A result object deserialized from the server's reply
         
     | 
| 
      
 6210 
     | 
    
         
            +
                          def get_reporting_identity_settings request_pb, options = nil
         
     | 
| 
      
 6211 
     | 
    
         
            +
                            raise ::ArgumentError, "request must be provided" if request_pb.nil?
         
     | 
| 
      
 6212 
     | 
    
         
            +
             
     | 
| 
      
 6213 
     | 
    
         
            +
                            verb, uri, query_string_params, body = ServiceStub.transcode_get_reporting_identity_settings_request request_pb
         
     | 
| 
      
 6214 
     | 
    
         
            +
                            query_string_params = if query_string_params.any?
         
     | 
| 
      
 6215 
     | 
    
         
            +
                                                    query_string_params.to_h { |p| p.split "=", 2 }
         
     | 
| 
      
 6216 
     | 
    
         
            +
                                                  else
         
     | 
| 
      
 6217 
     | 
    
         
            +
                                                    {}
         
     | 
| 
      
 6218 
     | 
    
         
            +
                                                  end
         
     | 
| 
      
 6219 
     | 
    
         
            +
             
     | 
| 
      
 6220 
     | 
    
         
            +
                            response = @client_stub.make_http_request(
         
     | 
| 
      
 6221 
     | 
    
         
            +
                              verb,
         
     | 
| 
      
 6222 
     | 
    
         
            +
                              uri: uri,
         
     | 
| 
      
 6223 
     | 
    
         
            +
                              body: body || "",
         
     | 
| 
      
 6224 
     | 
    
         
            +
                              params: query_string_params,
         
     | 
| 
      
 6225 
     | 
    
         
            +
                              method_name: "get_reporting_identity_settings",
         
     | 
| 
      
 6226 
     | 
    
         
            +
                              options: options
         
     | 
| 
      
 6227 
     | 
    
         
            +
                            )
         
     | 
| 
      
 6228 
     | 
    
         
            +
                            operation = ::Gapic::Rest::TransportOperation.new response
         
     | 
| 
      
 6229 
     | 
    
         
            +
                            result = ::Google::Analytics::Admin::V1alpha::ReportingIdentitySettings.decode_json response.body, ignore_unknown_fields: true
         
     | 
| 
      
 6230 
     | 
    
         
            +
                            catch :response do
         
     | 
| 
      
 6231 
     | 
    
         
            +
                              yield result, operation if block_given?
         
     | 
| 
      
 6232 
     | 
    
         
            +
                              result
         
     | 
| 
      
 6233 
     | 
    
         
            +
                            end
         
     | 
| 
      
 6234 
     | 
    
         
            +
                          end
         
     | 
| 
      
 6235 
     | 
    
         
            +
             
     | 
| 
       6436 
6236 
     | 
    
         
             
                          ##
         
     | 
| 
       6437 
6237 
     | 
    
         
             
                          # @private
         
     | 
| 
       6438 
6238 
     | 
    
         
             
                          #
         
     | 
| 
         @@ -8731,46 +8531,6 @@ module Google 
     | 
|
| 
       8731 
8531 
     | 
    
         
             
                            transcoder.transcode request_pb
         
     | 
| 
       8732 
8532 
     | 
    
         
             
                          end
         
     | 
| 
       8733 
8533 
     | 
    
         | 
| 
       8734 
     | 
    
         
            -
                          ##
         
     | 
| 
       8735 
     | 
    
         
            -
                          # @private
         
     | 
| 
       8736 
     | 
    
         
            -
                          #
         
     | 
| 
       8737 
     | 
    
         
            -
                          # GRPC transcoding helper method for the set_automated_ga4_configuration_opt_out REST call
         
     | 
| 
       8738 
     | 
    
         
            -
                          #
         
     | 
| 
       8739 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::SetAutomatedGa4ConfigurationOptOutRequest]
         
     | 
| 
       8740 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       8741 
     | 
    
         
            -
                          # @return [Array(String, [String, nil], Hash{String => String})]
         
     | 
| 
       8742 
     | 
    
         
            -
                          #   Uri, Body, Query string parameters
         
     | 
| 
       8743 
     | 
    
         
            -
                          def self.transcode_set_automated_ga4_configuration_opt_out_request request_pb
         
     | 
| 
       8744 
     | 
    
         
            -
                            transcoder = Gapic::Rest::GrpcTranscoder.new
         
     | 
| 
       8745 
     | 
    
         
            -
                                                                    .with_bindings(
         
     | 
| 
       8746 
     | 
    
         
            -
                                                                      uri_method: :post,
         
     | 
| 
       8747 
     | 
    
         
            -
                                                                      uri_template: "/v1alpha/properties:setAutomatedGa4ConfigurationOptOut",
         
     | 
| 
       8748 
     | 
    
         
            -
                                                                      body: "*",
         
     | 
| 
       8749 
     | 
    
         
            -
                                                                      matches: []
         
     | 
| 
       8750 
     | 
    
         
            -
                                                                    )
         
     | 
| 
       8751 
     | 
    
         
            -
                            transcoder.transcode request_pb
         
     | 
| 
       8752 
     | 
    
         
            -
                          end
         
     | 
| 
       8753 
     | 
    
         
            -
             
     | 
| 
       8754 
     | 
    
         
            -
                          ##
         
     | 
| 
       8755 
     | 
    
         
            -
                          # @private
         
     | 
| 
       8756 
     | 
    
         
            -
                          #
         
     | 
| 
       8757 
     | 
    
         
            -
                          # GRPC transcoding helper method for the fetch_automated_ga4_configuration_opt_out REST call
         
     | 
| 
       8758 
     | 
    
         
            -
                          #
         
     | 
| 
       8759 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::FetchAutomatedGa4ConfigurationOptOutRequest]
         
     | 
| 
       8760 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       8761 
     | 
    
         
            -
                          # @return [Array(String, [String, nil], Hash{String => String})]
         
     | 
| 
       8762 
     | 
    
         
            -
                          #   Uri, Body, Query string parameters
         
     | 
| 
       8763 
     | 
    
         
            -
                          def self.transcode_fetch_automated_ga4_configuration_opt_out_request request_pb
         
     | 
| 
       8764 
     | 
    
         
            -
                            transcoder = Gapic::Rest::GrpcTranscoder.new
         
     | 
| 
       8765 
     | 
    
         
            -
                                                                    .with_bindings(
         
     | 
| 
       8766 
     | 
    
         
            -
                                                                      uri_method: :post,
         
     | 
| 
       8767 
     | 
    
         
            -
                                                                      uri_template: "/v1alpha/properties:fetchAutomatedGa4ConfigurationOptOut",
         
     | 
| 
       8768 
     | 
    
         
            -
                                                                      body: "*",
         
     | 
| 
       8769 
     | 
    
         
            -
                                                                      matches: []
         
     | 
| 
       8770 
     | 
    
         
            -
                                                                    )
         
     | 
| 
       8771 
     | 
    
         
            -
                            transcoder.transcode request_pb
         
     | 
| 
       8772 
     | 
    
         
            -
                          end
         
     | 
| 
       8773 
     | 
    
         
            -
             
     | 
| 
       8774 
8534 
     | 
    
         
             
                          ##
         
     | 
| 
       8775 
8535 
     | 
    
         
             
                          # @private
         
     | 
| 
       8776 
8536 
     | 
    
         
             
                          #
         
     | 
| 
         @@ -8921,85 +8681,6 @@ module Google 
     | 
|
| 
       8921 
8681 
     | 
    
         
             
                            transcoder.transcode request_pb
         
     | 
| 
       8922 
8682 
     | 
    
         
             
                          end
         
     | 
| 
       8923 
8683 
     | 
    
         | 
| 
       8924 
     | 
    
         
            -
                          ##
         
     | 
| 
       8925 
     | 
    
         
            -
                          # @private
         
     | 
| 
       8926 
     | 
    
         
            -
                          #
         
     | 
| 
       8927 
     | 
    
         
            -
                          # GRPC transcoding helper method for the create_connected_site_tag REST call
         
     | 
| 
       8928 
     | 
    
         
            -
                          #
         
     | 
| 
       8929 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::CreateConnectedSiteTagRequest]
         
     | 
| 
       8930 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       8931 
     | 
    
         
            -
                          # @return [Array(String, [String, nil], Hash{String => String})]
         
     | 
| 
       8932 
     | 
    
         
            -
                          #   Uri, Body, Query string parameters
         
     | 
| 
       8933 
     | 
    
         
            -
                          def self.transcode_create_connected_site_tag_request request_pb
         
     | 
| 
       8934 
     | 
    
         
            -
                            transcoder = Gapic::Rest::GrpcTranscoder.new
         
     | 
| 
       8935 
     | 
    
         
            -
                                                                    .with_bindings(
         
     | 
| 
       8936 
     | 
    
         
            -
                                                                      uri_method: :post,
         
     | 
| 
       8937 
     | 
    
         
            -
                                                                      uri_template: "/v1alpha/properties:createConnectedSiteTag",
         
     | 
| 
       8938 
     | 
    
         
            -
                                                                      body: "*",
         
     | 
| 
       8939 
     | 
    
         
            -
                                                                      matches: []
         
     | 
| 
       8940 
     | 
    
         
            -
                                                                    )
         
     | 
| 
       8941 
     | 
    
         
            -
                            transcoder.transcode request_pb
         
     | 
| 
       8942 
     | 
    
         
            -
                          end
         
     | 
| 
       8943 
     | 
    
         
            -
             
     | 
| 
       8944 
     | 
    
         
            -
                          ##
         
     | 
| 
       8945 
     | 
    
         
            -
                          # @private
         
     | 
| 
       8946 
     | 
    
         
            -
                          #
         
     | 
| 
       8947 
     | 
    
         
            -
                          # GRPC transcoding helper method for the delete_connected_site_tag REST call
         
     | 
| 
       8948 
     | 
    
         
            -
                          #
         
     | 
| 
       8949 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::DeleteConnectedSiteTagRequest]
         
     | 
| 
       8950 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       8951 
     | 
    
         
            -
                          # @return [Array(String, [String, nil], Hash{String => String})]
         
     | 
| 
       8952 
     | 
    
         
            -
                          #   Uri, Body, Query string parameters
         
     | 
| 
       8953 
     | 
    
         
            -
                          def self.transcode_delete_connected_site_tag_request request_pb
         
     | 
| 
       8954 
     | 
    
         
            -
                            transcoder = Gapic::Rest::GrpcTranscoder.new
         
     | 
| 
       8955 
     | 
    
         
            -
                                                                    .with_bindings(
         
     | 
| 
       8956 
     | 
    
         
            -
                                                                      uri_method: :post,
         
     | 
| 
       8957 
     | 
    
         
            -
                                                                      uri_template: "/v1alpha/properties:deleteConnectedSiteTag",
         
     | 
| 
       8958 
     | 
    
         
            -
                                                                      body: "*",
         
     | 
| 
       8959 
     | 
    
         
            -
                                                                      matches: []
         
     | 
| 
       8960 
     | 
    
         
            -
                                                                    )
         
     | 
| 
       8961 
     | 
    
         
            -
                            transcoder.transcode request_pb
         
     | 
| 
       8962 
     | 
    
         
            -
                          end
         
     | 
| 
       8963 
     | 
    
         
            -
             
     | 
| 
       8964 
     | 
    
         
            -
                          ##
         
     | 
| 
       8965 
     | 
    
         
            -
                          # @private
         
     | 
| 
       8966 
     | 
    
         
            -
                          #
         
     | 
| 
       8967 
     | 
    
         
            -
                          # GRPC transcoding helper method for the list_connected_site_tags REST call
         
     | 
| 
       8968 
     | 
    
         
            -
                          #
         
     | 
| 
       8969 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::ListConnectedSiteTagsRequest]
         
     | 
| 
       8970 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       8971 
     | 
    
         
            -
                          # @return [Array(String, [String, nil], Hash{String => String})]
         
     | 
| 
       8972 
     | 
    
         
            -
                          #   Uri, Body, Query string parameters
         
     | 
| 
       8973 
     | 
    
         
            -
                          def self.transcode_list_connected_site_tags_request request_pb
         
     | 
| 
       8974 
     | 
    
         
            -
                            transcoder = Gapic::Rest::GrpcTranscoder.new
         
     | 
| 
       8975 
     | 
    
         
            -
                                                                    .with_bindings(
         
     | 
| 
       8976 
     | 
    
         
            -
                                                                      uri_method: :post,
         
     | 
| 
       8977 
     | 
    
         
            -
                                                                      uri_template: "/v1alpha/properties:listConnectedSiteTags",
         
     | 
| 
       8978 
     | 
    
         
            -
                                                                      body: "*",
         
     | 
| 
       8979 
     | 
    
         
            -
                                                                      matches: []
         
     | 
| 
       8980 
     | 
    
         
            -
                                                                    )
         
     | 
| 
       8981 
     | 
    
         
            -
                            transcoder.transcode request_pb
         
     | 
| 
       8982 
     | 
    
         
            -
                          end
         
     | 
| 
       8983 
     | 
    
         
            -
             
     | 
| 
       8984 
     | 
    
         
            -
                          ##
         
     | 
| 
       8985 
     | 
    
         
            -
                          # @private
         
     | 
| 
       8986 
     | 
    
         
            -
                          #
         
     | 
| 
       8987 
     | 
    
         
            -
                          # GRPC transcoding helper method for the fetch_connected_ga4_property REST call
         
     | 
| 
       8988 
     | 
    
         
            -
                          #
         
     | 
| 
       8989 
     | 
    
         
            -
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::FetchConnectedGa4PropertyRequest]
         
     | 
| 
       8990 
     | 
    
         
            -
                          #   A request object representing the call parameters. Required.
         
     | 
| 
       8991 
     | 
    
         
            -
                          # @return [Array(String, [String, nil], Hash{String => String})]
         
     | 
| 
       8992 
     | 
    
         
            -
                          #   Uri, Body, Query string parameters
         
     | 
| 
       8993 
     | 
    
         
            -
                          def self.transcode_fetch_connected_ga4_property_request request_pb
         
     | 
| 
       8994 
     | 
    
         
            -
                            transcoder = Gapic::Rest::GrpcTranscoder.new
         
     | 
| 
       8995 
     | 
    
         
            -
                                                                    .with_bindings(
         
     | 
| 
       8996 
     | 
    
         
            -
                                                                      uri_method: :get,
         
     | 
| 
       8997 
     | 
    
         
            -
                                                                      uri_template: "/v1alpha/properties:fetchConnectedGa4Property",
         
     | 
| 
       8998 
     | 
    
         
            -
                                                                      matches: []
         
     | 
| 
       8999 
     | 
    
         
            -
                                                                    )
         
     | 
| 
       9000 
     | 
    
         
            -
                            transcoder.transcode request_pb
         
     | 
| 
       9001 
     | 
    
         
            -
                          end
         
     | 
| 
       9002 
     | 
    
         
            -
             
     | 
| 
       9003 
8684 
     | 
    
         
             
                          ##
         
     | 
| 
       9004 
8685 
     | 
    
         
             
                          # @private
         
     | 
| 
       9005 
8686 
     | 
    
         
             
                          #
         
     | 
| 
         @@ -9895,6 +9576,27 @@ module Google 
     | 
|
| 
       9895 
9576 
     | 
    
         
             
                                                                    )
         
     | 
| 
       9896 
9577 
     | 
    
         
             
                            transcoder.transcode request_pb
         
     | 
| 
       9897 
9578 
     | 
    
         
             
                          end
         
     | 
| 
      
 9579 
     | 
    
         
            +
             
     | 
| 
      
 9580 
     | 
    
         
            +
                          ##
         
     | 
| 
      
 9581 
     | 
    
         
            +
                          # @private
         
     | 
| 
      
 9582 
     | 
    
         
            +
                          #
         
     | 
| 
      
 9583 
     | 
    
         
            +
                          # GRPC transcoding helper method for the get_reporting_identity_settings REST call
         
     | 
| 
      
 9584 
     | 
    
         
            +
                          #
         
     | 
| 
      
 9585 
     | 
    
         
            +
                          # @param request_pb [::Google::Analytics::Admin::V1alpha::GetReportingIdentitySettingsRequest]
         
     | 
| 
      
 9586 
     | 
    
         
            +
                          #   A request object representing the call parameters. Required.
         
     | 
| 
      
 9587 
     | 
    
         
            +
                          # @return [Array(String, [String, nil], Hash{String => String})]
         
     | 
| 
      
 9588 
     | 
    
         
            +
                          #   Uri, Body, Query string parameters
         
     | 
| 
      
 9589 
     | 
    
         
            +
                          def self.transcode_get_reporting_identity_settings_request request_pb
         
     | 
| 
      
 9590 
     | 
    
         
            +
                            transcoder = Gapic::Rest::GrpcTranscoder.new
         
     | 
| 
      
 9591 
     | 
    
         
            +
                                                                    .with_bindings(
         
     | 
| 
      
 9592 
     | 
    
         
            +
                                                                      uri_method: :get,
         
     | 
| 
      
 9593 
     | 
    
         
            +
                                                                      uri_template: "/v1alpha/{name}",
         
     | 
| 
      
 9594 
     | 
    
         
            +
                                                                      matches: [
         
     | 
| 
      
 9595 
     | 
    
         
            +
                                                                        ["name", %r{^properties/[^/]+/reportingIdentitySettings/?$}, false]
         
     | 
| 
      
 9596 
     | 
    
         
            +
                                                                      ]
         
     | 
| 
      
 9597 
     | 
    
         
            +
                                                                    )
         
     | 
| 
      
 9598 
     | 
    
         
            +
                            transcoder.transcode request_pb
         
     | 
| 
      
 9599 
     | 
    
         
            +
                          end
         
     | 
| 
       9898 
9600 
     | 
    
         
             
                        end
         
     | 
| 
       9899 
9601 
     | 
    
         
             
                      end
         
     | 
| 
       9900 
9602 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -332,14 +332,6 @@ module Google 
     | 
|
| 
       332 
332 
     | 
    
         
             
                        rpc :UpdateChannelGroup, ::Google::Analytics::Admin::V1alpha::UpdateChannelGroupRequest, ::Google::Analytics::Admin::V1alpha::ChannelGroup
         
     | 
| 
       333 
333 
     | 
    
         
             
                        # Deletes a ChannelGroup on a property.
         
     | 
| 
       334 
334 
     | 
    
         
             
                        rpc :DeleteChannelGroup, ::Google::Analytics::Admin::V1alpha::DeleteChannelGroupRequest, ::Google::Protobuf::Empty
         
     | 
| 
       335 
     | 
    
         
            -
                        # Sets the opt out status for the automated GA4 setup process for a UA
         
     | 
| 
       336 
     | 
    
         
            -
                        # property.
         
     | 
| 
       337 
     | 
    
         
            -
                        # Note: this has no effect on GA4 property.
         
     | 
| 
       338 
     | 
    
         
            -
                        rpc :SetAutomatedGa4ConfigurationOptOut, ::Google::Analytics::Admin::V1alpha::SetAutomatedGa4ConfigurationOptOutRequest, ::Google::Analytics::Admin::V1alpha::SetAutomatedGa4ConfigurationOptOutResponse
         
     | 
| 
       339 
     | 
    
         
            -
                        # Fetches the opt out status for the automated GA4 setup process for a UA
         
     | 
| 
       340 
     | 
    
         
            -
                        # property.
         
     | 
| 
       341 
     | 
    
         
            -
                        # Note: this has no effect on GA4 property.
         
     | 
| 
       342 
     | 
    
         
            -
                        rpc :FetchAutomatedGa4ConfigurationOptOut, ::Google::Analytics::Admin::V1alpha::FetchAutomatedGa4ConfigurationOptOutRequest, ::Google::Analytics::Admin::V1alpha::FetchAutomatedGa4ConfigurationOptOutResponse
         
     | 
| 
       343 
335 
     | 
    
         
             
                        # Creates a BigQueryLink.
         
     | 
| 
       344 
336 
     | 
    
         
             
                        rpc :CreateBigQueryLink, ::Google::Analytics::Admin::V1alpha::CreateBigQueryLinkRequest, ::Google::Analytics::Admin::V1alpha::BigQueryLink
         
     | 
| 
       345 
337 
     | 
    
         
             
                        # Lookup for a single BigQuery Link.
         
     | 
| 
         @@ -358,20 +350,6 @@ module Google 
     | 
|
| 
       358 
350 
     | 
    
         
             
                        # Note that the stream must enable enhanced measurement for these settings to
         
     | 
| 
       359 
351 
     | 
    
         
             
                        # take effect.
         
     | 
| 
       360 
352 
     | 
    
         
             
                        rpc :UpdateEnhancedMeasurementSettings, ::Google::Analytics::Admin::V1alpha::UpdateEnhancedMeasurementSettingsRequest, ::Google::Analytics::Admin::V1alpha::EnhancedMeasurementSettings
         
     | 
| 
       361 
     | 
    
         
            -
                        # Creates a connected site tag for a Universal Analytics property. You can
         
     | 
| 
       362 
     | 
    
         
            -
                        # create a maximum of 20 connected site tags per property.
         
     | 
| 
       363 
     | 
    
         
            -
                        # Note: This API cannot be used on GA4 properties.
         
     | 
| 
       364 
     | 
    
         
            -
                        rpc :CreateConnectedSiteTag, ::Google::Analytics::Admin::V1alpha::CreateConnectedSiteTagRequest, ::Google::Analytics::Admin::V1alpha::CreateConnectedSiteTagResponse
         
     | 
| 
       365 
     | 
    
         
            -
                        # Deletes a connected site tag for a Universal Analytics property.
         
     | 
| 
       366 
     | 
    
         
            -
                        # Note: this has no effect on GA4 properties.
         
     | 
| 
       367 
     | 
    
         
            -
                        rpc :DeleteConnectedSiteTag, ::Google::Analytics::Admin::V1alpha::DeleteConnectedSiteTagRequest, ::Google::Protobuf::Empty
         
     | 
| 
       368 
     | 
    
         
            -
                        # Lists the connected site tags for a Universal Analytics property. A maximum
         
     | 
| 
       369 
     | 
    
         
            -
                        # of 20 connected site tags will be returned. Note: this has no effect on GA4
         
     | 
| 
       370 
     | 
    
         
            -
                        # property.
         
     | 
| 
       371 
     | 
    
         
            -
                        rpc :ListConnectedSiteTags, ::Google::Analytics::Admin::V1alpha::ListConnectedSiteTagsRequest, ::Google::Analytics::Admin::V1alpha::ListConnectedSiteTagsResponse
         
     | 
| 
       372 
     | 
    
         
            -
                        # Given a specified UA property, looks up the GA4 property connected to it.
         
     | 
| 
       373 
     | 
    
         
            -
                        # Note: this cannot be used with GA4 properties.
         
     | 
| 
       374 
     | 
    
         
            -
                        rpc :FetchConnectedGa4Property, ::Google::Analytics::Admin::V1alpha::FetchConnectedGa4PropertyRequest, ::Google::Analytics::Admin::V1alpha::FetchConnectedGa4PropertyResponse
         
     | 
| 
       375 
353 
     | 
    
         
             
                        # Looks up a single AdSenseLink.
         
     | 
| 
       376 
354 
     | 
    
         
             
                        rpc :GetAdSenseLink, ::Google::Analytics::Admin::V1alpha::GetAdSenseLinkRequest, ::Google::Analytics::Admin::V1alpha::AdSenseLink
         
     | 
| 
       377 
355 
     | 
    
         
             
                        # Creates an AdSenseLink.
         
     | 
| 
         @@ -459,12 +437,14 @@ module Google 
     | 
|
| 
       459 
437 
     | 
    
         
             
                        rpc :DeleteReportingDataAnnotation, ::Google::Analytics::Admin::V1alpha::DeleteReportingDataAnnotationRequest, ::Google::Protobuf::Empty
         
     | 
| 
       460 
438 
     | 
    
         
             
                        # Submits a request for user deletion for a property.
         
     | 
| 
       461 
439 
     | 
    
         
             
                        rpc :SubmitUserDeletion, ::Google::Analytics::Admin::V1alpha::SubmitUserDeletionRequest, ::Google::Analytics::Admin::V1alpha::SubmitUserDeletionResponse
         
     | 
| 
       462 
     | 
    
         
            -
                        # List all  
     | 
| 
      
 440 
     | 
    
         
            +
                        # List all `SubpropertySyncConfig` resources for a property.
         
     | 
| 
       463 
441 
     | 
    
         
             
                        rpc :ListSubpropertySyncConfigs, ::Google::Analytics::Admin::V1alpha::ListSubpropertySyncConfigsRequest, ::Google::Analytics::Admin::V1alpha::ListSubpropertySyncConfigsResponse
         
     | 
| 
       464 
     | 
    
         
            -
                        # Updates a  
     | 
| 
      
 442 
     | 
    
         
            +
                        # Updates a `SubpropertySyncConfig`.
         
     | 
| 
       465 
443 
     | 
    
         
             
                        rpc :UpdateSubpropertySyncConfig, ::Google::Analytics::Admin::V1alpha::UpdateSubpropertySyncConfigRequest, ::Google::Analytics::Admin::V1alpha::SubpropertySyncConfig
         
     | 
| 
       466 
     | 
    
         
            -
                        # Lookup for a single  
     | 
| 
      
 444 
     | 
    
         
            +
                        # Lookup for a single `SubpropertySyncConfig`.
         
     | 
| 
       467 
445 
     | 
    
         
             
                        rpc :GetSubpropertySyncConfig, ::Google::Analytics::Admin::V1alpha::GetSubpropertySyncConfigRequest, ::Google::Analytics::Admin::V1alpha::SubpropertySyncConfig
         
     | 
| 
      
 446 
     | 
    
         
            +
                        # Returns the singleton data retention settings for this property.
         
     | 
| 
      
 447 
     | 
    
         
            +
                        rpc :GetReportingIdentitySettings, ::Google::Analytics::Admin::V1alpha::GetReportingIdentitySettingsRequest, ::Google::Analytics::Admin::V1alpha::ReportingIdentitySettings
         
     | 
| 
       468 
448 
     | 
    
         
             
                      end
         
     | 
| 
       469 
449 
     | 
    
         | 
| 
       470 
450 
     | 
    
         
             
                      Stub = Service.rpc_stub_class
         
     |