google-analytics-admin-v1alpha 0.23.0 → 0.24.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 +4 -4
- data/lib/google/analytics/admin/v1alpha/analytics_admin_pb.rb +7 -1
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb +489 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/paths.rb +19 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb +370 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb +297 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb +11 -0
- data/lib/google/analytics/admin/v1alpha/resources_pb.rb +6 -1
- data/lib/google/analytics/admin/v1alpha/version.rb +1 -1
- data/proto_docs/google/analytics/admin/v1alpha/analytics_admin.rb +89 -0
- data/proto_docs/google/analytics/admin/v1alpha/resources.rb +156 -2
- data/proto_docs/google/api/field_behavior.rb +14 -0
- metadata +3 -3
@@ -2689,6 +2689,341 @@ module Google
|
|
2689
2689
|
raise ::Google::Cloud::Error.from_error(e)
|
2690
2690
|
end
|
2691
2691
|
|
2692
|
+
##
|
2693
|
+
# Looks up a single SKAdNetworkConversionValueSchema.
|
2694
|
+
#
|
2695
|
+
# @overload get_sk_ad_network_conversion_value_schema(request, options = nil)
|
2696
|
+
# Pass arguments to `get_sk_ad_network_conversion_value_schema` via a request object, either of type
|
2697
|
+
# {::Google::Analytics::Admin::V1alpha::GetSKAdNetworkConversionValueSchemaRequest} or an equivalent Hash.
|
2698
|
+
#
|
2699
|
+
# @param request [::Google::Analytics::Admin::V1alpha::GetSKAdNetworkConversionValueSchemaRequest, ::Hash]
|
2700
|
+
# A request object representing the call parameters. Required. To specify no
|
2701
|
+
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
2702
|
+
# @param options [::Gapic::CallOptions, ::Hash]
|
2703
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
2704
|
+
#
|
2705
|
+
# @overload get_sk_ad_network_conversion_value_schema(name: nil)
|
2706
|
+
# Pass arguments to `get_sk_ad_network_conversion_value_schema` via keyword arguments. Note that at
|
2707
|
+
# least one keyword argument is required. To specify no parameters, or to keep all
|
2708
|
+
# the default parameter values, pass an empty Hash as a request object (see above).
|
2709
|
+
#
|
2710
|
+
# @param name [::String]
|
2711
|
+
# Required. The resource name of SKAdNetwork conversion value schema to look
|
2712
|
+
# up. Format:
|
2713
|
+
# properties/\\{property}/dataStreams/\\{dataStream}/sKAdNetworkConversionValueSchema/\\{skadnetwork_conversion_value_schema}
|
2714
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
2715
|
+
# @yieldparam result [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
|
2716
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
2717
|
+
#
|
2718
|
+
# @return [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
|
2719
|
+
#
|
2720
|
+
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2721
|
+
def get_sk_ad_network_conversion_value_schema request, options = nil
|
2722
|
+
raise ::ArgumentError, "request must be provided" if request.nil?
|
2723
|
+
|
2724
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Analytics::Admin::V1alpha::GetSKAdNetworkConversionValueSchemaRequest
|
2725
|
+
|
2726
|
+
# Converts hash and nil to an options object
|
2727
|
+
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
2728
|
+
|
2729
|
+
# Customize the options with defaults
|
2730
|
+
call_metadata = @config.rpcs.get_sk_ad_network_conversion_value_schema.metadata.to_h
|
2731
|
+
|
2732
|
+
# Set x-goog-api-client and x-goog-user-project headers
|
2733
|
+
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2734
|
+
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2735
|
+
gapic_version: ::Google::Analytics::Admin::V1alpha::VERSION,
|
2736
|
+
transports_version_send: [:rest]
|
2737
|
+
|
2738
|
+
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2739
|
+
|
2740
|
+
options.apply_defaults timeout: @config.rpcs.get_sk_ad_network_conversion_value_schema.timeout,
|
2741
|
+
metadata: call_metadata,
|
2742
|
+
retry_policy: @config.rpcs.get_sk_ad_network_conversion_value_schema.retry_policy
|
2743
|
+
|
2744
|
+
options.apply_defaults timeout: @config.timeout,
|
2745
|
+
metadata: @config.metadata,
|
2746
|
+
retry_policy: @config.retry_policy
|
2747
|
+
|
2748
|
+
@analytics_admin_service_stub.get_sk_ad_network_conversion_value_schema request, options do |result, operation|
|
2749
|
+
yield result, operation if block_given?
|
2750
|
+
return result
|
2751
|
+
end
|
2752
|
+
rescue ::Gapic::Rest::Error => e
|
2753
|
+
raise ::Google::Cloud::Error.from_error(e)
|
2754
|
+
end
|
2755
|
+
|
2756
|
+
##
|
2757
|
+
# Creates a SKAdNetworkConversionValueSchema.
|
2758
|
+
#
|
2759
|
+
# @overload create_sk_ad_network_conversion_value_schema(request, options = nil)
|
2760
|
+
# Pass arguments to `create_sk_ad_network_conversion_value_schema` via a request object, either of type
|
2761
|
+
# {::Google::Analytics::Admin::V1alpha::CreateSKAdNetworkConversionValueSchemaRequest} or an equivalent Hash.
|
2762
|
+
#
|
2763
|
+
# @param request [::Google::Analytics::Admin::V1alpha::CreateSKAdNetworkConversionValueSchemaRequest, ::Hash]
|
2764
|
+
# A request object representing the call parameters. Required. To specify no
|
2765
|
+
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
2766
|
+
# @param options [::Gapic::CallOptions, ::Hash]
|
2767
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
2768
|
+
#
|
2769
|
+
# @overload create_sk_ad_network_conversion_value_schema(parent: nil, skadnetwork_conversion_value_schema: nil)
|
2770
|
+
# Pass arguments to `create_sk_ad_network_conversion_value_schema` via keyword arguments. Note that at
|
2771
|
+
# least one keyword argument is required. To specify no parameters, or to keep all
|
2772
|
+
# the default parameter values, pass an empty Hash as a request object (see above).
|
2773
|
+
#
|
2774
|
+
# @param parent [::String]
|
2775
|
+
# Required. The parent resource where this schema will be created.
|
2776
|
+
# Format: properties/\\{property}/dataStreams/\\{dataStream}
|
2777
|
+
# @param skadnetwork_conversion_value_schema [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema, ::Hash]
|
2778
|
+
# Required. SKAdNetwork conversion value schema to create.
|
2779
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
2780
|
+
# @yieldparam result [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
|
2781
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
2782
|
+
#
|
2783
|
+
# @return [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
|
2784
|
+
#
|
2785
|
+
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2786
|
+
def create_sk_ad_network_conversion_value_schema request, options = nil
|
2787
|
+
raise ::ArgumentError, "request must be provided" if request.nil?
|
2788
|
+
|
2789
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Analytics::Admin::V1alpha::CreateSKAdNetworkConversionValueSchemaRequest
|
2790
|
+
|
2791
|
+
# Converts hash and nil to an options object
|
2792
|
+
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
2793
|
+
|
2794
|
+
# Customize the options with defaults
|
2795
|
+
call_metadata = @config.rpcs.create_sk_ad_network_conversion_value_schema.metadata.to_h
|
2796
|
+
|
2797
|
+
# Set x-goog-api-client and x-goog-user-project headers
|
2798
|
+
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2799
|
+
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2800
|
+
gapic_version: ::Google::Analytics::Admin::V1alpha::VERSION,
|
2801
|
+
transports_version_send: [:rest]
|
2802
|
+
|
2803
|
+
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2804
|
+
|
2805
|
+
options.apply_defaults timeout: @config.rpcs.create_sk_ad_network_conversion_value_schema.timeout,
|
2806
|
+
metadata: call_metadata,
|
2807
|
+
retry_policy: @config.rpcs.create_sk_ad_network_conversion_value_schema.retry_policy
|
2808
|
+
|
2809
|
+
options.apply_defaults timeout: @config.timeout,
|
2810
|
+
metadata: @config.metadata,
|
2811
|
+
retry_policy: @config.retry_policy
|
2812
|
+
|
2813
|
+
@analytics_admin_service_stub.create_sk_ad_network_conversion_value_schema request, options do |result, operation|
|
2814
|
+
yield result, operation if block_given?
|
2815
|
+
return result
|
2816
|
+
end
|
2817
|
+
rescue ::Gapic::Rest::Error => e
|
2818
|
+
raise ::Google::Cloud::Error.from_error(e)
|
2819
|
+
end
|
2820
|
+
|
2821
|
+
##
|
2822
|
+
# Deletes target SKAdNetworkConversionValueSchema.
|
2823
|
+
#
|
2824
|
+
# @overload delete_sk_ad_network_conversion_value_schema(request, options = nil)
|
2825
|
+
# Pass arguments to `delete_sk_ad_network_conversion_value_schema` via a request object, either of type
|
2826
|
+
# {::Google::Analytics::Admin::V1alpha::DeleteSKAdNetworkConversionValueSchemaRequest} or an equivalent Hash.
|
2827
|
+
#
|
2828
|
+
# @param request [::Google::Analytics::Admin::V1alpha::DeleteSKAdNetworkConversionValueSchemaRequest, ::Hash]
|
2829
|
+
# A request object representing the call parameters. Required. To specify no
|
2830
|
+
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
2831
|
+
# @param options [::Gapic::CallOptions, ::Hash]
|
2832
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
2833
|
+
#
|
2834
|
+
# @overload delete_sk_ad_network_conversion_value_schema(name: nil)
|
2835
|
+
# Pass arguments to `delete_sk_ad_network_conversion_value_schema` via keyword arguments. Note that at
|
2836
|
+
# least one keyword argument is required. To specify no parameters, or to keep all
|
2837
|
+
# the default parameter values, pass an empty Hash as a request object (see above).
|
2838
|
+
#
|
2839
|
+
# @param name [::String]
|
2840
|
+
# Required. The name of the SKAdNetworkConversionValueSchema to delete.
|
2841
|
+
# Format:
|
2842
|
+
# properties/\\{property}/dataStreams/\\{dataStream}/sKAdNetworkConversionValueSchema/\\{skadnetwork_conversion_value_schema}
|
2843
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
2844
|
+
# @yieldparam result [::Google::Protobuf::Empty]
|
2845
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
2846
|
+
#
|
2847
|
+
# @return [::Google::Protobuf::Empty]
|
2848
|
+
#
|
2849
|
+
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2850
|
+
def delete_sk_ad_network_conversion_value_schema request, options = nil
|
2851
|
+
raise ::ArgumentError, "request must be provided" if request.nil?
|
2852
|
+
|
2853
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Analytics::Admin::V1alpha::DeleteSKAdNetworkConversionValueSchemaRequest
|
2854
|
+
|
2855
|
+
# Converts hash and nil to an options object
|
2856
|
+
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
2857
|
+
|
2858
|
+
# Customize the options with defaults
|
2859
|
+
call_metadata = @config.rpcs.delete_sk_ad_network_conversion_value_schema.metadata.to_h
|
2860
|
+
|
2861
|
+
# Set x-goog-api-client and x-goog-user-project headers
|
2862
|
+
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2863
|
+
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2864
|
+
gapic_version: ::Google::Analytics::Admin::V1alpha::VERSION,
|
2865
|
+
transports_version_send: [:rest]
|
2866
|
+
|
2867
|
+
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2868
|
+
|
2869
|
+
options.apply_defaults timeout: @config.rpcs.delete_sk_ad_network_conversion_value_schema.timeout,
|
2870
|
+
metadata: call_metadata,
|
2871
|
+
retry_policy: @config.rpcs.delete_sk_ad_network_conversion_value_schema.retry_policy
|
2872
|
+
|
2873
|
+
options.apply_defaults timeout: @config.timeout,
|
2874
|
+
metadata: @config.metadata,
|
2875
|
+
retry_policy: @config.retry_policy
|
2876
|
+
|
2877
|
+
@analytics_admin_service_stub.delete_sk_ad_network_conversion_value_schema request, options do |result, operation|
|
2878
|
+
yield result, operation if block_given?
|
2879
|
+
return result
|
2880
|
+
end
|
2881
|
+
rescue ::Gapic::Rest::Error => e
|
2882
|
+
raise ::Google::Cloud::Error.from_error(e)
|
2883
|
+
end
|
2884
|
+
|
2885
|
+
##
|
2886
|
+
# Updates a SKAdNetworkConversionValueSchema.
|
2887
|
+
#
|
2888
|
+
# @overload update_sk_ad_network_conversion_value_schema(request, options = nil)
|
2889
|
+
# Pass arguments to `update_sk_ad_network_conversion_value_schema` via a request object, either of type
|
2890
|
+
# {::Google::Analytics::Admin::V1alpha::UpdateSKAdNetworkConversionValueSchemaRequest} or an equivalent Hash.
|
2891
|
+
#
|
2892
|
+
# @param request [::Google::Analytics::Admin::V1alpha::UpdateSKAdNetworkConversionValueSchemaRequest, ::Hash]
|
2893
|
+
# A request object representing the call parameters. Required. To specify no
|
2894
|
+
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
2895
|
+
# @param options [::Gapic::CallOptions, ::Hash]
|
2896
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
2897
|
+
#
|
2898
|
+
# @overload update_sk_ad_network_conversion_value_schema(skadnetwork_conversion_value_schema: nil, update_mask: nil)
|
2899
|
+
# Pass arguments to `update_sk_ad_network_conversion_value_schema` via keyword arguments. Note that at
|
2900
|
+
# least one keyword argument is required. To specify no parameters, or to keep all
|
2901
|
+
# the default parameter values, pass an empty Hash as a request object (see above).
|
2902
|
+
#
|
2903
|
+
# @param skadnetwork_conversion_value_schema [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema, ::Hash]
|
2904
|
+
# Required. SKAdNetwork conversion value schema to update.
|
2905
|
+
# @param update_mask [::Google::Protobuf::FieldMask, ::Hash]
|
2906
|
+
# Required. The list of fields to be updated. Omitted fields will not be
|
2907
|
+
# updated.
|
2908
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
2909
|
+
# @yieldparam result [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
|
2910
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
2911
|
+
#
|
2912
|
+
# @return [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
|
2913
|
+
#
|
2914
|
+
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2915
|
+
def update_sk_ad_network_conversion_value_schema request, options = nil
|
2916
|
+
raise ::ArgumentError, "request must be provided" if request.nil?
|
2917
|
+
|
2918
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Analytics::Admin::V1alpha::UpdateSKAdNetworkConversionValueSchemaRequest
|
2919
|
+
|
2920
|
+
# Converts hash and nil to an options object
|
2921
|
+
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
2922
|
+
|
2923
|
+
# Customize the options with defaults
|
2924
|
+
call_metadata = @config.rpcs.update_sk_ad_network_conversion_value_schema.metadata.to_h
|
2925
|
+
|
2926
|
+
# Set x-goog-api-client and x-goog-user-project headers
|
2927
|
+
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
2928
|
+
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
2929
|
+
gapic_version: ::Google::Analytics::Admin::V1alpha::VERSION,
|
2930
|
+
transports_version_send: [:rest]
|
2931
|
+
|
2932
|
+
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
2933
|
+
|
2934
|
+
options.apply_defaults timeout: @config.rpcs.update_sk_ad_network_conversion_value_schema.timeout,
|
2935
|
+
metadata: call_metadata,
|
2936
|
+
retry_policy: @config.rpcs.update_sk_ad_network_conversion_value_schema.retry_policy
|
2937
|
+
|
2938
|
+
options.apply_defaults timeout: @config.timeout,
|
2939
|
+
metadata: @config.metadata,
|
2940
|
+
retry_policy: @config.retry_policy
|
2941
|
+
|
2942
|
+
@analytics_admin_service_stub.update_sk_ad_network_conversion_value_schema request, options do |result, operation|
|
2943
|
+
yield result, operation if block_given?
|
2944
|
+
return result
|
2945
|
+
end
|
2946
|
+
rescue ::Gapic::Rest::Error => e
|
2947
|
+
raise ::Google::Cloud::Error.from_error(e)
|
2948
|
+
end
|
2949
|
+
|
2950
|
+
##
|
2951
|
+
# Lists SKAdNetworkConversionValueSchema on a stream.
|
2952
|
+
# Properties can have at most one SKAdNetworkConversionValueSchema.
|
2953
|
+
#
|
2954
|
+
# @overload list_sk_ad_network_conversion_value_schemas(request, options = nil)
|
2955
|
+
# Pass arguments to `list_sk_ad_network_conversion_value_schemas` via a request object, either of type
|
2956
|
+
# {::Google::Analytics::Admin::V1alpha::ListSKAdNetworkConversionValueSchemasRequest} or an equivalent Hash.
|
2957
|
+
#
|
2958
|
+
# @param request [::Google::Analytics::Admin::V1alpha::ListSKAdNetworkConversionValueSchemasRequest, ::Hash]
|
2959
|
+
# A request object representing the call parameters. Required. To specify no
|
2960
|
+
# parameters, or to keep all the default parameter values, pass an empty Hash.
|
2961
|
+
# @param options [::Gapic::CallOptions, ::Hash]
|
2962
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
2963
|
+
#
|
2964
|
+
# @overload list_sk_ad_network_conversion_value_schemas(parent: nil, page_size: nil, page_token: nil)
|
2965
|
+
# Pass arguments to `list_sk_ad_network_conversion_value_schemas` via keyword arguments. Note that at
|
2966
|
+
# least one keyword argument is required. To specify no parameters, or to keep all
|
2967
|
+
# the default parameter values, pass an empty Hash as a request object (see above).
|
2968
|
+
#
|
2969
|
+
# @param parent [::String]
|
2970
|
+
# Required. Format:
|
2971
|
+
# properties/\\{property_id}/dataStreams/\\{dataStream}/sKAdNetworkConversionValueSchema
|
2972
|
+
# Example: properties/1234/dataStreams/5678/sKAdNetworkConversionValueSchema
|
2973
|
+
# @param page_size [::Integer]
|
2974
|
+
# The maximum number of resources to return. The service may return
|
2975
|
+
# fewer than this value, even if there are additional pages.
|
2976
|
+
# If unspecified, at most 50 resources will be returned.
|
2977
|
+
# The maximum value is 200; (higher values will be coerced to the maximum)
|
2978
|
+
# @param page_token [::String]
|
2979
|
+
# A page token, received from a previous
|
2980
|
+
# `ListSKAdNetworkConversionValueSchemas` call. Provide this to retrieve the
|
2981
|
+
# subsequent page. When paginating, all other parameters provided to
|
2982
|
+
# `ListSKAdNetworkConversionValueSchema` must match the call that provided
|
2983
|
+
# the page token.
|
2984
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
2985
|
+
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema>]
|
2986
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
2987
|
+
#
|
2988
|
+
# @return [::Gapic::Rest::PagedEnumerable<::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema>]
|
2989
|
+
#
|
2990
|
+
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2991
|
+
def list_sk_ad_network_conversion_value_schemas request, options = nil
|
2992
|
+
raise ::ArgumentError, "request must be provided" if request.nil?
|
2993
|
+
|
2994
|
+
request = ::Gapic::Protobuf.coerce request, to: ::Google::Analytics::Admin::V1alpha::ListSKAdNetworkConversionValueSchemasRequest
|
2995
|
+
|
2996
|
+
# Converts hash and nil to an options object
|
2997
|
+
options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
|
2998
|
+
|
2999
|
+
# Customize the options with defaults
|
3000
|
+
call_metadata = @config.rpcs.list_sk_ad_network_conversion_value_schemas.metadata.to_h
|
3001
|
+
|
3002
|
+
# Set x-goog-api-client and x-goog-user-project headers
|
3003
|
+
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
3004
|
+
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
3005
|
+
gapic_version: ::Google::Analytics::Admin::V1alpha::VERSION,
|
3006
|
+
transports_version_send: [:rest]
|
3007
|
+
|
3008
|
+
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
3009
|
+
|
3010
|
+
options.apply_defaults timeout: @config.rpcs.list_sk_ad_network_conversion_value_schemas.timeout,
|
3011
|
+
metadata: call_metadata,
|
3012
|
+
retry_policy: @config.rpcs.list_sk_ad_network_conversion_value_schemas.retry_policy
|
3013
|
+
|
3014
|
+
options.apply_defaults timeout: @config.timeout,
|
3015
|
+
metadata: @config.metadata,
|
3016
|
+
retry_policy: @config.retry_policy
|
3017
|
+
|
3018
|
+
@analytics_admin_service_stub.list_sk_ad_network_conversion_value_schemas request, options do |result, operation|
|
3019
|
+
result = ::Gapic::Rest::PagedEnumerable.new @analytics_admin_service_stub, :list_sk_ad_network_conversion_value_schemas, "skadnetwork_conversion_value_schemas", request, result, options
|
3020
|
+
yield result, operation if block_given?
|
3021
|
+
return result
|
3022
|
+
end
|
3023
|
+
rescue ::Gapic::Rest::Error => e
|
3024
|
+
raise ::Google::Cloud::Error.from_error(e)
|
3025
|
+
end
|
3026
|
+
|
2692
3027
|
##
|
2693
3028
|
# Searches through all changes to an account or its children given the
|
2694
3029
|
# specified set of filters.
|
@@ -8906,6 +9241,31 @@ module Google
|
|
8906
9241
|
#
|
8907
9242
|
attr_reader :acknowledge_user_data_collection
|
8908
9243
|
##
|
9244
|
+
# RPC-specific configuration for `get_sk_ad_network_conversion_value_schema`
|
9245
|
+
# @return [::Gapic::Config::Method]
|
9246
|
+
#
|
9247
|
+
attr_reader :get_sk_ad_network_conversion_value_schema
|
9248
|
+
##
|
9249
|
+
# RPC-specific configuration for `create_sk_ad_network_conversion_value_schema`
|
9250
|
+
# @return [::Gapic::Config::Method]
|
9251
|
+
#
|
9252
|
+
attr_reader :create_sk_ad_network_conversion_value_schema
|
9253
|
+
##
|
9254
|
+
# RPC-specific configuration for `delete_sk_ad_network_conversion_value_schema`
|
9255
|
+
# @return [::Gapic::Config::Method]
|
9256
|
+
#
|
9257
|
+
attr_reader :delete_sk_ad_network_conversion_value_schema
|
9258
|
+
##
|
9259
|
+
# RPC-specific configuration for `update_sk_ad_network_conversion_value_schema`
|
9260
|
+
# @return [::Gapic::Config::Method]
|
9261
|
+
#
|
9262
|
+
attr_reader :update_sk_ad_network_conversion_value_schema
|
9263
|
+
##
|
9264
|
+
# RPC-specific configuration for `list_sk_ad_network_conversion_value_schemas`
|
9265
|
+
# @return [::Gapic::Config::Method]
|
9266
|
+
#
|
9267
|
+
attr_reader :list_sk_ad_network_conversion_value_schemas
|
9268
|
+
##
|
8909
9269
|
# RPC-specific configuration for `search_change_history_events`
|
8910
9270
|
# @return [::Gapic::Config::Method]
|
8911
9271
|
#
|
@@ -9415,6 +9775,16 @@ module Google
|
|
9415
9775
|
@update_measurement_protocol_secret = ::Gapic::Config::Method.new update_measurement_protocol_secret_config
|
9416
9776
|
acknowledge_user_data_collection_config = parent_rpcs.acknowledge_user_data_collection if parent_rpcs.respond_to? :acknowledge_user_data_collection
|
9417
9777
|
@acknowledge_user_data_collection = ::Gapic::Config::Method.new acknowledge_user_data_collection_config
|
9778
|
+
get_sk_ad_network_conversion_value_schema_config = parent_rpcs.get_sk_ad_network_conversion_value_schema if parent_rpcs.respond_to? :get_sk_ad_network_conversion_value_schema
|
9779
|
+
@get_sk_ad_network_conversion_value_schema = ::Gapic::Config::Method.new get_sk_ad_network_conversion_value_schema_config
|
9780
|
+
create_sk_ad_network_conversion_value_schema_config = parent_rpcs.create_sk_ad_network_conversion_value_schema if parent_rpcs.respond_to? :create_sk_ad_network_conversion_value_schema
|
9781
|
+
@create_sk_ad_network_conversion_value_schema = ::Gapic::Config::Method.new create_sk_ad_network_conversion_value_schema_config
|
9782
|
+
delete_sk_ad_network_conversion_value_schema_config = parent_rpcs.delete_sk_ad_network_conversion_value_schema if parent_rpcs.respond_to? :delete_sk_ad_network_conversion_value_schema
|
9783
|
+
@delete_sk_ad_network_conversion_value_schema = ::Gapic::Config::Method.new delete_sk_ad_network_conversion_value_schema_config
|
9784
|
+
update_sk_ad_network_conversion_value_schema_config = parent_rpcs.update_sk_ad_network_conversion_value_schema if parent_rpcs.respond_to? :update_sk_ad_network_conversion_value_schema
|
9785
|
+
@update_sk_ad_network_conversion_value_schema = ::Gapic::Config::Method.new update_sk_ad_network_conversion_value_schema_config
|
9786
|
+
list_sk_ad_network_conversion_value_schemas_config = parent_rpcs.list_sk_ad_network_conversion_value_schemas if parent_rpcs.respond_to? :list_sk_ad_network_conversion_value_schemas
|
9787
|
+
@list_sk_ad_network_conversion_value_schemas = ::Gapic::Config::Method.new list_sk_ad_network_conversion_value_schemas_config
|
9418
9788
|
search_change_history_events_config = parent_rpcs.search_change_history_events if parent_rpcs.respond_to? :search_change_history_events
|
9419
9789
|
@search_change_history_events = ::Gapic::Config::Method.new search_change_history_events_config
|
9420
9790
|
get_google_signals_settings_config = parent_rpcs.get_google_signals_settings if parent_rpcs.respond_to? :get_google_signals_settings
|