Class: Google::Cloud::Security::PrivateCA::V1::X509Parameters
- Inherits:
-
Object
- Object
- Google::Cloud::Security::PrivateCA::V1::X509Parameters
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/security/privateca/v1/resources.rb
Overview
An X509Parameters is used to describe certain fields of an X.509 certificate, such as the key usage fields, fields specific to CA certificates, certificate policy extensions and custom extensions.
Defined Under Namespace
Classes: CaOptions, NameConstraints
Instance Attribute Summary collapse
-
#additional_extensions ⇒ ::Array<::Google::Cloud::Security::PrivateCA::V1::X509Extension>
Optional.
-
#aia_ocsp_servers ⇒ ::Array<::String>
Optional.
-
#ca_options ⇒ ::Google::Cloud::Security::PrivateCA::V1::X509Parameters::CaOptions
Optional.
-
#key_usage ⇒ ::Google::Cloud::Security::PrivateCA::V1::KeyUsage
Optional.
-
#name_constraints ⇒ ::Google::Cloud::Security::PrivateCA::V1::X509Parameters::NameConstraints
Optional.
-
#policy_ids ⇒ ::Array<::Google::Cloud::Security::PrivateCA::V1::ObjectId>
Optional.
Instance Attribute Details
#additional_extensions ⇒ ::Array<::Google::Cloud::Security::PrivateCA::V1::X509Extension>
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 936 class X509Parameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the X.509 basic constraints extension, per [RFC 5280 # section 4.2.1.9](https://tools.ietf.org/html/rfc5280#section-4.2.1.9) # @!attribute [rw] is_ca # @return [::Boolean] # Optional. Refers to the "CA" boolean field in the X.509 extension. # When this value is missing, the basic constraints extension will be # omitted from the certificate. # @!attribute [rw] max_issuer_path_length # @return [::Integer] # Optional. Refers to the path length constraint field in the X.509 # extension. For a CA certificate, this value describes the depth of # subordinate CA certificates that are allowed. If this value is less than # 0, the request will fail. If this value is missing, the max path length # will be omitted from the certificate. class CaOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Describes the X.509 name constraints extension, per # https://tools.ietf.org/html/rfc5280#section-4.2.1.10 # @!attribute [rw] critical # @return [::Boolean] # Indicates whether or not the name constraints are marked critical. # @!attribute [rw] permitted_dns_names # @return [::Array<::String>] # Contains permitted DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] excluded_dns_names # @return [::Array<::String>] # Contains excluded DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] permitted_ip_ranges # @return [::Array<::String>] # Contains the permitted IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] excluded_ip_ranges # @return [::Array<::String>] # Contains the excluded IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] permitted_email_addresses # @return [::Array<::String>] # Contains the permitted email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] excluded_email_addresses # @return [::Array<::String>] # Contains the excluded email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] permitted_uris # @return [::Array<::String>] # Contains the permitted URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) # @!attribute [rw] excluded_uris # @return [::Array<::String>] # Contains the excluded URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) class NameConstraints include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#aia_ocsp_servers ⇒ ::Array<::String>
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 936 class X509Parameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the X.509 basic constraints extension, per [RFC 5280 # section 4.2.1.9](https://tools.ietf.org/html/rfc5280#section-4.2.1.9) # @!attribute [rw] is_ca # @return [::Boolean] # Optional. Refers to the "CA" boolean field in the X.509 extension. # When this value is missing, the basic constraints extension will be # omitted from the certificate. # @!attribute [rw] max_issuer_path_length # @return [::Integer] # Optional. Refers to the path length constraint field in the X.509 # extension. For a CA certificate, this value describes the depth of # subordinate CA certificates that are allowed. If this value is less than # 0, the request will fail. If this value is missing, the max path length # will be omitted from the certificate. class CaOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Describes the X.509 name constraints extension, per # https://tools.ietf.org/html/rfc5280#section-4.2.1.10 # @!attribute [rw] critical # @return [::Boolean] # Indicates whether or not the name constraints are marked critical. # @!attribute [rw] permitted_dns_names # @return [::Array<::String>] # Contains permitted DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] excluded_dns_names # @return [::Array<::String>] # Contains excluded DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] permitted_ip_ranges # @return [::Array<::String>] # Contains the permitted IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] excluded_ip_ranges # @return [::Array<::String>] # Contains the excluded IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] permitted_email_addresses # @return [::Array<::String>] # Contains the permitted email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] excluded_email_addresses # @return [::Array<::String>] # Contains the excluded email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] permitted_uris # @return [::Array<::String>] # Contains the permitted URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) # @!attribute [rw] excluded_uris # @return [::Array<::String>] # Contains the excluded URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) class NameConstraints include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#ca_options ⇒ ::Google::Cloud::Security::PrivateCA::V1::X509Parameters::CaOptions
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 936 class X509Parameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the X.509 basic constraints extension, per [RFC 5280 # section 4.2.1.9](https://tools.ietf.org/html/rfc5280#section-4.2.1.9) # @!attribute [rw] is_ca # @return [::Boolean] # Optional. Refers to the "CA" boolean field in the X.509 extension. # When this value is missing, the basic constraints extension will be # omitted from the certificate. # @!attribute [rw] max_issuer_path_length # @return [::Integer] # Optional. Refers to the path length constraint field in the X.509 # extension. For a CA certificate, this value describes the depth of # subordinate CA certificates that are allowed. If this value is less than # 0, the request will fail. If this value is missing, the max path length # will be omitted from the certificate. class CaOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Describes the X.509 name constraints extension, per # https://tools.ietf.org/html/rfc5280#section-4.2.1.10 # @!attribute [rw] critical # @return [::Boolean] # Indicates whether or not the name constraints are marked critical. # @!attribute [rw] permitted_dns_names # @return [::Array<::String>] # Contains permitted DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] excluded_dns_names # @return [::Array<::String>] # Contains excluded DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] permitted_ip_ranges # @return [::Array<::String>] # Contains the permitted IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] excluded_ip_ranges # @return [::Array<::String>] # Contains the excluded IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] permitted_email_addresses # @return [::Array<::String>] # Contains the permitted email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] excluded_email_addresses # @return [::Array<::String>] # Contains the excluded email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] permitted_uris # @return [::Array<::String>] # Contains the permitted URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) # @!attribute [rw] excluded_uris # @return [::Array<::String>] # Contains the excluded URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) class NameConstraints include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#key_usage ⇒ ::Google::Cloud::Security::PrivateCA::V1::KeyUsage
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 936 class X509Parameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the X.509 basic constraints extension, per [RFC 5280 # section 4.2.1.9](https://tools.ietf.org/html/rfc5280#section-4.2.1.9) # @!attribute [rw] is_ca # @return [::Boolean] # Optional. Refers to the "CA" boolean field in the X.509 extension. # When this value is missing, the basic constraints extension will be # omitted from the certificate. # @!attribute [rw] max_issuer_path_length # @return [::Integer] # Optional. Refers to the path length constraint field in the X.509 # extension. For a CA certificate, this value describes the depth of # subordinate CA certificates that are allowed. If this value is less than # 0, the request will fail. If this value is missing, the max path length # will be omitted from the certificate. class CaOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Describes the X.509 name constraints extension, per # https://tools.ietf.org/html/rfc5280#section-4.2.1.10 # @!attribute [rw] critical # @return [::Boolean] # Indicates whether or not the name constraints are marked critical. # @!attribute [rw] permitted_dns_names # @return [::Array<::String>] # Contains permitted DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] excluded_dns_names # @return [::Array<::String>] # Contains excluded DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] permitted_ip_ranges # @return [::Array<::String>] # Contains the permitted IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] excluded_ip_ranges # @return [::Array<::String>] # Contains the excluded IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] permitted_email_addresses # @return [::Array<::String>] # Contains the permitted email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] excluded_email_addresses # @return [::Array<::String>] # Contains the excluded email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] permitted_uris # @return [::Array<::String>] # Contains the permitted URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) # @!attribute [rw] excluded_uris # @return [::Array<::String>] # Contains the excluded URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) class NameConstraints include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#name_constraints ⇒ ::Google::Cloud::Security::PrivateCA::V1::X509Parameters::NameConstraints
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 936 class X509Parameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the X.509 basic constraints extension, per [RFC 5280 # section 4.2.1.9](https://tools.ietf.org/html/rfc5280#section-4.2.1.9) # @!attribute [rw] is_ca # @return [::Boolean] # Optional. Refers to the "CA" boolean field in the X.509 extension. # When this value is missing, the basic constraints extension will be # omitted from the certificate. # @!attribute [rw] max_issuer_path_length # @return [::Integer] # Optional. Refers to the path length constraint field in the X.509 # extension. For a CA certificate, this value describes the depth of # subordinate CA certificates that are allowed. If this value is less than # 0, the request will fail. If this value is missing, the max path length # will be omitted from the certificate. class CaOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Describes the X.509 name constraints extension, per # https://tools.ietf.org/html/rfc5280#section-4.2.1.10 # @!attribute [rw] critical # @return [::Boolean] # Indicates whether or not the name constraints are marked critical. # @!attribute [rw] permitted_dns_names # @return [::Array<::String>] # Contains permitted DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] excluded_dns_names # @return [::Array<::String>] # Contains excluded DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] permitted_ip_ranges # @return [::Array<::String>] # Contains the permitted IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] excluded_ip_ranges # @return [::Array<::String>] # Contains the excluded IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] permitted_email_addresses # @return [::Array<::String>] # Contains the permitted email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] excluded_email_addresses # @return [::Array<::String>] # Contains the excluded email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] permitted_uris # @return [::Array<::String>] # Contains the permitted URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) # @!attribute [rw] excluded_uris # @return [::Array<::String>] # Contains the excluded URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) class NameConstraints include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#policy_ids ⇒ ::Array<::Google::Cloud::Security::PrivateCA::V1::ObjectId>
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 |
# File 'proto_docs/google/cloud/security/privateca/v1/resources.rb', line 936 class X509Parameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Describes the X.509 basic constraints extension, per [RFC 5280 # section 4.2.1.9](https://tools.ietf.org/html/rfc5280#section-4.2.1.9) # @!attribute [rw] is_ca # @return [::Boolean] # Optional. Refers to the "CA" boolean field in the X.509 extension. # When this value is missing, the basic constraints extension will be # omitted from the certificate. # @!attribute [rw] max_issuer_path_length # @return [::Integer] # Optional. Refers to the path length constraint field in the X.509 # extension. For a CA certificate, this value describes the depth of # subordinate CA certificates that are allowed. If this value is less than # 0, the request will fail. If this value is missing, the max path length # will be omitted from the certificate. class CaOptions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Describes the X.509 name constraints extension, per # https://tools.ietf.org/html/rfc5280#section-4.2.1.10 # @!attribute [rw] critical # @return [::Boolean] # Indicates whether or not the name constraints are marked critical. # @!attribute [rw] permitted_dns_names # @return [::Array<::String>] # Contains permitted DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] excluded_dns_names # @return [::Array<::String>] # Contains excluded DNS names. Any DNS name that can be # constructed by simply adding zero or more labels to # the left-hand side of the name satisfies the name constraint. # For example, `example.com`, `www.example.com`, `www.sub.example.com` # would satisfy `example.com` while `example1.com` does not. # @!attribute [rw] permitted_ip_ranges # @return [::Array<::String>] # Contains the permitted IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] excluded_ip_ranges # @return [::Array<::String>] # Contains the excluded IP ranges. For IPv4 addresses, the ranges # are expressed using CIDR notation as specified in RFC 4632. # For IPv6 addresses, the ranges are expressed in similar encoding as IPv4 # addresses. # @!attribute [rw] permitted_email_addresses # @return [::Array<::String>] # Contains the permitted email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] excluded_email_addresses # @return [::Array<::String>] # Contains the excluded email addresses. The value can be a particular # email address, a hostname to indicate all email addresses on that host or # a domain with a leading period (e.g. `.example.com`) to indicate # all email addresses in that domain. # @!attribute [rw] permitted_uris # @return [::Array<::String>] # Contains the permitted URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) # @!attribute [rw] excluded_uris # @return [::Array<::String>] # Contains the excluded URIs that apply to the host part of the name. # The value can be a hostname or a domain with a # leading period (like `.example.com`) class NameConstraints include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |