diff --git a/api_names_out.yaml b/api_names_out.yaml index 7f5258ad3..10c8954b8 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -60664,6 +60664,8 @@ "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedPolicyTag/displayName": display_name "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedPolicyTag/policyTag": policy_tag "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedTaxonomy": google_cloud_datacatalog_v1beta1_serialized_taxonomy +"/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedTaxonomy/activatedPolicyTypes": activated_policy_types +"/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedTaxonomy/activatedPolicyTypes/activated_policy_type": activated_policy_type "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedTaxonomy/description": description "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedTaxonomy/displayName": display_name "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1SerializedTaxonomy/policyTags": policy_tags @@ -60697,6 +60699,7 @@ "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1TagTemplate/fields/field": field "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1TagTemplate/name": name "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1TagTemplateField": google_cloud_datacatalog_v1beta1_tag_template_field +"/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1TagTemplateField/description": description "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1TagTemplateField/displayName": display_name "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1TagTemplateField/isRequired": is_required "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1TagTemplateField/name": name @@ -60708,6 +60711,8 @@ "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1Taxonomy/description": description "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1Taxonomy/displayName": display_name "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1Taxonomy/name": name +"/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1Taxonomy/policyTagCount": policy_tag_count +"/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1Taxonomy/taxonomyTimestamps": taxonomy_timestamps "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1ViewSpec": google_cloud_datacatalog_v1beta1_view_spec "/datacatalog:v1beta1/GoogleCloudDatacatalogV1beta1ViewSpec/viewQuery": view_query "/datacatalog:v1beta1/Policy": policy diff --git a/generated/google/apis/datacatalog_v1beta1.rb b/generated/google/apis/datacatalog_v1beta1.rb index 9919b0b72..ee8a4f7e4 100644 --- a/generated/google/apis/datacatalog_v1beta1.rb +++ b/generated/google/apis/datacatalog_v1beta1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/data-catalog/docs/ module DatacatalogV1beta1 VERSION = 'V1beta1' - REVISION = '20200918' + REVISION = '20201021' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/datacatalog_v1beta1/classes.rb b/generated/google/apis/datacatalog_v1beta1/classes.rb index 13069005c..11ef20904 100644 --- a/generated/google/apis/datacatalog_v1beta1/classes.rb +++ b/generated/google/apis/datacatalog_v1beta1/classes.rb @@ -1196,6 +1196,11 @@ module Google class GoogleCloudDatacatalogV1beta1SerializedTaxonomy include Google::Apis::Core::Hashable + # A list of policy types that are activated for a taxonomy. + # Corresponds to the JSON property `activatedPolicyTypes` + # @return [Array] + attr_accessor :activated_policy_types + # Description of the serialized taxonomy. The length of the description is # limited to 2000 bytes when encoded in UTF-8. If not set, defaults to an empty # description. @@ -1219,6 +1224,7 @@ module Google # Update properties of this object def update!(**args) + @activated_policy_types = args[:activated_policy_types] if args.key?(:activated_policy_types) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @policy_tags = args[:policy_tags] if args.key?(:policy_tags) @@ -1464,6 +1470,11 @@ module Google class GoogleCloudDatacatalogV1beta1TagTemplateField include Google::Apis::Core::Hashable + # The description for this field. Defaults to an empty string. + # Corresponds to the JSON property `description` + # @return [String] + attr_accessor :description + # The display name for this field. Defaults to an empty string. # Corresponds to the JSON property `displayName` # @return [String] @@ -1502,6 +1513,7 @@ module Google # Update properties of this object def update!(**args) + @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @is_required = args[:is_required] if args.key?(:is_required) @name = args[:name] if args.key?(:name) @@ -1545,6 +1557,16 @@ module Google # @return [String] attr_accessor :name + # Output only. Number of policy tags contained in this taxonomy. + # Corresponds to the JSON property `policyTagCount` + # @return [Fixnum] + attr_accessor :policy_tag_count + + # Timestamps about this resource according to a particular system. + # Corresponds to the JSON property `taxonomyTimestamps` + # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps] + attr_accessor :taxonomy_timestamps + def initialize(**args) update!(**args) end @@ -1555,6 +1577,8 @@ module Google @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) + @policy_tag_count = args[:policy_tag_count] if args.key?(:policy_tag_count) + @taxonomy_timestamps = args[:taxonomy_timestamps] if args.key?(:taxonomy_timestamps) end end diff --git a/generated/google/apis/datacatalog_v1beta1/representations.rb b/generated/google/apis/datacatalog_v1beta1/representations.rb index 5a3f906fa..8c77dc82f 100644 --- a/generated/google/apis/datacatalog_v1beta1/representations.rb +++ b/generated/google/apis/datacatalog_v1beta1/representations.rb @@ -622,6 +622,7 @@ module Google class GoogleCloudDatacatalogV1beta1SerializedTaxonomy # @private class Representation < Google::Apis::Core::JsonRepresentation + collection :activated_policy_types, as: 'activatedPolicyTypes' property :description, as: 'description' property :display_name, as: 'displayName' collection :policy_tags, as: 'policyTags', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SerializedPolicyTag, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SerializedPolicyTag::Representation @@ -691,6 +692,7 @@ module Google class GoogleCloudDatacatalogV1beta1TagTemplateField # @private class Representation < Google::Apis::Core::JsonRepresentation + property :description, as: 'description' property :display_name, as: 'displayName' property :is_required, as: 'isRequired' property :name, as: 'name' @@ -707,6 +709,9 @@ module Google property :description, as: 'description' property :display_name, as: 'displayName' property :name, as: 'name' + property :policy_tag_count, as: 'policyTagCount' + property :taxonomy_timestamps, as: 'taxonomyTimestamps', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1SystemTimestamps::Representation + end end diff --git a/generated/google/apis/datacatalog_v1beta1/synth.metadata b/generated/google/apis/datacatalog_v1beta1/synth.metadata index 429012f74..7df8ec661 100644 --- a/generated/google/apis/datacatalog_v1beta1/synth.metadata +++ b/generated/google/apis/datacatalog_v1beta1/synth.metadata @@ -4,7 +4,7 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/google-api-ruby-client.git", - "sha": "c98c719bbab68d0890524d53f8b629d7858af9c2" + "sha": "9a89003a7c09c1981bf1d46ddd74c9997efaf69d" } } ]